Xue Li

Results 17 comments of Xue Li

Hi, @SemyonSinchenko, I'm impressed with your proposals—they seem quite solid. I did notice, though, that certain features such as the ["ZSTD" compression](https://github.com/alibaba/GraphAr/blob/main/spark/src/main/scala/com/alibaba/graphar/util/FileSystem.scala#L59), are supported since Spark v3.2. To maintain compatibility...

We could consider utilizing the following graph datasets for our proposal: 1. Property Graphs: The [LDBC graphs](https://github.com/ldbc/ldbc_snb_datagen_spark?tab=readme-ov-file#graph-schema) feature a variety of vertex and edge types, each with associated properties that...

@acezen, do you have any more comments on this proposal?

> Hi, are there any prerequisites to contribute to this ? i would love to help .. just fyi, i have never contributed to any open source projects yet but...

@freshyl @KateHed Can you help on this issue?

> Hey, @lixueclaire @acezen. Could you evaluate the test plan? Point it out If there are anying missing.:) Also, is there any aliyun ecs that I can evaluate, because I...

May be we can provide a Graph class, which can traverse all vertices and edges, instead of a specific type. ``` class Graph { explicit Graph(const GraphInfo& graph_info); Result GetAllVerticesBegin();...

Currently, creating or copying an iterator (especially the EdgeIter) is time-consuming, since it holds all necessary readers (considering sharing readers is not thread-safe). Is there any way to let the...