Tagged Questions
1
vote
1answer
106 views
Inserting rows in Cassandra table with 3 fields as composite key
I'm a newbie to Cassandra and I need it for a quick and small adhoc job.
However, I'm on a stalemate with a problem. I have a column family created
with the CQL below:
CREATE TABLE dummy_file_test
...
0
votes
1answer
81 views
Access to a compositive rowkey in Cassandra [duplicate]
Possible Duplicate:
Misunderstanding on Composite Key for Cassandra
I have a columnfamily with a composite key:
create column family MyCF
with key_validation_class = ...
0
votes
2answers
450 views
Cassandra: create CompositeType column
Im new to cassandra and Im trying to create a schema that will allow me to have a row as
users: {
name: <value>,
...
phone_numbers:1: <value>,
phone_numbers:2: ...
2
votes
3answers
1k views
Creating composite COLUMNS (not keys) with CQL 3
This article discusses possible ways CQL 3 could be used for creating composite columns in Cassandra 1.1. They are just ideas. Nothing is official, and the Datastax documentation doesn't cover this ...
4
votes
1answer
1k views
Cassandra Hector Client: Is a RangeSlicesQuery on Composite Row Keys possible when using Random Partitioning?
Is there any way to range query rows with a composite row key when using random partitioning?
Im workling with column families created via CQL v3 like this:
CREATE TABLE products ( rowkey ...
2
votes
0answers
295 views
How to query, by data range, a composite column in Cassandra with TimeUUID as the first component?
1) Inserting a column
DynamicComposite dc = new DynamicComposite();
dc.add(0,TimeUUIDUtils.getUniqueTimeUUIDinMillis());
2) Trying to query the column between given time range using a SliceQuery
...
1
vote
1answer
407 views
Cassandra-secondary index on part of the composite key?
I am using a composite primary key consisting of 2 strings Name1, Name2, and a timestamp (e.g. 'Joe:Smith:123456'). I want to query a range of timestamps given an equality condition for either Name1 ...
1
vote
2answers
555 views
Astyanax Composite Column
I am looking for a data model look like this. In this data model i am using composite key. I know how to make a composite key. But somehow in this case i m unable to do.
User_Keys_By_Last_Name = {
...