关于图划分问题的请教
#1875
-
请问GraphScope中用户可以自定义图划分策略吗? 是否可以载入用户自定义的划分文件,不再划分直接进行图分析计算? |
Beta Was this translation helpful? Give feedback.
Answered by
yecol
Jul 25, 2022
Replies: 1 comment
-
Hi @DipsyZ , By default, GraphScope provides two partitioners, SegmentedPartitioner and HashPartitioner(code). GraphScope also supports customized partitioner, you may implement your own partitioner, |
Beta Was this translation helpful? Give feedback.
0 replies
Answer selected by
yecol
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Hi @DipsyZ ,
By default, GraphScope provides two partitioners, SegmentedPartitioner and HashPartitioner(code).
GraphScope also supports customized partitioner, you may implement your own partitioner,
and plug it in the right place (ref), it should work.