GraphScope
GraphScope copied to clipboard
🔨 🍇 💻 🚀 GraphScope: A One-Stop Large-Scale Graph Computing System from Alibaba | 一站式图计算系统
![Uploading lQLPJwpaHY5UDvnNA-XNBuCwCPjcXkiTQYsF3ICxRZkSAA_1760_997.png…]()
We need to store and retrieve graph metadata at least including the following information - GraphId - GraphName - CreationTime - SchemaUpdateTime - IndicesUpdateTime - Description - LastImportConfiguration For StoredProcedure,...
## What do these changes do? As titled. ## Related issue number Fixes
Use `gs::Result` to wrap the exceptions happened during execution, and be aware of the overhead.
What is the behavior of deleting a vertex in `Interactive`?
**Is your feature request related to a problem? Please describe.** As title says, based on the consideration of backward compatibility, for graph-related or procedure-related interfaces, we should use ID instead...
The GIE IR layer is re-factored based on Calsite, which has now been used to compile the Cypher language into multiple runtime. However, the compilation of Gremlin is still in...
## What do these changes do? deps https://github.com/alibaba/GraphScope/pull/3463 ## Related issue number
**Describe the bug** `1. POST /v1/graph/{graph_name}/dataloading` - [x] 接口 由于 indices 目录的存在,无法重复数据导入 - [x] 输入一个错误的 location 引擎会挂掉 - [x] 某次数据导入如果出错,会遗留 `.lock` 文件,导致无法执行其他图的操作  `2. DELETE /v1/graph/{graph_name}` -...
**Describe the bug** query-1: ``` Match (message:COMMENT)-[:HASCREATOR]->(person:PERSON), (message:COMMENT)-[:HASTAG]->(tag:TAG), (person:PERSON)-[:HASINTEREST]->(tag:TAG) Return count(message); ``` expected 8647164, returns 1353121 query-2: ``` Match (person1:PERSON)-[:LIKES]->(message:COMMENT), (message:COMMENT)-[:HASCREATOR]->(person2:PERSON), (person1:PERSON)-[:ISLOCATEDIN]->(place:PLACE), (person2:PERSON)-[:ISLOCATEDIN]->(place:PLACE) Return count(person1); ``` expected 1344712, returns 824327