Top "Cassandra" questions

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

How to auto generate uuid in cassandra CQL 3 command line

Just learning cassandra, is there a way to insert a UUID using CQL, ie create table stuff (uid uuid primary …

cassandra cql cql3
What is an SSTable?

In BigTable/GFS and Cassandra terminology, what is the definition of a SSTable?

computer-science nosql cassandra bigtable gfs
How do I delete all data in a Cassandra column family?

I'm looking for a way to delete all of the rows from a given column family in cassandra. This is …

cassandra
Is there any query for Cassandra as same as SQL:LIKE Condition?

The LIKE condition allows us to use wildcards in the where clause of an SQL statement. This allows us to …

sql cassandra pycassa
MongoDB vs. Cassandra vs. MySQL for real-time advertising platform

I'm working on a real-time advertising platform with a heavy emphasis on performance. I've always developed with MySQL, but I'm …

mongodb database-design cassandra database nosql
How to create auto increment IDs in Cassandra

We know that it is easy to create auto increment IDs in SQL databases, is there a good solution for …

cassandra
Elasticsearch vs Cassandra vs Elasticsearch with Cassandra

I am learning NoSQL and looking at different options for one of my client's requirements. I have gone through various …

elasticsearch cassandra lucene
How to do a join queries with 2 or more tables in cassandra cql

I am new to cassandra. Here I have two tables EVENTS and TOWER. I need to join those for some …

cassandra cql
MAX(), DISTINCT and group by in Cassandra

I am trying to remodel a SQL database Cassandra such that, I can find the Cassandra equivalent for the SQL …

nosql cassandra cql cql3 nosql-aggregation
How to connect Cassandra using Java class

I am doing this to connect cassandra.But my code is returning an error.. Here is my code public class …

java cassandra