Questions tagged [cassandra-0.7]

Cassandra is a highly scalable, eventually consistent, distributed, structured key-value store.

Version 0.7 of Cassandra: a highly scalable, eventually consistent, distributed, structured key-value store.

51 questions
13
votes
4 answers

how to integrate cassandra with zookeeper to support transactions

I have a Cassandra cluster and Zookeeper server installed. Now I want to support transactions in cassandra using zookeeper. How do i do that. Zookeeper creates znodes to perform read and write operations and data to and fro goes through znodes in…
Vaibhav Singh
  • 131
  • 1
  • 1
  • 4
11
votes
2 answers

How to remove dead node out of the Cassandra cluster?

I have the cassandra cluster of 12 nodes on EC2. Because of some failure we lost one of the node completely.I mean that machine do not exist anymore. So i have created the new EC2 instance with different ip and same token as that of the dead node…
samarth
  • 3,866
  • 7
  • 45
  • 60
7
votes
2 answers

Availability of Cassandra

I am running into an issue "me.prettyprint.hector.api.exceptions.HUnavailableException: : May not be enough replicas present to handle consistency level." when I have RF=1, Read Consistency Level = 1 and one of the nodes in 6 node ring/ cluster is…
Vinay Kumar Chella
  • 1,719
  • 6
  • 23
  • 35
6
votes
0 answers

Cassandra: How to get a list of processes?

Hello Cassandra Experts, How can I get a list of processes in Cassandra cluster (similiar to the show processlist command of MySQL)? Im puzzled as to why I cannot find any posts anywhere about this topic. Thanks.
4
votes
3 answers

Hector to connect with Cassandra

im trying to connect cassandra with Hector: public class Main { public static void main(String[] args) { StringSerializer stringSerializer = StringSerializer.get(); Cluster cluster = HFactory.getOrCreateCluster("Test Cluster",…
walves
  • 2,026
  • 6
  • 28
  • 46
4
votes
0 answers

cassandra - not able to insert decimal numbers using ruby client in a composite column

I have a composite column family with the following schema CREATE TABLE employees ( name varchar, month int, date int, salary decimal, …
3
votes
1 answer

cannot delete row key

I'm having an issue while deleting row key in Cassandra. Whenever I delete Row Key all the columns contained by that RowKey are deleted but RowKey itself is not deleted. Can anybody tell me how to remove a rowkey, once it is inserted in…
dinesh028
  • 2,137
  • 5
  • 30
  • 47
3
votes
3 answers

Unable to add nodes to existing Cassandra Cluster

We have cassandra cluster of 6 nodes on EC2,we have to double its capacity to 12 nodes. So to add 6 more nodes i followed the following steps. 1 Calculated the tokens for 12 nodes and configured the new nodes accordingly. 2 With proper configuration…
samarth
  • 3,866
  • 7
  • 45
  • 60
3
votes
3 answers

WSO2 DSS Cassandra Dependency

Is the integrated Cassandra server(version 0.7.x) loosely coupled with WSO2 DSS (version 2.6) or not? Will the usage of a newer version of Cassandra (e.g. 0.8.x) affect the DSS in the low level? Thanks
fgakk
  • 1,289
  • 1
  • 15
  • 26
3
votes
1 answer

Even partitioning of nonuniform ranged data in cassandra

I've got a rather tricky one, bear with me as I try not to stumble over my words here. I'm doing some research, and my group is transitioning to a cassandra database. Our research used MySQL before, but the data outgrew the database (192 million…
Chris Eberle
  • 47,994
  • 12
  • 82
  • 119
3
votes
1 answer

Why am I getting an Invalid UUID String when I update Cassandra column metadata?

I'm trying to define a schema in Cassandra 0.7 and would appreciate help resolving an issue I ran into. I set up a Super Column Family in cassandra-cli: create column family SimulationSummary with column_type='Super' and…
dr.
  • 247
  • 1
  • 5
  • 13
3
votes
2 answers

How to programatically add index to Cassandra 0.7

I tried to run the demo on http://www.riptano.com/blog/whats-new-cassandra-07-secondary-indexes programatically, but the results are different from running it in CLI. It seems like Cassandra can only index columns after index is added. All previous…
tanyehzheng
  • 2,201
  • 1
  • 20
  • 33
3
votes
1 answer

Inserting same data to cassandra database

I have a question what if we try to insert same data to cassandra database . Here by same i mean a set of 100 rows is already present in cassandra database say in a test column family .Again if we try to insert the same 100 rows to cassandra…
user1278493
  • 165
  • 1
  • 3
  • 9
3
votes
1 answer

How can i retrieve data from two tables in Cassandra Database

I have to retrive the data from two tables, Here are my two tables in Cassandra DataBase. employee is keyspace, Two tables: emp:- "eno" is primay key,"username","password" Dept:-"dno" is primary key ,"eno","dname" Now i want to retrieve the data…
user1983299
  • 393
  • 1
  • 5
  • 16
2
votes
3 answers

how to get type of column value

I 'm using Java to connect to Cassandra. I want to do something like check the data type of column i.e; whether it is long or UTF-8 Because, if it is long then I can get the value as column.value.getLong() but if it is UTF-8 or other, I have to…
dinesh028
  • 2,137
  • 5
  • 30
  • 47
1
2 3 4