Extremely slow gremlin traversal retrieval of vertices #9452
Unanswered
bujoralexandru
asked this question in
Q&A
Replies: 1 comment 1 reply
-
As a personal rule I find it more "safe" to do things the "Orientdb" way :
I revert to Gremlin queries as a last resort for complicated traversals ..but somehow they always feel slow compared to OrientDB SQL |
Beta Was this translation helpful? Give feedback.
1 reply
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Hello, guys,
I have a problem with the gremlin traversal in a specific use-case.
My orientDB graph database has ~5 millions vertices and edges (40% V/ 60% E).
I try to evaluate a pretty trivial gremlin traversal from my Spring Boot application
Trying to retrieve this traversal result took almost 15 minutes WITH THE
.limit(100)
pipe enabled.The native query returns the 4.1k results serialized by my serialization method in about 1.6 seconds.
Does anyone have a suggestion about what's going on here and why is this traversal so EXTREMELY slow?
If more information is needed, I would be more than willing to share it.
Thank you,
Alex
Beta Was this translation helpful? Give feedback.
All reactions