在Scylladb中备份一个密钥空间



我正在尝试在scylladb中备份我的数据。目前,我的Scylla在Docker中。

所以我正在运行此命令:

docker exec -it saif-scylla nodetool snapshot testkeyspace

Requested creating snapshot(s) for [testkeyspace] with snapshot name [1564405495089] Snapshot directory: 1564405495089

但是我找不到/var/lib/scylla/data文件夹中的任何备份。

另外,"请求"到底意味着什么。

也通过运行命令列出快照时:

docker exec -it saif-scylla nodetool listsnapshots

我可以看到的是:

Snapshot name       Keyspace name                Column family name           True size          Size on disk
1564405495089       testkeyspace                 new_events                   0 bytes            0 bytes
1564405495089       testkeyspace                 new_pings                    0 bytes            0 bytes
1564405495089       testkeyspace                 test_pings                   0 bytes            0 bytes

我没有得到这里发生的事情。

任何想法,我在做什么错?

任何帮助都会有所帮助。

谢谢

快照文件位于"快照"下的表目录中。例如,在运行nodetool snapshot mykeyspace;

之后,对于Keyspace mykeyspace和表格Heartrate_ttl
ls -l /var/lib/scylla/data/mykeyspace/heartrate_ttl-75359ce0b22611e9b18b000000000000/snapshots/1564421433190/
total 44
-rw-r--r--. 2 root root   66 Jul 29 17:30 la-4-big-CompressionInfo.db
-rw-r--r--. 2 root root  189 Jul 29 17:30 la-4-big-Data.db
-rw-r--r--. 2 root root   10 Jul 29 17:30 la-4-big-Digest.sha1
-rw-r--r--. 2 root root   16 Jul 29 17:30 la-4-big-Filter.db
-rw-r--r--. 2 root root   30 Jul 29 17:30 la-4-big-Index.db
-rw-r--r--. 2 root root   54 Jul 29 17:30 la-4-big-Scylla.db
-rw-r--r--. 2 root root 4466 Jul 29 17:30 la-4-big-Statistics.db
-rw-r--r--. 2 root root   92 Jul 29 17:30 la-4-big-Summary.db
-rw-r--r--. 2 root root  101 Jul 29 17:30 la-4-big-TOC.txt
-rw-r--r--. 1 root root   38 Jul 29 17:30 manifest.json

nodetool listsnapshots应该为您提供快照尺寸

nodetool listsnapshots
Snapshot Details: 
Snapshot name Keyspace name Column family name True size Size on disk
1564421433190 mykeyspace    heartrate_ttl      0 bytes   4.91 KB   

我在上述示例中使用了Scylla 3.0.5 Docker。

可能是您在这些表中没有数据?

最新更新