You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I'm trying to port my app from redisgraph to falkordb.
My redis instance listens on unix socket instead of tcp. I want to know how I can use falkordb-bulk-insert if my redis is listening on Unix socket.
I'm currently using redisgraph-bulk-insert v0.10.2. Noting that --unix-socket-path was deprecated in redisgraph-bulk-loader v0.12.0.
Since falkordb-bulk-insert uses server_url, which internally uses the from_url in redis python, I tried using falkordb-bulk-insert --server-url "unix:///sockets/redis0.sock", but I run into the below error.
redis.exceptions.ConnectionError: Error 97 connecting to localhost:6379. Address family not supported by protocol.
I did try to connect to the redis directly using redis-python using the above unix socket url and appears to be working.
In [3]: redis.from_url("unix:///sockets/redis0.sock").ping()
Out[3]: True
I'm trying to port my app from redisgraph to falkordb.
My redis instance listens on
unix socket
instead oftcp
. I want to know how I can usefalkordb-bulk-insert
if my redis is listening on Unix socket.I'm currently using redisgraph-bulk-insert v0.10.2. Noting that
--unix-socket-path
was deprecated in redisgraph-bulk-loader v0.12.0.Since falkordb-bulk-insert uses server_url, which internally uses the from_url in redis python, I tried using
falkordb-bulk-insert --server-url "unix:///sockets/redis0.sock"
, but I run into the below error.I did try to connect to the redis directly using redis-python using the above unix socket url and appears to be working.
Any idea what might be wrong?
This is same requirement as RedisGraph#109.
The text was updated successfully, but these errors were encountered: