GraphScope icon indicating copy to clipboard operation
GraphScope copied to clipboard

🔨 🍇 💻 🚀 GraphScope: A One-Stop Large-Scale Graph Computing System from Alibaba | 一站式图计算系统

Results 486 GraphScope issues
Sort by recently updated
recently updated
newest added

**Describe the bug** In GIE, the DegreeFusion rule may occcurs some bugs. e.g., in the example query on LDBC dataset: ``` Match (author:PERSON)

Currently GIE doesn't support `TimeInterval` data types.

The client could not receive results and hang forever when - 1. submitting a complex query that could running for several minutes, and - 2. the instance are launched within...

bug
component:gie

as titled. (after #3262 is closed by a merged PR.)

component:dev-infra

- When the app context type is vertex_data context, do an `add_column` operation and return the new graph - fix projected graph Here's the demo, note that the `person` label...

目前这个语句报错: sub_graph=interactive.subgraph("g.V().has('trmnl_black_flag',1).both('3..4','register')") 报错如下: GremlinServerError: 500: Status{code=UNKNOWN, description=execution_error: user error: kind(Unknown), caused by:Unexpected data type in exec neither vertex nor edge in GraphWriter, cause=null} 不能实现从起点多跳路径建立子图的功能,只能通过inE,outE,bothE,但是这三种算子无法计算多跳路径,只能计算一跳,建议实现多跳路径建立子图,实现以下语句: sub_graph=interactive.subgraph("g.V().has('trmnl_black_flag',1).both('3..4','register')")

The following cypher query can be supported with dynamic param allowed in `Limit`. ```cypher MATCH(n) return LIMIT $Limit ```

As we discussed, the current error reporting in GAE is not graceful and hard to debug. After a roughly investigation, it appears that we may not be fully utilizing the...

component:gae

**Motivations and proposal** - a unified error code, easy to find a concrete reason for failure. - easy to identify which engine; Within each engine, it can have its own...

Now we have provided GIE service in Python SDK that supports starting Gremlin-only service using: ``` graphscope.gremlin(g) ``` or ``` graphscope.interactive(g, with_cypher=False) # False is the default option and can...