-
Notifications
You must be signed in to change notification settings - Fork 38
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Bulk Support #28
Comments
Is it a one thing? Meaning is it the only the initial load? |
Thanks. This is what I am evaluating now. But nevertheless it may be a good idea to implement support for the bulk APIs here. It will help in some cases where we get a few hundred graph edges that we would need to update, on the results of a batch job completion or some such. Thanks. |
Notice the current API is for Bulk-Load and not for Bulk-Update |
@gkorland Are there any other alternatives / workarounds to do operations in bulk ? In our system we have a tight loop where a lot of |
@gkorland Will you be interested in getting a PR if we could contrib a |
I have a few million records in my program that I want to bulk insert using my Go program. It takes me about 2 minutes for 500 records and that would take me 4000 hours for just a million records. I have a couple of
MERGE
statements in each iteration.I read about how to improve this and stumbled on to the
GRAPH.BULK
which may seem useful in this case. But the go library does not seem to support this as the documentation is not covering it. Are there plans to support the BULK API for usecases similar to mine ? Inserting a million records (a few hundred nodes and edges) may not be such a rare scenario. Thanks.The text was updated successfully, but these errors were encountered: