Cassandra

Category: NoSQL Status: base

Connects to an Apache Cassandra distributed NoSQL database. Supports CQL querying, table management, and schema browsing by keyspace.

Connection Settings

Field Default Description
host localhost Server hostname or IP
port 9042 CQL native transport port
user (empty) Username (when using auth)
password (empty) Password (1–512 chars, no spaces/quotes)
keyspace (empty) Default keyspace to connect to
cluster_name (empty) Cluster name (optional)
authentication no_auth no_auth or user_password

Authentication

Two modes: no_auth or user_password. Most production clusters require user_password.

Supported Actions

Required Setup

Requires the cassandra-driver Python package:

pip install cassandra-driver

External Links