Tagged Questions
1
vote
2answers
38 views
Unavailable exception while trying to retrieve data from Cassandra
I have a Cassandra DB and am creating a column family as follows.
CREATE COLUMN FAMILY users
WITH comparator = UTF8Type
AND key_validation_class=UTF8Type
AND column_metadata = [
{column_name: ...
0
votes
1answer
41 views
Cassandra schema design optimization
My problem statement is :-
I have a college , every college have some students ,
every student has some data(for eg student id , student name , class etc) related to him.
The kind of questions ...
4
votes
1answer
50 views
Cassandra - search by primary key using an arbitrary subset of the primary key columns
Is it possible to find records in Cassandra who's primary key matches an arbitrary subset of all of the primary key fields?
Example:
Using the table described below, it is possible to find the ...
1
vote
2answers
37 views
Cassandra Commit and Recovery on a Single Node
I am a newbie to Cassandra - I have been searching for information related to commits and crash recovery in Cassandra on a single node. And, hoping someone can clarify the details.
I am testing ...
1
vote
0answers
27 views
Embedded Cassandra: how to apply a script?
I want to write tests against the data access layer powered by Cassandra.
So I use Embedded Cassandra with Astyanax and cassandra-unit, but I can't find the way to load a script which contains ...
1
vote
1answer
31 views
PlayORM Cassandra Date Conversion Error
I have PlayORM set up through maven.
My main class is basically copied from the example here.
Every thing is set up properly and seems fine however I get some sort of date conversion error.
...
1
vote
1answer
57 views
Ways to improve Cassandra read performance in my scenario
We have recently started using Cassandra database in production. We have a single cross colo cluster of 24 nodes meaning 12 nodes in PHX and 12 nodes in SLC colo. We have a replication factor of 4 ...
0
votes
1answer
40 views
How CQL3 differs from CQL2 and Thrift?
"Compact storage stores an entire row in a single column on disk instead of storing each non-primary key column in a column that corresponds to one column on disk. Using compact storage prevents you ...
2
votes
1answer
138 views
Cassandra read performance with Astyanax client
We are using Cassandra database in production environment. We have a single cross colo cluster of 24 nodes meaning 12 nodes in PHX and 12 nodes in SLC colo. We have a replication factor of 4 which ...
2
votes
0answers
36 views
Cassandra: stackoverflow like Q/A database using cassandra [closed]
Can anyone explain how to design a stackoverflow like Q/A database using cassandra. I am having this kind of scenario.
Assume that it will have the same functionality as it is in SO. I am confused ...
2
votes
2answers
100 views
Does Cassandra support sharding?
Does Apache Cassandra support sharding?
Apologize that this question must seem trivial, but I cannot seem to find the answer. I have read that Cassandra was partially modeled after GAE's Big Table ...
1
vote
1answer
35 views
How can I retrieve an entire wide row from cassandra using ruby
So I have some rows that are very large. Some are a few million columns wide. Each column is a JSON object.
Obviously the data is larger than the max_packet in thrift and all I get all sorts of ...
1
vote
3answers
77 views
Beginning Cassandra — Use Kundera? Something else?
We are in the process of getting our feet wet with Cassandra. None of us have any experience with this particular platform, but are experienced developers with JavaEE, JPA, etc. I came across the ...
0
votes
1answer
72 views
How should I store a date interval in Cassandra?
I'm working on an application that stores sensor measurements. Sometimes, the sensors will send erroneous measurements (e.g. the measured value is out of bound). We do not want to persist each ...
1
vote
1answer
121 views
Apache Cassandra JDBC connection error
I wand to connect to cassandra 1.2.4 on a remote server through jdbc.
package cassandraclient;
import java.sql.Connection;
import java.sql.DriverManager;
import java.sql.PreparedStatement;
...
1
vote
1answer
155 views
Cassandra data model for time series
I am working on a Cassandra data model for storing time series (I'm a Cassandra newbie).
I have two applications: intraday stock data and sensor data.
The stock data will be saved with a time ...
0
votes
1answer
41 views
Defining dataTypes in Cassandra Column Family
create column family testing
with key_validation_class = 'SomeType1'
and comparator = 'SomeType2'
and default_validation_class = 'SomeType3'
What do these represent here in this line.
set ...
1
vote
3answers
73 views
does leveldb/Cassandra's bloom filter help in range query?
As I knonw, leveldb/cassandra stores their records in SSTable, and use bloom filter to select SSTable on performing exact key query, does their bloom filter help in key range query?
Thanks!
1
vote
1answer
213 views
nosql: MongoDB, Cassandra or alternative for data warehousing
I am stuck between a concrete decision on whether to go with MongoDB or Cassandra for my database needs and would like input on my use case as to guide my decision.
Requirements:
Data source
X ...
1
vote
1answer
39 views
Increase/Decrease value in phpcassa
Is there any method for simple increase/decrease integer value in cassandra using phpcassa? Maybe it is CounterColumn, but I didn't find anything about how to use it.
Basically, I just want to ...
0
votes
1answer
55 views
How to get the Cassandra Table/Columnfamily size in MB
I want to design my cluster and want to set proper size of key_cache and row_cache
depending on the size of the tables/columnfamilies.
Similar to mysql, do we have something like this in ...
1
vote
1answer
147 views
commitLog and SSTables in Cassandra database
I recently started working with Cassandra database. I have installed single node cluster in my local box. And I am working with Cassandra 1.2.3.
I was reading the article on the internet and I found ...
0
votes
0answers
73 views
Writing to Cassandra Database using Pelops Client
I recently started working with Cassandra database. I was able to setup single node cluster in my local machine.
And now I was thinking to start writing some sample data to Cassandra Database using ...
0
votes
0answers
87 views
NoSQL vs RDBMS for Web Site [closed]
I'm building a public Web Site but after reading about NoSQL I don't know what will be the better option for what I want\need, NoSQL or a traditional RDBMS.
What I'm building is something like ...
-2
votes
1answer
68 views
Conditional statements in CQL [closed]
I have tried to use Conditional statements like >, >=, <, <= are not working with with my script. I have added the secondary index for age, which is my field name there.
...
0
votes
1answer
79 views
TTransportException when creating keyspace
I'm using cassandra-cli -h localhost to create keyspace.
I tried this command: create keyspace reddit with strategy_options = [{replication_factor:1}]; and this one: create keyspace reddit with ...
3
votes
1answer
67 views
Insert LongType to Cassandra using thrift failed
I tried to insert a longtype column into cassandra:
Column docid = new Column();
docid.setName("docid".getBytes());
ByteBuffer val = ByteBuffer.allocate(8);
...
0
votes
1answer
31 views
Hector CassandraHostConfigurator - When to enable useThriftFramedTransport flag?
When one should enable useThriftFramedTransport setting? What is the benefit of using ThriftFramedTransport?
4
votes
2answers
157 views
Relational vs Columnar and Document Databases - aren't they one in the same?
I understand that document-oriented NoSQL DBs are "extensions" of the KV model in that they allow you to query more than just a single lookup key. But once something is a "document", I feel like it ...
1
vote
1answer
137 views
How to persist a new customer row in Cassandra using Hector?
I have spent an entire day trying to insert data into a simple cassandra database for storing username, password, email and phone.
All research I have done keeps taking me back to ...
2
votes
1answer
314 views
How to do Cassandra CQL queries with Astyanax?
I'm using Astyanax version 1.56.26 with Cassandra version 1.2.2
Ok, a little situational overview:
I have created a very simple column family using cqlsh like so:
CREATE TABLE users (
name text ...
0
votes
1answer
46 views
Data model in cassandra
I would like to ask for information about what kind of data model in cassandra I can use for my project. Let me tell about it in detail. As Object oriented model in java, I have 2 classes, Events and ...
0
votes
1answer
51 views
Cassandra: CL != ALL on write will overload cluster
I am running a series of benchmarks with Cassandra. Among others, I tried the following configuration: 1 client node, 3 server nodes (same ring). All experiments are run after cleaning up the servers:
...
0
votes
0answers
73 views
What database(s) for storing user data, and also support targeting queries? [closed]
The app I'm working on needs to be able to store user data. I have to accept chunks of user data, and then as chunks are delivered, append those chunks to a cumulative record of the user's data.
I ...
0
votes
1answer
132 views
Only row key in a Cassandra column family
I'm using Cassandra 1.1.8 and today I saw in my keyspace a column family with the following content
SELECT * FROM challenge;
KEY
----------------------------
49feb2000100000a556522ed68
...
0
votes
0answers
31 views
Cassandra and simple data persistance
I have inserted around 2000 records in a keyspace using following hector api:
for(int i=0;i<1000;i++) {
mutator.insert("sample", "authCollection",
...
0
votes
1answer
103 views
A query range date using Cassandra
I have tried to do a query range date using this schema:
create column family fact_ingreso with comparator = UTF8Type and
key_validation_class=UTF8Type and
column_metadata =
[{column_name: ...
2
votes
3answers
226 views
Cassandra - Difference between CLI and CQL
I am new to Cassandra and learning the things. I have seen there are several Cassandra Client APIs, such as Cassandra CLI , CQL etc. I need to know what exactly the difference between CLI and CQL ? ...
1
vote
2answers
93 views
Cassandra select rows ordered by added date
I try to store emails for newsletter mailing app in Cassandra.
Current schema is :
CREATE TABLE emails (
email varchar,
comment varchar,
PRIMARY KEY (email));
I don't know how to get ...
0
votes
2answers
64 views
Cassandra - Get on CF with key returning 0 results, but key exists when retrieving whole table using pycassa
We have a table in Cassandra 1.2.0. That has an VarInt key. When we search keys we can see that they exist.
Table description:
CREATE TABLE u (
key varint PRIMARY KEY,
) WITH COMPACT STORAGE AND
...
4
votes
1answer
245 views
insertion error with cassandra CQL3-Hex Bytes conversion error
when I inert data into table using cassandra -jdbc I got error java.sql.SQLSyntaxErrorException: cannot parse 'ani' as hex bytes
Connected to Test Cluster at localhost:9160.
[cqlsh 2.3.0 | ...
2
votes
3answers
124 views
Atomically updating shared state in Cassandra
Problem:
I am planning on using cassandra as a nosql data store for my application. One of the use-cases I have is to update a user's "balance". Say the balance for each user is stored as a key ...
1
vote
1answer
473 views
cassandra tutorial or book for 1.1.* version
i need apache cassandra for some company project and tried to start with Apache cassandra : the definitive guide. But the problem here is the book is refering to a very old version of Apache cassandra ...
1
vote
1answer
87 views
Data Importing from cassandra to solr
Hello Friends,
I want to know by any way we can use solr data import handler with cassandra.
If I can get any reference site or example would be good help.
Thanks
1
vote
2answers
63 views
Casandra datamodel
I try to build a backend for quiz game statistics : I want to know recognition percent for each image globally and recognition percent of images by country.
Currently datamodel is :
TABLE results ...
1
vote
2answers
345 views
Create a table in Cassandra 1.2 with CQL3 where column names will be created at runtime
I want to store snapshots of an object in Apache Cassandra 1.2
Row key is the Object#ID and there will be a column for each snapshot.
-------- latest -------- v2 -------- v1
id-122 100 ...
1
vote
4answers
232 views
Select the right NoSQL database [closed]
I need to select a database for a project. I think my best bet is a NoSQL solution like MongoDB or Cassandra, but I don't have experience with such systems.
Requirements for the project are:
Main ...
0
votes
1answer
127 views
cassandra database design
Consider the following situation:
I have a page it will have following fields: pageid, title, content, like, follow,field1,field2..............,field100,pagecomments, images
Like and follow is ...
2
votes
2answers
69 views
Load cassandra schema programmatically
I'm trying to install and configure cassandra programmatically using a shell script.
I install cassandra, run ./cassandra and then I try to load the schema using cassandra-cli --host localhost -f ...
1
vote
1answer
47 views
Detecting changes in Cassandra
Is it possible to be notified when data is updated in Cassandra?
I.e. when changes to a node have been replicated in from another node?
Could I do this directly using Gossip, or is there a higher ...
