由买买提看人间百态

boards

本页内容为未名空间相应帖子的节选和存档,一周内的贴子最多显示50字,超过一周显示500字 访问原贴
Programming版 - Cassandra returns null row keys?
相关主题
Cassandra 里的 partitionGUI里打开.fig文件用imagesc显示图像 (转载)
wwzz来讲讲cassandra吧怎么才能在Unix里连续跑10个c写的程序
goodbug你现在懂message queue了么?c++类未完成初始化,如何引用this?
cassandra query speed求助菜鸟问个Matlab问题
谁用过Playorm 连nosql数据库看C码工写Python真是捉急
这个cassandra paging的解决方案怎么样? (转载)有人set up过 多个node的Cassandra 么? (转载)
Hbase new column 存储问题本版现在主题就是战啊。。。
我的DBA在生成ORACLE table的时候需要一个一个column看 (转载)why python
相关话题的讨论汇总
话题: row话题: key话题: cassandra话题: null话题: cqlsh
进入Programming版参与讨论
1 (共1页)
h**j
发帖数: 2033
1
cqlsh:testks> show version
[cqlsh 4.1.1 | Cassandra 2.0.6 | CQL spec 3.1.1 | Thrift protocol 19.39.0]
用了helenus和astyanax都一样,row key都是null,都指定了target version 1.2 和
CQL3.
[ ,
]
key作为一个column返回,by design?
p*****2
发帖数: 21240
2


schema是什么?
感觉是by design吧。

【在 h**j 的大作中提到】
: cqlsh:testks> show version
: [cqlsh 4.1.1 | Cassandra 2.0.6 | CQL spec 3.1.1 | Thrift protocol 19.39.0]
: 用了helenus和astyanax都一样,row key都是null,都指定了target version 1.2 和
: CQL3.
: [ ,
: ]
: key作为一个column返回,by design?

w**z
发帖数: 8232
3
what was your query? describe table/cf?



【在 h**j 的大作中提到】
: cqlsh:testks> show version
: [cqlsh 4.1.1 | Cassandra 2.0.6 | CQL spec 3.1.1 | Thrift protocol 19.39.0]
: 用了helenus和astyanax都一样,row key都是null,都指定了target version 1.2 和
: CQL3.
: [ ,
: ]
: key作为一个column返回,by design?

h**j
发帖数: 2033
4
OperationResult> result = keyspace
.prepareQuery(cf).withCql(String.format("SELECT * FROM users
"))
.execute();
cqlsh:testks> DESCRIBE COLUMNFAMILY users;
CREATE TABLE users (
user_id int,
fname text,
lname text,
PRIMARY KEY (user_id)
) WITH
bloom_filter_fp_chance=0.010000 AND
caching='KEYS_ONLY' AND
comment='' AND
dclocal_read_repair_chance=0.000000 AND
gc_grace_seconds=864000 AND
index_interval=128 AND
read_repair_chance=0.100000 AND
replicate_on_write='true' AND
populate_io_cache_on_flush='false' AND
default_time_to_live=0 AND
speculative_retry='99.0PERCENTILE' AND
memtable_flush_period_in_ms=0 AND
compaction={'class': 'SizeTieredCompactionStrategy'} AND
compression={'sstable_compression': 'LZ4Compressor'};

【在 w**z 的大作中提到】
: what was your query? describe table/cf?
:
: 和

w**z
发帖数: 8232
5
rowkey is a hashed value, cql is misleading and I avoid using that. try cli
and see what that gives you.

users

【在 h**j 的大作中提到】
: OperationResult> result = keyspace
: .prepareQuery(cf).withCql(String.format("SELECT * FROM users
: "))
: .execute();
: cqlsh:testks> DESCRIBE COLUMNFAMILY users;
: CREATE TABLE users (
: user_id int,
: fname text,
: lname text,
: PRIMARY KEY (user_id)

g*****g
发帖数: 34805
6
Row key shouldn't be null. It's possible to get a row with all columns null
due to tombstone.



【在 h**j 的大作中提到】
: cqlsh:testks> show version
: [cqlsh 4.1.1 | Cassandra 2.0.6 | CQL spec 3.1.1 | Thrift protocol 19.39.0]
: 用了helenus和astyanax都一样,row key都是null,都指定了target version 1.2 和
: CQL3.
: [ ,
: ]
: key作为一个column返回,by design?

h**j
发帖数: 2033
7
明白大牛的意思了,这么看确实是by design。

cli

【在 w**z 的大作中提到】
: rowkey is a hashed value, cql is misleading and I avoid using that. try cli
: and see what that gives you.
:
: users

1 (共1页)
进入Programming版参与讨论
相关主题
why python谁用过Playorm 连nosql数据库
Python就是爽这个cassandra paging的解决方案怎么样? (转载)
mongoDB跟传统关系数据库比有什么优势?Hbase new column 存储问题
some thoughts after Cassandra Summit我的DBA在生成ORACLE table的时候需要一个一个column看 (转载)
Cassandra 里的 partitionGUI里打开.fig文件用imagesc显示图像 (转载)
wwzz来讲讲cassandra吧怎么才能在Unix里连续跑10个c写的程序
goodbug你现在懂message queue了么?c++类未完成初始化,如何引用this?
cassandra query speed求助菜鸟问个Matlab问题
相关话题的讨论汇总
话题: row话题: key话题: cassandra话题: null话题: cqlsh