How may edges can a super node have before performance degrade? #4325
Replies: 1 comment 3 replies
-
Dear @akhilravuri2 , I cannot provide a specific number(due to the spec of the machine, traffic pattern and the schema may all vary, like in some cases 1k isn't that super while for other cases it's a supernode already) on this but vertex with 28k connection will make query traversing to it quite expansive and resource-consuming. It'll be ideal for always there is a chance to mitigate this during the schema/ETL phase, when it's not avoidable, I will recommend leveraging storaged config: So if the truncation on the supernode is accepted, you could try giving values to see what happens on your queries involving those supernodes. ref:
Good question, yes, VID is indexed by default, it's because the data siting in the underlying RocksDB are in the format of Where the vid of a vertex is in the key part, and it's sorted in RocksDB's LSM Tree, thus, seeking a vid is just a prefix seek. ref:
BR//Wey |
Beta Was this translation helpful? Give feedback.
-
Hi All,
our data model is huge that our super node will have to 10 to 15 nodes which connects to 28k child nodes with 21 edges each between node and child node.
So we just wanted to know how may edges can a super node have before performance degrade?
One more question, Are VID's indexed by default?
Thanks,
Akhil
Beta Was this translation helpful? Give feedback.
All reactions