Cassandra is a highly scalable, eventually consistent, distributed, structured row/column store.

learn more… | top users | synonyms (1)

0
votes
1answer
19 views

Copy a ColumnFamily in cassandra (the meta-data, not the actual rows)

I need to copy a ColumnFamily in the same keyspace -- I don't care for the data in this ColumnFamily, just the CF's meta-data (properties, settings, etc -- whatever you'd like to call it). I can't ...
0
votes
0answers
8 views

Using LINQ in Cassandraemon

I have the following column family in my Cassandra keyspace (from using describe): CREATE TABLE state ( id text PRIMARY KEY, flag int, anotherflag int, lastupdate timestamp ) I am ...
1
vote
1answer
28 views

Hive job not running properly on cassandra cluster, reducer get stuck

Hi I have 6 node datastax cassandra cluster(3 cassandra- 3 analytics). I am using hive to generate reports. The issue is when I run a hive job with count(*) or group by query, mappers get completed ...
0
votes
1answer
19 views

Unexpected UnavailableException in a Cassandra cluster

I have a 3-node C* cluster. C* client has read consistency level set to QUORUM. When one node in cluster is down I am getting an UnavailableException in response to a read query Why? Quorum for ...
0
votes
0answers
11 views

Astyanax's EntityPersister & Collection Updates

Background Astyanax's Entity Persister saves a Map of an Entity in multiple columns. The format is mapVariable.key The Problem: The astyanax's Entity Persister doesn't remove deleted key/value ...
1
vote
2answers
12 views

Error while trying to connect to cassandra through hector API

I have written java code for reading records from cassandra. But it is giving run-time error.. Here is java code:- import javax.naming.spi.DirStateFactory.Result; import ...
0
votes
0answers
22 views

Cassandra loads data incorrect

Problem: I copied some data from a cassandra cluster and want to add this to an other one noded cluster. But when I load the data all the column data is written as row key in my database. Cassandra ...
0
votes
1answer
18 views

YCSB Execution Error

When i am running YCSB, i am getting the following error. I followed all the steps specified in YCSB git hub link, but still i am getting this error Exception in thread "Thread-3" ...
0
votes
1answer
15 views

map update in cassandra with cql3

i have a CF in cassandra that have a coulmn type map this CF is as below: CREATE TABLE word_cat ( word text, doc_occurrence map <text, int >, total_occurrence map <text, int ...
1
vote
1answer
32 views

Querying Large Datasets in Cassandra

I am by experience a RDBMS programmer. I am working on a scientific research problem involving genomic data. I was assigned to explore Cassandra since we needed a Big Data, scalable and cheap (free) ...
4
votes
1answer
29 views

Is there a way to find out of an INSERT/UPDATE command in Cassandra resulted in a new row being created or an old row being updated?

Question Is there a way to find out of an INSERT/UPDATE command in Cassandra resulted in a new row being created or an old row being updated? Background The reason I am asking is because we would ...
0
votes
1answer
13 views

How do I pass credentials to CassandraContext in Cassandraemon?

I am trying to use Cassandraemon to connect to a Cassandra instance in C# .NET. I cannot find any examples that allow you to specify credentials. My Cassandra instance is running on a server in AWS ...
1
vote
2answers
37 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
19 views

Cassandra nodetool ring Output

Anyone know how to interpret the output of nodetool ring? I have (simplified): Address Token 9182993262602236459 ...
0
votes
1answer
24 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
20 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
27 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
12 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
22 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
24 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
11 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
18 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
1answer
23 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
29 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
40 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
42 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
24 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
22 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
47 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 SerialPortEventListener I am getting error no rxtxSerial in ...
0
votes
1answer
21 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
20 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
49 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
57 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
35 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
31 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
23 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
41 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
36 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
25 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
30 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
43 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
53 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
48 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
38 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
26 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
20 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
64 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. ...

1 2 3 4 5 47