redisgraph-bulk-loader
redisgraph-bulk-loader copied to clipboard
A Python utility for building RedisGraph databases from CSV inputs
is there a way for the bulk loader to add multiple labels on a node?
I've tried to `import redisgraph_bulk_loader.bulk_insert` but failed with the following error ``` File ~\dev\redis-graph-poc\venv\lib\site-packages\redisgraph_bulk_loader\entity_file.py:11, in 8 from enum import Enum 9 from exceptions import CSVError, SchemaError ---> 11 csv.field_size_limit(sys.maxsize) #...
unit tests support for includes regardless of path difference
Hi, sorry to bother you with a question which is probably a simple one but is that possible (and if it is, how ?) to launch the code **without using...
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...
I met this problem while I have graph module on. ``` 127.0.0.1:6379> module list 1) 1) "name" 2) "graph" 3) "ver" 4) (integer) 20411 127.0.0.1:6379> info modules # Modules module:name=graph,ver=20411,api=1,filters=0,usedby=[],using=[],options=[]...
I am using a machine with 512GB of RAM and am running out of memory when loading a 1BN node / 2BN edge graph. Each node has 3 properties and...
This is more of a question with a use case when loading nodes lets imagine we have two objects ``` { "name": "moving item" , "can_move" : True} { "name":...
When I try to load a CSV file using the enforce schema flag, but the header fields do not contain a colon, a "list out of range" error is raised.
1. Would it support a chunk of 5 billion nodes/edges? 2. If each has minimal payload, how much time would the process take?