All Projects → apache → Cassandra

apache / Cassandra

Licence: apache-2.0
Mirror of Apache Cassandra

Programming Languages

java
68154 projects - #9 most used programming language
python
139335 projects - #7 most used programming language
HTML
75241 projects
shell
77523 projects
GAP
223 projects
Lex
420 projects

Projects that are alternatives of or similar to Cassandra

Migrate
Database migrations. CLI and Golang library.
Stars: ✭ 7,712 (+9.89%)
Mutual labels:  database, cassandra
Quill
Compile-time Language Integrated Queries for Scala
Stars: ✭ 1,998 (-71.53%)
Mutual labels:  database, cassandra
Dbbench
🏋️ dbbench is a simple database benchmarking tool which supports several databases and own scripts
Stars: ✭ 52 (-99.26%)
Mutual labels:  database, cassandra
Gocql
Package gocql implements a fast and robust Cassandra client for the Go programming language.
Stars: ✭ 2,182 (-68.91%)
Mutual labels:  database, cassandra
Cdrs
Cassandra DB native client written in Rust language. Find 1.x versions on https://github.com/AlexPikalov/cdrs/tree/v.1.x Looking for an async version? - Check WIP https://github.com/AlexPikalov/cdrs-async
Stars: ✭ 314 (-95.53%)
Mutual labels:  database, cassandra
Evolve
Database migration tool for .NET and .NET Core projects. Inspired by Flyway.
Stars: ✭ 477 (-93.2%)
Mutual labels:  database, cassandra
Nodejs Driver
DataStax Node.js Driver for Apache Cassandra
Stars: ✭ 1,074 (-84.7%)
Mutual labels:  database, cassandra
Scalardb
Universal transaction manager
Stars: ✭ 178 (-97.46%)
Mutual labels:  database, cassandra
Migrate
Database migrations. CLI and Golang library.
Stars: ✭ 2,315 (-67.01%)
Mutual labels:  database, cassandra
Deep Learning Wizard
Open source guides/codes for mastering deep learning to deploying deep learning in production in PyTorch, Python, C++ and more.
Stars: ✭ 343 (-95.11%)
Mutual labels:  database, cassandra
Csharp Driver
DataStax C# Driver for Apache Cassandra
Stars: ✭ 477 (-93.2%)
Mutual labels:  database, cassandra
Akumuli
Time-series database
Stars: ✭ 754 (-89.26%)
Mutual labels:  database
Java Knowledge Mind Map
【🌱🌱Java服务端知识技能图谱】用思维脑图梳理汇总Java服务端知识技能
Stars: ✭ 787 (-88.79%)
Mutual labels:  database
Dexie.js
A Minimalistic Wrapper for IndexedDB
Stars: ✭ 7,337 (+4.55%)
Mutual labels:  database
Stream Reactor
Streaming reference architecture for ETL with Kafka and Kafka-Connect. You can find more on http://lenses.io on how we provide a unified solution to manage your connectors, most advanced SQL engine for Kafka and Kafka Streams, cluster monitoring and alerting, and more.
Stars: ✭ 753 (-89.27%)
Mutual labels:  cassandra
Drive Db
📊 Use Google Drive spreadsheets as a simple database
Stars: ✭ 782 (-88.86%)
Mutual labels:  database
Phpauth
PHPAuth is a secure PHP Authentication class that easily integrates into any site.
Stars: ✭ 748 (-89.34%)
Mutual labels:  database
Db Dumper
Dump the contents of a database
Stars: ✭ 744 (-89.4%)
Mutual labels:  database
Cli
`kubectl` plugin for KubeDB
Stars: ✭ 736 (-89.51%)
Mutual labels:  database
Rust Rocksdb
rust wrapper for rocksdb
Stars: ✭ 815 (-88.39%)
Mutual labels:  database

Apache Cassandra

Apache Cassandra is a highly-scalable partitioned row store. Rows are organized into tables with a required primary key.

Partitioning means that Cassandra can distribute your data across multiple machines in an application-transparent matter. Cassandra will automatically repartition as machines are added and removed from the cluster.

Row store means that like relational databases, Cassandra organizes data by rows and columns. The Cassandra Query Language (CQL) is a close relative of SQL.

For more information, see the Apache Cassandra web site.

Requirements

  1. Java >= 1.8 (OpenJDK and Oracle JVMS have been tested)

  2. Python 3.6+ (for cqlsh; 2.7 works but is deprecated)

Getting started

This short guide will walk you through getting a basic one node cluster up and running, and demonstrate some simple reads and writes. For a more-complete guide, please see the Apache Cassandra website’s Getting Started Guide.

First, we’ll unpack our archive:

$ tar -zxvf apache-cassandra-$VERSION.tar.gz
$ cd apache-cassandra-$VERSION

After that we start the server. Running the startup script with the -f argument will cause Cassandra to remain in the foreground and log to standard out; it can be stopped with ctrl-C.

$ bin/cassandra -f

Now let’s try to read and write some data using the Cassandra Query Language:

$ bin/cqlsh

The command line client is interactive so if everything worked you should be sitting in front of a prompt:

Connected to Test Cluster at localhost:9160.
[cqlsh 2.2.0 | Cassandra 1.2.0 | CQL spec 3.0.0 | Thrift protocol 19.35.0]
Use HELP for help.
cqlsh>

As the banner says, you can use 'help;' or '?' to see what CQL has to offer, and 'quit;' or 'exit;' when you’ve had enough fun. But lets try something slightly more interesting:

cqlsh> CREATE KEYSPACE schema1
       WITH replication = { 'class' : 'SimpleStrategy', 'replication_factor' : 1 };
cqlsh> USE schema1;
cqlsh:Schema1> CREATE TABLE users (
                 user_id varchar PRIMARY KEY,
                 first varchar,
                 last varchar,
                 age int
               );
cqlsh:Schema1> INSERT INTO users (user_id, first, last, age)
               VALUES ('jsmith', 'John', 'Smith', 42);
cqlsh:Schema1> SELECT * FROM users;
 user_id | age | first | last
---------+-----+-------+-------
  jsmith |  42 |  john | smith
cqlsh:Schema1>

If your session looks similar to what’s above, congrats, your single node cluster is operational!

For more on what commands are supported by CQL, see the CQL reference. A reasonable way to think of it is as, "SQL minus joins and subqueries, plus collections."

Wondering where to go from here?

  • Join us in #cassandra on the ASF Slack and ask questions

  • Subscribe to the Users mailing list by sending a mail to [email protected]

  • Visit the community section of the Cassandra website for more information on getting involved.

  • Visit the development section of the Cassandra website for more information on how to contribute.

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].