-
Notifications
You must be signed in to change notification settings - Fork 33
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-update crashes at a certain percentage #90
Comments
What version or Redis and RedisGraph are you using? |
Thanks for your reply. I am using Redis version 6.2.6, RedisGraph 2.8.11 |
@nemote95 We believe that the fix in #2301 might solve the problem. Can you please try running |
Hi, thanks for your reply. I tried the edge version and it failed again after updating 7% of the data. here is the Redis log :
|
@nemote95 Are you sure that you're using the updated edge docker?
|
I am trying to update nodes of a graph ( about 300 million nodes and 200 billion edges) using redisgraph-bulk-loader (latest version).
The csv file for this update is about 6Gb, containing two columns of integers, one representing the id of the node and the other represnting the date and time for that node. I ran the following command :
redisgraph-bulk-update $graph_name -h [host_IP_address] -p [host_redis_port] --csv csv _file_dir --query "MATCH (n:Article) WHERE n.id = row[0] SET n.date = row[1]".
This query used to work previously, but when I tried recently, it crashed at 7% of the progress. I tried changing the token size to half of the token, but it was not helpful. I also tried testing the command on 1% of the data. The progress bar showed 100% for the smaller update, but it stalled after that.
Any idea why this is crashing at a certain point?
Cheers.
The text was updated successfully, but these errors were encountered: