redis-rdb-tools
redis-rdb-tools copied to clipboard
Parse Redis dump.rdb files, Analyze Memory, and Export Data to JSON
Hello, I just gave the rdb tool a try against an RDB file from Redis 7 rc 2. ``` ~/replication$ rdb --command diff ./master/dump.rdb Traceback (most recent call last): File...
how to see rdb-tools log? I use crontab to schedule rdb -c --memory xxx.rdb > xxx.csv It didn't work. But when I execute the shell script manually, it works. why?
Is there any plans of porting this to python3? Python2 reached end-of-life January1, 2020.
redis-rdb-tools-rdbtools-0.1.15]# python setup.py install rdbtools.cli.redis_profiler: module references __file__ creating dist creating 'dist/rdbtools-0.1.15-py2.7.egg' and adding 'build/bdist.linux-x86_64/egg' to it removing 'build/bdist.linux-x86_64/egg' (and everything under it) Processing rdbtools-0.1.15-py2.7.egg creating /usr/lib/python2.7/site-packages/rdbtools-0.1.15-py2.7.egg Extracting rdbtools-0.1.15-py2.7.egg to...
When the rdb file too large, the parse process is very slow. Can we speed up this ?
run rdb -c memory dump.rdb > memory.csv result: 0,string,test,1,2,string,8,8 how to deal with Special characters , thank you!
extended rdb version range, probably not good enough (not sure all the other things that can change. If there is more, let me know, and I can spend time learning...
127.0.0.1:6389> set product app8 OK 127.0.0.1:6389> set product xiaomi11 OK 127.0.0.1:6389> set product2 xiaomi11 OK 127.0.0.1:6389> set product3 xiaomi12 OK 127.0.0.1:6389> get product3 "xiaomi12" 127.0.0.1:6389> get product "xiaomi11" 127.0.0.1:6389> get...