Re: Creating a CQL3 storage layout with row key, column key and column value

2014-04-23 Thread DuyHai Doan
"And now, when I create an index on column_value. Will the column_value still be stored with the column_key or will Cassandra create an extra column?" Cassandra will create a column family whose name is "index_name" to index the column_value for you. You can't have access to this column family

Re: Creating a CQL3 storage layout with row key, column key and column value

2014-04-23 Thread Sebastian Schmidt
Yes I mean a secondary index. For example: CREATE INDEX index_name ON table_name(column_value); Am 23.04.2014 17:01, schrieb DuyHai Doan: What do you mean by "index on column_value" ? Do you mean secondary index ? On Wed, Apr 23, 2014 at 4:52 PM, Sebastian Schmidt

Re: Creating a CQL3 storage layout with row key, column key and column value

2014-04-23 Thread DuyHai Doan
What do you mean by "index on column_value" ? Do you mean secondary index ? On Wed, Apr 23, 2014 at 4:52 PM, Sebastian Schmidt wrote: > And now, when I create an index on column_value. Will the column_value > still be stored with the column_key or will Cassandra create an extra > column? > > Am

Re: Creating a CQL3 storage layout with row key, column key and column value

2014-04-23 Thread Sebastian Schmidt
And now, when I create an index on column_value. Will the column_value still be stored with the column_key or will Cassandra create an extra column? Am 23.04.2014 16:47, schrieb DuyHai Doan: The schema you just showed allows, for one row key (partition key), to have several distinct pairs of c

Re: Creating a CQL3 storage layout with row key, column key and column value

2014-04-23 Thread Sebastian Schmidt
Thank you very much for your help :) Am 23.04.2014 16:47, schrieb DuyHai Doan: The schema you just showed allows, for one row key (partition key), to have several distinct pairs of column_key/column_value. And that's exactly what you want ... On Wed, Apr 23, 2014 at 4:44 PM, Sebastian Schm

Re: Creating a CQL3 storage layout with row key, column key and column value

2014-04-23 Thread DuyHai Doan
The schema you just showed allows, for one row key (partition key), to have several distinct pairs of column_key/column_value. And that's exactly what you want ... On Wed, Apr 23, 2014 at 4:44 PM, Sebastian Schmidt wrote: > Hi, > > I want to create a storage layout with CQL3 like this: > > ro

Creating a CQL3 storage layout with row key, column key and column value

2014-04-23 Thread Sebastian Schmidt
Hi, I want to create a storage layout with CQL3 like this: row_key should be my row key column_key should by my column key column_value should be the value saved for the column key How can I achieve this? I figured that doing this: CREATE TABLE table_name (row_key BLOB, column_key BLOB, colum