Questions tagged [cassandra-2.0]

Cassandra 2.0 is a NoSQL database sponsored by Apache.

Cassandra 2.0 is a NoSQL database sponsored by Apache.

Cassandra advertises itself to have the following merits:

  1. Proven (used by many large established companies);
  2. Performant (peforms consistently well on NoSQL benchmarks);
  3. Fault tolerant (data is automatically replicated to multiple nodes for fault-tolerance. Replication across multiple data centers is supported. Failed nodes can be replaced with no downtime.);
  4. Decentralized (there are no single points of failure and no network bottlenecks. Every node in the cluster is identical);
  5. Durable (durability is the property that writes, once completed, will survive permanently, even if the server is killed or crashes or loses power.); and
  6. Elastic (read and write throughput both increase linearly as new machines are added, with no downtime or interruption to applications);
1327 questions
-1
votes
2 answers

What is version of hadoop supported by cassandra 2.0

I have written a job in hadoop 2.2.0, that reads a input file and bulks load the data in cassandra 2.0 However i got the error (its because of difference in distribution of hadoop used in compilation & execution) [root@hadoopslave ~]# hadoop jar…
S Kr
  • 1,831
  • 2
  • 25
  • 50
-1
votes
1 answer

copy table in cassandra

i am using below commands for coping data COPY events.standardevents (uuid, data, name, time, tracker, type, userid) TO 'temp.csv'; truncate standardevents; COPY event.standardeventstemp (uuid, data, name, time, tracker, type, userid) FROM…
Helping Hand..
  • 2,430
  • 4
  • 32
  • 52
-1
votes
1 answer

Spring with cassandra

How to integrate the spring with cassandra and how to use with multiple table.Please explain with example. I read about easycassandra Thanks in advance
-2
votes
1 answer

How to achive Cassandra O'Reilly Architect Certification

About the Architect Certification aviable for version 2.x at O'Reilly, in what manner the questions on this certification varies from the other two available (Administrator and Developer) Do you suggest some additional material to study for this…
Cristian
  • 19
  • 1
-2
votes
2 answers

Error while creating a new thrift connection to Cassandra

I am trying to setup a KairosDB installation using Cassandra as backend, but I am facing the following error: [HThriftClient.java:152] - Creating a new thrift connection to localhost(127.0.0.1):9042 ERROR [HConnectionManager.java:418] - MARK HOST…
-3
votes
1 answer

Cassandra Java driver Performance : CQL Queries with IN Clause having high no of values

We are using Datastax Cassandra java driver (version 3.x). There is a logged batch Select statement with 'IN' clause, having a high number of values. Due to which we are facing a serious issue of low performance. Following is the format of query…
Himanshu Singh
  • 199
  • 3
  • 15
-3
votes
1 answer

how many partition key for a Cassandra table?

partition key for a Cassandra table? In customer table customerid is partition key? Suppose I have 1 million customers in year so I have 1 million partitions After 10 years so I have 10 million customers or more also ... so I have 10 million…
1 2 3
88
89