Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我已经定义了一个键空间。我可以将计数器列族(读取和写入)的一致性级别设置为 ALL 而不影响其余键空间吗?我无法从cli中的帮助中弄清楚如何做到这一点,但我想应该是可能的。类似于以下内容:
update column family COUNTERS with ________
我正在使用 Java Hector API。
不确定 CQL3,但您可以在读/写时执行此操作。节俭客户端示例:
client.add('key1', ColumnParent(column_family='Counter1'), CounterColumn('c1', 100), ConsistencyLevel.ONE) client.add('key1', ColumnParent(column_family='Counter1'), CounterColumn('c1', -50), ConsistencyLevel.ONE)