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
Somehow, I need to migrate Redis data to DragonflyDB. Therefore, I am trying to use the riot source replicate target --mode live command locally, where the source is the Redis server and the target is the DragonflyDB server. When I delete a key in the Redis server in real-time, the corresponding key in DragonflyDB is not deleted. Below is my console test output.
riot command
docker run --network default fieldengineering/riot --host redis -p 6379 --db 1 replicate --host dragonfly -p 6380 --db 1 --mode live
At the same time, monitor changes to Redis keys and values in real time
redis-cli config set notify-keyspace-events KEA
redis-cli --csv psubscribe '__keyspace@1__:*'
Somehow, I need to migrate Redis data to DragonflyDB. Therefore, I am trying to use the riot source replicate target --mode live command locally, where the source is the Redis server and the target is the DragonflyDB server. When I delete a key in the Redis server in real-time, the corresponding key in DragonflyDB is not deleted. Below is my console test output.
riot command
At the same time, monitor changes to Redis keys and values in real time
Use python to test
And there is a del event in Redis server
There is an increase in the RIOT listener:
But the result is not correct. Does anyone know what happened or what I am doing wrong in my test?
The text was updated successfully, but these errors were encountered: