You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
we have vertex properties with quite large number of values (~4000). When using cardinality SET we see very poor performance when inserting these property values:
These are performance logs (units in seconds) of doing something like this (in pseudo code):
while(true) {
traversal = db.traversal().v(some_node_id);
for each item in 500 entry list {
traversal.property(Cardinality.SET, key, value in list)
}
traversal.iterate();
db.tx().commit();
}
So after around 2000 property values inserts get really slow, we stopped when it reached 2 minutes for another 500 inserts.
We do not get this performance drop when using Cardinality.LIST. So I wonder, if the duplicate check on the SET is naively implemented? Something like every insert takes O(n). Might this be the case? And if so, is this duplicate check part of JanusGraph's codebase, or the backend's codebase, or tinkerpop's codebase?
reacted with thumbs up emoji reacted with thumbs down emoji reacted with laugh emoji reacted with hooray emoji reacted with confused emoji reacted with heart emoji reacted with rocket emoji reacted with eyes emoji
-
Hi,
we have vertex properties with quite large number of values (~4000). When using cardinality SET we see very poor performance when inserting these property values:
These are performance logs (units in seconds) of doing something like this (in pseudo code):
So after around 2000 property values inserts get really slow, we stopped when it reached 2 minutes for another 500 inserts.
We do not get this performance drop when using Cardinality.LIST. So I wonder, if the duplicate check on the SET is naively implemented? Something like every insert takes O(n). Might this be the case? And if so, is this duplicate check part of JanusGraph's codebase, or the backend's codebase, or tinkerpop's codebase?
best
Beta Was this translation helpful? Give feedback.
All reactions