https://hastebin.skyra.pw/urawixefur.rust
got this serror while trying to swap redis with dragonfly on proxitok
https://hastebin.skyra.pw/urawixefur.rust
got this serror while trying to swap redis with dragonfly on proxitok
exited with code 0
looks like thats running an old version (v1.10.0), have you tried image docker.dragonflydb.io/dragonflydb/dragonfly:v1.14.1
?
i think that was fixed in https://github.com/dragonflydb/dragonfly/pull/2091
seems like default image is not latest one
yes
its working
btw, is there docker.dragonflydb.io/dragonflydb/dragonfly:latest? or need specific ver?
can u consider adding image to dockerhub?
btw
any alternative for this command?
command: redis-server --save 60 1 --loglevel warning```
yes there is a :latest
, when I run it uses v1.14.1, so I’m not sure why it is using an old version when you run it? (maybe cached locally from an old version?)
can u consider adding image to dockerhub?
whats the benifit of dockerhub over docker.dragonflydb.io
?
To replace that command, we have a --snapshot_cron
to configure when to take backups, and a --minloglevel
to configure the log level
So to take a backup every minute (which it looks like --save 60 1
is doing, and set min log level to warning, use:
dragonfly --snapshot_cron="* * * * *" --minloglevel=1 --alsologtostderr