17

I would like to start using Cassandra with a node.js deployment, but I can't find a Thrift or Cassandra client for Node.js and/or JavaScript.

Is there one?

Is there a simple means of generating Thrift connections?

Update: The short answer to this question turns out to be no, there is no JS client for Thrift that is compatible with Cassandra.

Further Update: The next release of Cassandra (0.8 at time of writing) is going to have support for an Avro API. There is already node.js module for Avro support.

Toby Hede
  • 36,755
  • 28
  • 133
  • 162

4 Answers4

15

Someone made one now: https://github.com/wadey/node-thrift

Update: Rackspace released a node cassandra api:
http://code.google.com/a/apache-extras.org/p/cassandra-node/

Update: They moved it to github:
https://github.com/racker/node-cassandra-client

Update: There is a CQL driver now too:
https://github.com/simplereach/helenus

Update: There is a CQL driver, that uses the Cassandra native protocol https://github.com/jorgebay/node-cassandra-cql

Update: DataStax released a CQL driver for Cassandra using the native protocol: https://github.com/datastax/nodejs-driver

Zanson
  • 3,991
  • 25
  • 31
9

https://issues.apache.org/jira/browse/THRIFT-550

edit: take a look at https://github.com/wadey/node-thrift

Schildmeijer
  • 20,702
  • 12
  • 62
  • 79
1

Zanson already mentioned that Rackspace released the Cassandra API for Node.js, but it's worth noting that their Google Code page isn't their primary base of operations. The github page is where you can stay the most up to date:

https://github.com/racker/node-cassandra-client

netpoetica
  • 3,375
  • 4
  • 27
  • 37
1

The official Datastax driver is now node-cassandra-cql rebranded to nodejs-driver:

https://github.com/datastax/nodejs-driver

It uses CQL3.

srlm
  • 3,186
  • 2
  • 27
  • 40