我在键空间测试中有一张表 -
CREATE TABLE mytable (
firstname text,
lastname text,
address text,
phone text,
PRIMARY KEY (firstname,lastname,address)
)
我已经插入了一条记录
insert into test.mytable(firstname,lastname,address,phone) values ('H','P','Kolkata','9836852120');
Run Code Online (Sandbox Code Playgroud)
并且还执行nodetool compact test mytable了强制记录去sstable.
现在我想执行nodetool getsstables此记录.如何在此命令中传递复合键nodetool getsstables test mytable <key>?