Cassandra Client Java API’s [closed]

Thrift is becoming more of a legacy API:

First, you should be aware that the Thrift API is not going to be getting new features ; it’s there for backwards compatibility, and not recommended for new projects.
the paul

So I’d avoid Thrift based APIs (thrift is only kept for backwards compatibility).

In saying that if you do need to use a thrift based API I’d go for Astyanax.
Astyanax is very easy to use (compared to other thrift APIs but my personal experience is that Datastax’s driver is even easier).

So you should have a look at Datastax’s API (and GitHub repo)? I’m not sure if there any compiled versions of the API for download but you can easily build it with Maven. Also if you take a look at the GitHub repo’s commit logs it undergoes very frequent updates.

The driver works exclusively with CQL3 and is asynchronous but be warned that Cassandra 1.2 is the earliest supported version.

Performance
Astyanax is thrift based and Datastax’s drive is the binary protocol. Here are the latest benchmarks I could find between thrift and CQL (note these are definitely out of date). But in fairness the small difference in performance shown in these benchmarks will rarely matter.

Asynch support
Datastax’s asynch support is a definite advantage over Astyanax (Netflix tried implementing it but decided not to).

Documentation
I cant really argue against Netflix’s wiki. The documentation is excellent and its updated fairly frequently. Their wiki includes code examples, and you can find tests in the source code if you need to see the code at work. I struggled to find any documentation of the Datastax driver however test are provided in the GitHub repository so that is a starting point.

Also have a look at this answer (well.. not my one anyway) It looks into some advantages/disadvantages of Thrift and CQL.

Leave a Comment