Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

node-cassandra-cql

Package Overview
Dependencies
Maintainers
1
Versions
33
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

node-cassandra-cql

Node.js CQL driver for Apache Cassandra native protocol

  • 0.2.8
  • Source
  • npm
  • Socket score

Version published
Weekly downloads
79
decreased by-9.2%
Maintainers
1
Weekly downloads
 
Created
Source

Node.js CQL Driver for Apache Cassandra

node-cassandra-cql is a Node.js CQL driver for Apache Cassandra's native protocol with a small dependency tree written in pure javascript.

Build Status

Installation

$ npm install node-cassandra-cql

Features

  • Connection pooling to multiple hosts
  • Plain Old Javascript: no need to generate thrift files
  • Parameters in queries (even for sets/lists/maps collections)
  • Get cell by column name: row.get('first_name')
  • Bigints and uuid support
  • Prepared statements

Using it

// Creating a new connection pool to multiple hosts.
var Client = require('node-cassandra-cql').Client;
var hosts = ['host1:9042', 'host2:9042', 'host3', 'host4'];
var client = new Client({hosts: hosts, keyspace: 'Keyspace1'});

Client constructor accepts an object with these slots, only hosts is required:

                hosts: String list in host:port format. Port is optional (default 9042).
             keyspace: Name of keyspace to use.
             username: User for authentication.
             password: Password for authentication.
              version: Currently only '3.0.0' is supported.
            staleTime: Time in milliseconds before trying to reconnect.
    maxExecuteRetries: Maximum amount of times an execute can be retried
                       using another connection, in case the server is unhealthy.
getAConnectionTimeout: Maximum time in milliseconds to wait for a connection from the pool.
             poolSize: Number of connections to open for each host (default 1)

Queries are performed using the execute() and executeAsPrepared() method. For example:

// Reading
client.execute('SELECT key, email, last_name FROM user_profiles WHERE key=?', ['jbay'],
  function(err, result) {
    if (err) console.log('execute failed');
    else console.log('got user profile with email ' + result.rows[0].get('email'));
  }
);

// Writing
client.execute('UPDATE user_profiles SET birth=? WHERE key=?', [new Date(1950, 5, 1), 'jbay'], 
  types.consistencies.quorum,
  function(err) {
    if (err) console.log("failure");
    else console.log("success");
  }
);
// Shutting down a pool
cqlClient.shutdown(function() { console.log("connection pool shutdown"); });

API

Client
  • execute(query, [params], [consistency], callback)
    Executes a CQL query.
  • executeAsPrepared(query, params, [consistency], callback)
    Prepares (once) and executes the prepared query.
  • shutdown([callback])
    Shutdowns the pool (normally it would be called once in your app lifetime).

execute() and executeAsPrepared() accepts the following arguments

       query: The cql query to execute, with ? as parameters
      params: Array of parameters that will replace the ? placeholders. Optional.
 consistency: The level of consistency. Optional, defaults to quorum.
    callback: The callback function with 2 arguments: err and result

Connections

The Client maintains a pool of opened connections to the hosts to avoid several time-consuming steps that are involved with the set up of a CQL binary protocol connection (socket connection, startup message, authentication, ...).

The Client is the recommended driver class to interact with Cassandra nodes. In the case that you need lower level fine-grained control you could use the Connection class.

var Connection = require('node-cassandra-cql').Connection;
var con = new Connection({host:'host1', port:9042});
con.open(function(err) {
  if(err) {
    console.error(err);
  }
  else {
    var query = 'SELECT key, email, last_name FROM user_profiles WHERE key=?';
    con.execute(query, ['jbay'], function(err, result){
      if (err) console.log('execute failed');
      else console.log('got user profile with email ' + result.rows[0].get('email'));
      con.close();
    });
  }
});
Connection methods
  • open(callback)
    Establishes a connection, authenticates and sets a keyspace.
  • close(callback)
    Closes the connection.
  • execute(query, args, consistency, callback)
    Executes a CQL query.
  • prepare(query, callback)
    Prepares a CQL query.
  • executePrepared(queryId, args, consistency, callback)
    Executes a previously prepared query (determined by the queryId).

Logging

Instances of Client() and Connection() are EventEmitter's and emit log events:

client.on('log', function(level, message) {
  console.log('log event: %s -- %j', level, message);
});

The level being passed to the listener can be info or error.

Data types

Cassandra's bigint data types are parsed as int64.

List / Set datatypes are encoded from / decoded to Javascript Arrays.

Map datatype are encoded from / decoded to Javascript objects with keys as props.

Decimal and Varint are not parsed yet, they are yielded as byte Buffers.

License

node-cassandra-cql is distributed under the MIT license.

Contributions

Feel free to join in to help this project grow!

Acknowledgements

FrameReader and FrameWriter are based on node-cql3's FrameBuilder and FrameParser.

Keywords

FAQs

Package last updated on 14 Oct 2013

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc