Cassandra is a highly scalable, eventually consistent, distributed, structured row/column store.
0
votes
0answers
5 views
Can not build cassandra database stress client by DataStex
Im working with my own database cluster with cassandra. I want to try some stress tests with my database, thats why i downloaded DataStax Java-driver for Cassandra.
...
0
votes
1answer
5 views
Cassandra 1.2 CQL QERY SET
I have a table in Cassandra containing name, item.
Using the following data types: name is text, item is set.
f.e. I have these entries:
name | item
a | {item1, item3}
b | {item2, item3}
c ...
0
votes
1answer
18 views
Drop keyspace hangs
Problem: drop keyspace MyKeyspace; hangs.
Environment:
This is an Ubuntu 12.04 64bit in virtualbox, running a single Cassandra instance (on a development machine).
Cassandra is 1.1.6:
...
0
votes
0answers
10 views
Cassandra Enable compression during SSTable generation from huge CSV data files
I am facing some issues regarding disk space consumption while generating SSTables from CSV data files with billion+ rows and 8 columns. I am using the bulk loading techniques provided at ...
1
vote
0answers
18 views
Another Cassandra Data Modelling Approach
I have read various sources on this subject and understand the idea of modelling around the queries needed but wondered how far this can be stretched for Cassandra.
I need to store processing events ...
1
vote
1answer
17 views
Is there a clear equivalent of 'show keysapces' in cqlsh 2?
I want to quickly see the keyspaces in a cluster while using cqlsh. Is there some command?
Datastax' Using CQL documentation states that cqlsh specifically does not provide show keyspaces
Is there ...
1
vote
2answers
29 views
Apache Cassandra gridView issues
Need some help! I Can“t get rowkey value displayed on gridview from Apache-Cassandra.
some of the code...
public class PacienteEntity
{
public int key { get; set; }
public string name { get; set; }
}
...
0
votes
0answers
9 views
Get predefined list of keys from cassandra (using hector)
I used to have the following method to fetch data from my columnFamily:
public <K, C> ColumnFamilyResult<K, C> getCfRows(String p_columnFamily, K[] p_Keys, Serializer<C> ...
0
votes
0answers
15 views
Hector query to retrieve a set of columns from a Column Family
What query should I use to retrieve a set of columns from a Column Family?
Column Name is a composite key and I know I want to get list of Columns and I do not have any row keys. One part of the ...
0
votes
0answers
13 views
Using Hector with CQL3 in java
I'm running Cassandra 1.2.0 (CQL3) and I'm using Hector 1.0.5. Here's my table definition:
CREATE TABLE group_profiles (
profile_id text,
time timeuuid,
document text,
PRMARY KEY ...
3
votes
0answers
23 views
Python cql library not able to update a boolean column using query substitution
Intro
I'm using the python cql library library to access a Cassandra 1.2 database (CQL 3.0). My table contains a boolean column as follows:
CREATE TABLE test (
id text,
value ...
0
votes
1answer
35 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 ...
2
votes
2answers
35 views
Cassandra Read taking longer than expected
I am using cassandra 1.2 with CQL3. I have three column families in my keyspace. When I query one of the column family(phones), it takes a long time to retrive. Here is my query
**select * from ...
0
votes
0answers
22 views
Log-structured file-systems vs. in-memory databases
Log-structured file-systems never really entered mainstream. However, it occurred to me that in-memory databases (e.g., Cassandra) borrow many concepts from them. It seems to me like Cassandra ...
0
votes
1answer
20 views
Collection of embedded objects using Cassandra CQL
I am trying to put my domain model into Cassandra using CQL. Let's say I have USER_FAVOURITES table. Each favourites has ID as a PRIMARY KEY. I want to store the list of up to 10 records of multiple ...
0
votes
1answer
37 views
how to give real time input to Storm
I am trying to execute storm ,Actualy data is emited from some port,using storm spout program i am listening, (ie)implementing SerialPortEventListenter code hereener
i am getting error
no ...
0
votes
1answer
18 views
How to delete a row in cassandra if a column is null
Is there a way to delete multiple rows from Cassandra CF using CQL query without using key in the filter condition?
Something like DELETE FROM [ColumnFamily] WHERE [NonKeyColumnName] = [Value]?
OR
...
1
vote
1answer
19 views
Cassandra cqlsh report Bad request for Using Consistency
Datastax manual say that I can change consistency level with "USING CONSISTENCY" syntax.
http://www.datastax.com/docs/1.1/references/cql/cql_data_types#specifying-consistency-level
But, Cassandra ...
4
votes
1answer
44 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 ...
0
votes
1answer
48 views
slice query using hector on cassandra composite column
need some help on filtering based on Composite column.
I am unable to get filtering on 2nd part of composite column for some reason -
create column family xxx with comparator= ...
0
votes
1answer
29 views
Cassandra SSTables generation memory consumption / available compression?
I am generating Cassandra SSTables using the bulk loading sample provided at DataStax website. http://www.datastax.com/dev/blog/bulk-loading
My question is how much disk space is ideally consumed by ...
0
votes
0answers
29 views
Mapper goes infinity with DataStax Cassandra 1.2.1
My cassandra scehma has only one row in a column family. When running a mapreduce, the mapper keeps on reading the same single row again and again. Thus mapper goes into infinity and reducer ...
0
votes
1answer
21 views
Cassandra Error: Column timestamp is required
I am learning Cassandra with Java, and I've tried to run the Hotel sample in this book http://shop.oreilly.com/product/0636920010852.do (Cassandra: The Definitive Guide). But because this sample used ...
-1
votes
0answers
18 views
Cassandra CQL Error : Bad Request
Every time I type in anything like create table/key space/etc.
Cassandra CQL throws same error of bad request or mismatched input..
I have installed datastax setup. Is it the cassandra configuration ...
1
vote
1answer
37 views
Murmur3 Hash Algorithm Used in Cassandra
I'm trying to reproduce the Murmur3 hashing in Cassandra. Does anyone know how to get at the actual hash values used in the row keys? I just need some key - hash value pairs from my data to check that ...
1
vote
1answer
21 views
How to create super column using Hector API?
My code:
public class InsertSuperColumn {
private static StringSerializer stringSerializer = StringSerializer.get();
public static void main(String[] args) throws Exception {
...
1
vote
2answers
31 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
23 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
25 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.
...
0
votes
1answer
37 views
Cassandra Token Aware
I have a Cassandra 1.2 cluster that is using vNodes (default of 256 per node). I'd like to predict the placement of these vNodes physically within the ring from within the client so I can more ...
0
votes
1answer
45 views
Cassandra ttl on a row
I know that there are TTLs on columns in Cassandra. But is it also possible to set a TTL on a row? Setting a TTL on each column doesn't solve my problem as can be seen in the following usecase:
At ...
1
vote
2answers
37 views
Load data in bulk into cassandra
Lets say I have significant amount of data in excel.
I want to load in cassandra column family?
How could I do this?
1
vote
0answers
33 views
Cassandra 1.1 or 1.2 for production usage?
We are encountering random SSTable corruptions with 1.2.3/1.2.4 (Datastax Community Edition) on single node development machines with a mixed read/write load using a data model with wide rows from a ...
0
votes
0answers
25 views
Getting different result each time I read from cassandra cluster
I am using hector to read from cassandra cluster of 5 machines.
The code is
String cqlString = "some query";
CqlQuery<String, String, String> cqlQuery = new CqlQuery<String, String, ...
0
votes
0answers
17 views
NoAvailableHostsException while starting Titan with Cassandra
I have configured Cassandra-1.2.2 in cluster mode. But while starting Titan with my cassandra configuration, it Showing the following exception
Exception in thread "main" ...
4
votes
2answers
57 views
How to insert a datetime into a Cassandra 1.2 timestamp column
Intro
I'm using the python library cql to access a Cassandra 1.2 database. In the database I have a table with a timestamp column and in my Python code I have a datetime to be inserted in the column. ...
6
votes
1answer
47 views
Difference between UPDATE and INSERT in Cassandra?
What is the difference between UPDATE and INSERT when executing CQL against Cassandra?
It looks like there used to be no difference, but now the documentation says that INSERT does not support ...
0
votes
0answers
17 views
create the html table for dynamic data from cassandra
I have a list of maps and each map contain different key:value count.
e.g. map1=(k1:v, k2:v, k3:v), map2=(k1:v, k3,v) map3=(k1:v, K4:v, k5:v). Getting this value from SOLR and from back to Cassandra. ...
1
vote
1answer
40 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 ...
4
votes
1answer
62 views
Is Cassandra a good candidate database for that must sustain over 100 read/write operations per second?
Currently our system uses PostgreSQL, however we seem to have pushed the limit of its capabilities. Some of our tables need to handle over 100 read/write operations per second so it is probably time ...
1
vote
1answer
31 views
Error running Cassandra
I have downloaded and installed he latest version of Cassandra according to the guide instructions. Upon running the bin/cassandra -f command to start the system, I got the following error:
xss = ...
0
votes
0answers
26 views
Store a collection in Cassandra with Pycassa
I want to store a list of data in Cassandra with Pycassa and columnfamilymap
row_key -> {
[column_name; entry1] -> "",
[column_name; entry2] -> "",
...
}
The problem is, ...
0
votes
1answer
63 views
CassUI server not starting
I am trying to get my hands-on cassui. Given Cassandra server URL and port number as mycassandraserver:9160
When I try to see whether server is running or not browser is giving error as -
Oops! ...
0
votes
1answer
36 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 ...
0
votes
1answer
31 views
cassandra column data appears after a long delay and with incorrect timestamps
I am using a cassandra column family with a Standard column type and a composite type key. The cassandra cluster has 3 nodes, and a replication factor of 3. Data gets inserted, updated and deleted ...
3
votes
0answers
25 views
Serialize a Python dict into a Cassandra 1.2 column
The problem
I'm trying to save a serialized object (using cPickle) into a Cassandra 1.2 column, I'm using the python cql library. I've already tried defining the column as text (utf8 string) and ...
1
vote
0answers
16 views
Cassandra JMX MBin to monitor number of active/idle connection from tomcat
I am using Tomcat and Cassandra. I am trying to write JMX shell script to find out following
05/12/2013 13:37:16 -0400 org.archive.jmx.Client numActive: 0
05/12/2013 13:37:16 -0400 ...
0
votes
0answers
66 views
Azure Table Storage, Cassandra or HBase for caching
Have a nice day!
I am developing site with a large number of users and contents, so I need to cache some data about their (in format like string key and serialized array or columns - millions rows). ...
0
votes
0answers
26 views
Cassandra key-ranged queries by MD5 [closed]
Is it possible to run key-ranged queries in Cassandra passing not keys itself but their MD5's (or Murmur Hash) directly? Using Random(Murmur3) partitioning.
0
votes
1answer
36 views
Error connecting to remote JMX agent! while starting Nodetool
I am trying to use nodetool against our Cassandra production database. But I am getting exception as soon as I try to start nodetool against Cassandra production cluster from my local machine.
...

