发布时间:2013-01-09 12:43:08
使用cassandra时, 故意做了一个节点,然后脱机. 这时cassandra集群可以插入数据(SIMPLE_STRATEGY,strategy_options = {replication_factor:3}), 但不能做删除动作了. 提示是必须所有节点在线时,才能删除. 移除已经断开的节点, 要用removenode: 在一个在线的节点上, 执行: ./nodetool removenode <被移除的node id>查询这个nodeid用: ./nodetool status ......【阅读全文】
发布时间:2013-01-09 12:37:41
cassandra 1.2 CQL未来似乎会成为cassandra的标准访问方法. { 'key_value': 'apache:ver':'2.0', 'apache:docbase':'/var/www', 'cassandra:ver':'1.2', 'cassandra:seeds':'ip_value' } CQL中 2.0 支持的Column范围查询是通过'..' select 'apache'..'apache' from testcf where key = '<key_value>' 而在......【阅读全文】