High level clients

Using one of these clients is strongly preferred to raw Thrift when developing applications (the Thrift API is primarily intended for client developers). What follows are clients that support Cassandra 0.7.

If no high-level client exists for your environment, you may be able to update an older client; failing that, you'll have to use the raw Thrift API.

Older clients

If you are using Cassandra 0.6*, see ClientOptions06.

Thrift

Thrift is the Cassandra driver-level interface that the clients above build on. You can use raw Thrift from just about any language, but it's not particularly idiomatic in any of them. Some examples are given in ThriftExamples.

Internal API

The StorageProxy API is available to JVM-based clients, but unless you really know that you need it you should probably be using a higher-level client listed above or, failing that, the Thrift API. The StorageProxy API is intended for internal use, and highly specialized use-cases. (The most common reason is wanting to use the BinaryMemtable bulk-load interface.)

Hadoop

Running Hadoop map/reduce jobs in Cassandra is described in HadoopSupport.

ClientOptions07 (last edited 2011-08-18 18:40:40 by Guido Appenzeller)