Replies: 1 comment 2 replies
-
Is your data source static, like a file? If yes what format? We have a pretty sick importer for vertices and edges that work in parallel under the hood. |
Beta Was this translation helpful? Give feedback.
2 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Hello all! I'm very much enjoying ArcadeDB and am trying to apply it to a real-world use case of mine. Basically we have a high number/throughput of events (vertices) in our system and I'm asking for the best way to get these events into the DB. Every event has the same schema/properties so if there was a way to compile/streamline a Gremlin query or something, perhaps it would be fast enough to handle the throughput. In JDBC there is PreparedStatement that is analogous to what I'm looking for, maybe a parameterized Gremlin query or something like that? Perhaps related to this: is there a way to bulk upload vertices?
I'll have to create edges that link the events together based on their timestamps, but because of the sorting I figure I'd do that offline/later and not part of the event ingest. Happy to hear any and all ideas! Thanks in advance!
Beta Was this translation helpful? Give feedback.
All reactions