alibaba / GraphScope

🔨 🍇 💻 🚀 GraphScope: A One-Stop Large-Scale Graph Computing System from Alibaba | 一站式图计算系统
https://graphscope.io
Apache License 2.0
3.32k stars 448 forks source link

[Performance] Running LDBC CR9 in GAIA-X Quite Slow #922

Open youyangy opened 3 years ago

youyangy commented 3 years ago

g.V($personId).out('knows').dedup().union(identity(), out('knows')).dedup().hasId(neq($personId)).as('friends').in('hasCreator').hasLabel('post').has('creationDate',lt($maxDate)).as('post').order().by('creationDate', desc).by('id', asc).limit(20).select('friends','post').by(valueMap('id', 'firstName', 'lastName')).by(valueMap('id', 'content', 'imageFile', 'creationDate'))

longbinlai commented 3 years ago

Could you please also include the benchmark dataset, machine configuration, as well as the time difference while compared to MG?

youyangy commented 3 years ago

Hardware Configurations ● cluster: an two nodes cluster ● memory: 503GB memory ● network: 20Gbps network ● cpu: two 16-core Intel(R) Xeon(R) E5-2682 CPUs at 2.50GHz

Datasets We generate large LDBC data sets with scale factor 30 using LDBC SNB Data Generator. The generated LDBC data sets which have 89 million vertices and 541 million edges would be used for the following experiments.

8thread, persistent storage, ms GAIA-X 70647 MG+v2 19299