Hello,
I get the error on the subject line when I attempt to run the sample python code for RedisGraph module redisgraph-py. I get the same error when I run a node creation command from the redis-cli command line
d01.vrb.net:6379> GRAPH.QUERY social “CREATE (:Person {‘name’: ‘John Doe’, ‘age’: 33, ‘gender’: ‘male’, ‘status’: ‘single’ } )”
(error) ERR RedisGraph module is currently replicating
The configuration:
save “”
appendonly no
protected-mode no
dir /usr/share/gdb/dat/
dbfilename vrbgdb.grd
loglevel warning
logfile /usr/share/gdb/log/vrbgdb.log
loadmodule /usr/share/gdb/cfg/redisgraph.so
A snippet from the log file:
16:C 31 Dec 2020 10:37:23.835 # oO0OoO0OoO0Oo Redis is starting oO0OoO0OoO0Oo
16:C 31 Dec 2020 10:37:23.835 # Redis version=6.0.9, bits=64, commit=00000000, modified=0, pid=16, just started
16:C 31 Dec 2020 10:37:23.835 # Configuration loaded
16:M 31 Dec 2020 10:37:23.837 # Not listening to IPv6: unsupported
16:M 31 Dec 2020 10:37:23.837 * Running mode=standalone, port=6379.
16:M 31 Dec 2020 10:37:23.837 # Server initialized
16:M 31 Dec 2020 10:37:23.837 # WARNING overcommit_memory is set to 0! Background save may fail under low memory condition. To fix this issue add ‘vm.overcommit_memory = 1’ to /etc/sysctl.conf and then reboot or run the command ‘sysctl vm.overcommit_memory=1’ for this to take effect.
16:M 31 Dec 2020 10:37:23.841 * Graph deletion will be done asynchronously.
16:M 31 Dec 2020 10:37:23.841 * Thread pool created, using 8 threads.
16:M 31 Dec 2020 10:37:23.841 * Maximum number of OpenMP threads set to 8
16:M 31 Dec 2020 10:37:23.841 * Module ‘graph’ loaded from /usr/share/gdb/cfg/redisgraph.so
16:M 31 Dec 2020 10:37:23.841 * Loading RDB produced by version 6.0.9
16:M 31 Dec 2020 10:37:23.841 * RDB age 4103 seconds
16:M 31 Dec 2020 10:37:23.841 * RDB memory usage when created 4.28 Mb
16:M 31 Dec 2020 10:37:23.842 * Done decoding graph social
16:M 31 Dec 2020 10:37:23.842 * Done decoding graph tst
16:M 31 Dec 2020 10:37:23.842 * Done decoding graph tst
16:M 31 Dec 2020 10:37:23.842 * DB loaded from disk: 0.000 seconds
16:M 31 Dec 2020 10:37:23.842 * Ready to accept connections
root@grd:~# ls -lia
total 40
Any and all help will be deeply appreciated.