ScyllaDB University LIVE, FREE Virtual Training Event | March 21
Register for Free
ScyllaDB Documentation Logo Documentation
  • Server
  • Cloud
  • Tools
    • ScyllaDB Manager
    • ScyllaDB Monitoring Stack
    • ScyllaDB Operator
  • Drivers
    • CQL Drivers
    • DynamoDB Drivers
  • Resources
    • ScyllaDB University
    • Community Forum
    • Tutorials
Download
ScyllaDB Docs ScyllaDB Open Source Getting Started Migrate to ScyllaDB ScyllaDB and Apache Cassandra Compatibility

Caution

You're viewing documentation for a previous version. Switch to the latest stable version.

ScyllaDB and Apache Cassandra Compatibility¶

Latest update: ScyllaDB 5.0

ScyllaDB is a drop-in replacement for Apache Cassandra 3.11, with additional features from Apache Cassandra 4.0. This page contains information about ScyllaDB compatibility with Apache Cassandra.

The tables on this page include information about ScyllaDB Open Source support for Apache Cassandra features. They do not include the ScyllaDB Enterprise-only features or ScyllaDB-specific features with no match in Apache Cassandra. See ScyllaDB Features for more information about ScyllaDB features.

How to Read the Tables on This Page¶

  • - Available in ScyllaDB and compatible with Apache Cassandra.

  • - Not available in ScyllaDB.

  • NC - Available in ScyllaDB, but not compatible with Apache Cassandra.

Interfaces¶

Apache Cassandra Interface

Version Supported by ScyllaDB

Comments

CQL

Fully compatible with version 3.3.1, with additional features from later CQL versions (for example, Duration type).
Fully compatible with protocol v4, with additional features from v5.

More below

Thrift

Compatible with Cassandra 2.1

SSTable format (all versions)

3.11(mc / md / me), 2.2(la), 2.1.8 (ka)

me - supported in ScyllaDB Open Source 5.1 and ScyllaDB Enterprise 2022.2.0 (and later)
md - supported in ScyllaDB Open Source 4.3 and ScyllaDB Enterprise 2021.1.0 (and later)

JMX

3.11

More below

Configuration (cassandra.yaml)

3.11

Log

NC

Gossip and internal streaming

NC

SSL

NC

Supported Tools¶

The tools are based on Apache Cassandra 3.11.

  • Nodetool Reference - Scylla commands for managing Scylla node or cluster using the command-line nodetool utility.

  • CQLSh - the CQL shell.

  • REST - Scylla REST/HTTP Admin API.

  • Tracing - a ScyllaDB tool for debugging and analyzing internal flows in the server.

  • SSTableloader - Bulk load the sstables found in the directory to a Scylla cluster

  • Scylla SStable - Validates and dumps the content of SStables, generates a histogram, dumps the content of the SStable index.

  • Scylla Types - Examines raw values obtained from SStables, logs, coredumps, etc.

  • cassandra-stress A tool for benchmarking and load testing a Scylla and Cassandra clusters.

  • SSTabledump - Scylla 3.0, Scylla Enterprise 2019.1 and newer versions

  • SSTable2JSON - Scylla 2.3 and older

  • sstablelevelreset - Reset level to 0 on a selected set of SSTables that use LeveledCompactionStrategy (LCS).

  • sstablemetadata - Prints metadata about a specified SSTable.

  • sstablerepairedset - Mark specific SSTables as repaired or unrepaired.

  • configuration_encryptor - encrypt at rest sensitive scylla configuration entries using system key.

  • local_file_key_generator - Generate a local file (system) key for encryption at rest, with the provided length, Key algorithm, Algorithm block mode and Algorithm padding method.

  • scyllatop - A terminal base top-like tool for scylladb collectd/prometheus metrics.

  • scylla_dev_mode_setup - run Scylla in Developer Mode.

  • perftune - performance configuration.

Run each tool with -h, --help for full options description.

Features¶

Consistency Level (read and write)¶

Options

Support

Any (Write Only)

One

Two

Three

Quorum

All

Local One

Local Quorum

Each Quorum (Write Only)

SERIAL

*

LOCAL_SERIAL

*

* From ScyllaDB 4.0. See Scylla LWT.

Snitches¶

Options

Support

SimpleSnitch

RackInferringSnitch

PropertyFileSnitch

GossipingPropertyFileSnitch

Dynamic snitching

EC2Snitch

EC2MultiRegionSnitch

GoogleCloudSnitch

CloudstackSnitch

Partitioners¶

Options

Support

Murmur3Partitioner (default)

RandomPartitioner

*

OrderPreservingPartitioner

ByteOrderedPartitioner

*

CollatingOrderPreservingPartitioner

* Removed in ScyllaDB 4.0

Protocol Options¶

Options

Support

Encryption

Authentication

Compression (see below)

Compression¶

Options

Support

CQL Compression

LZ4

Snappy

Node to Node Compression

Client to Node Compression

Backup and Restore¶

Options

Support

Snapshot

Incremental backup

Restore

Repair and Consistency¶

Options

Support

Nodetool Repair

Incremental Repair

Hinted Handoff

Lightweight Transactions

*

* From ScyllaDB 4.0. See Scylla LWT.

Replica Replacement Strategy¶

Options

Support

SimpleStrategy

NetworkTopologyStrategy

Security¶

Options

Support

Role Based Access Control (RBAC)

Indexing and Caching¶

Options

Support

row / key cache

(More on Scylla memory and cache)

Secondary Index

*

Materialized Views

*

* In ScyllaDB Open Source and ScyllaDB Enterprise from 2019.1

Additional Features¶

Feature

Support

Counters

User Defined Types

User Defined Functions

*

Time to live (TTL)

Super Column

vNode Enable

Default

vNode Disable

Triggers

Batch Requests

Includes conditional updates

* Experimental

CQL Command Compatibility¶

Create Keyspace¶

Feature

Support

DURABLE_WRITES

IF NOT EXISTS

WITH REPLICATION

(see below)

Create Keyspace with Replication¶

Feature

Support

SimpleStrategy

NetworkTopologyStrategy

OldNetworkTopologyStrategy

Create Table¶

Feature

Support

Primary key column

Compound primary key

Composite partition key

Clustering order

Static column

Create Table Att¶

Feature

Support

bloom_filter_fp_chance

caching

(ignored)

comment

compaction

compression

dclocal_read_repair_chance

default_time_to_live

gc_grace_seconds

index_interval

max_index_interval

memtable_flush_period_in_ms

(ignored)

min_index_interval

populate_io_cache_on_flush

read_repair_chance

replicate_on_write

speculative_retry

ALWAYS, NONE

Create Table Compaction¶

Feature

Support

SizeTieredCompactionStrategy (STCS)

LeveledCompactionStrategy (LCS)

DateTieredCompactionStrategy (DTCS)

*

TimeWindowCompactionStrategy (TWCS)

* Deprecated in ScyllaDB 4.0, use TWCS instead

Create Table Compression¶

Feature

Support

sstable_compression LZ4Compressor

sstable_compression SnappyCompressor

sstable_compression DeflateCompressor

chunk_length_kb

crc_check_chance

Alter Commands¶

Feature

Support

ALTER KEYSPACE

ALTER TABLE

ALTER TYPE

ALTER USER

ALTER ROLE

Data Manipulation¶

Feature

Support

BATCH

INSERT

Prepared Statements

SELECT

TRUNCATE

UPDATE

USE

Create Commands¶

Feature

Support

CREATE TRIGGER

CREATE USER

CREATE ROLE

Drop Commands¶

Feature

Support

DROP KEYSPACE

DROP TABLE

DROP TRIGGER

DROP TYPE

DROP USER

DROP ROLE

Roles and Permissions¶

Feature

Support

GRANT PERMISSIONS

GRANT ROLE

LIST PERMISSIONS

LIST USERS

LIST ROLES

REVOKE PERMISSIONS

REVOKE ROLE

Materialized Views¶

Feature

Support

MATERIALIZED VIEW

ALTER MATERIALIZED VIEW

CREATE MATERIALIZED VIEW

DROP MATERIALIZED VIEW

Index commands¶

Feature

Support

INDEX

CREATE INDEX

DROP INDEX

© 2016, The Apache Software Foundation.

Apache®, Apache Cassandra®, Cassandra®, the Apache feather logo and the Apache Cassandra® Eye logo are either registered trademarks or trademarks of the Apache Software Foundation in the United States and/or other countries. No endorsement by The Apache Software Foundation is implied by the use of these marks.

Was this page helpful?

PREVIOUS
Apache Cassandra to Scylla Migration Process
NEXT
ScyllaDB Migration Tools: An Overview
  • Create an issue
  • Edit this page

On this page

  • ScyllaDB and Apache Cassandra Compatibility
    • How to Read the Tables on This Page
    • Interfaces
    • Supported Tools
    • Features
      • Consistency Level (read and write)
      • Snitches
      • Partitioners
      • Protocol Options
      • Compression
      • Backup and Restore
      • Repair and Consistency
      • Replica Replacement Strategy
      • Security
      • Indexing and Caching
      • Additional Features
    • CQL Command Compatibility
      • Create Keyspace
      • Create Keyspace with Replication
      • Create Table
        • Create Table Att
        • Create Table Compaction
        • Create Table Compression
        • Alter Commands
        • Data Manipulation
        • Create Commands
        • Drop Commands
        • Roles and Permissions
        • Materialized Views
        • Index commands
ScyllaDB Open Source
  • 5.2
    • master
    • 6.2
    • 6.1
    • 6.0
    • 5.4
    • 5.2
    • 5.1
  • Getting Started
    • Install ScyllaDB
      • ScyllaDB Web Installer for Linux
      • ScyllaDB Unified Installer (relocatable executable)
      • Air-gapped Server Installation
      • What is in each RPM
      • ScyllaDB Housekeeping and how to disable it
      • ScyllaDB Developer Mode
      • ScyllaDB Configuration Reference
    • Configure ScyllaDB
    • ScyllaDB Requirements
      • System Requirements
      • OS Support by Linux Distributions and Version
      • ScyllaDB in a Shared Environment
    • Migrate to ScyllaDB
      • Migration Process from Cassandra to Scylla
      • Scylla and Apache Cassandra Compatibility
      • Migration Tools Overview
    • Integration Solutions
      • Integrate Scylla with Spark
      • Integrate Scylla with KairosDB
      • Integrate Scylla with Presto
      • Integrate Scylla with Elasticsearch
      • Integrate Scylla with Kubernetes
      • Integrate Scylla with the JanusGraph Graph Data System
      • Integrate Scylla with DataDog
      • Integrate Scylla with Kafka
      • Integrate Scylla with IOTA Chronicle
      • Integrate Scylla with Spring
      • Shard-Aware Kafka Connector for Scylla
      • Install Scylla with Ansible
      • Integrate Scylla with Databricks
    • Tutorials
  • ScyllaDB for Administrators
    • Administration Guide
    • Procedures
      • Cluster Management
      • Backup & Restore
      • Change Configuration
      • Maintenance
      • Best Practices
      • Benchmarking Scylla
      • Migrate from Cassandra to Scylla
      • Disable Housekeeping
    • Security
      • ScyllaDB Security Checklist
      • Enable Authentication
      • Enable and Disable Authentication Without Downtime
      • Generate a cqlshrc File
      • Reset Authenticator Password
      • Enable Authorization
      • Grant Authorization CQL Reference
      • Role Based Access Control (RBAC)
      • ScyllaDB Auditing Guide
      • Encryption: Data in Transit Client to Node
      • Encryption: Data in Transit Node to Node
      • Generating a self-signed Certificate Chain Using openssl
      • Encryption at Rest
      • LDAP Authentication
      • LDAP Authorization (Role Management)
    • Admin Tools
      • Nodetool Reference
      • CQLSh
      • REST
      • Tracing
      • Scylla SStable
      • Scylla Types
      • SSTableLoader
      • cassandra-stress
      • SSTabledump
      • SSTable2json
      • Scylla Logs
      • Seastar Perftune
      • Virtual Tables
    • ScyllaDB Monitoring Stack
    • ScyllaDB Operator
    • ScyllaDB Manager
    • Upgrade Procedures
      • ScyllaDB Open Source Upgrade
      • ScyllaDB Open Source to ScyllaDB Enterprise Upgrade
      • ScyllaDB Image
      • ScyllaDB Enterprise
    • System Configuration
      • System Configuration Guide
      • scylla.yaml
      • ScyllaDB Snitches
    • Benchmarking ScyllaDB
  • ScyllaDB for Developers
    • Learn To Use ScyllaDB
      • Scylla University
      • Course catalog
      • Scylla Essentials
      • Basic Data Modeling
      • Advanced Data Modeling
      • MMS - Learn by Example
      • Care-Pet an IoT Use Case and Example
    • Scylla Alternator
    • Scylla Features
      • Scylla Open Source Features
      • Scylla Enterprise Features
    • Scylla Drivers
      • Scylla CQL Drivers
      • Scylla DynamoDB Drivers
    • Workload Attributes
  • CQL Reference
    • CQLSh: the CQL shell
    • Appendices
    • Compaction
    • Consistency Levels
    • Consistency Level Calculator
    • Data Definition
    • Data Manipulation
    • Data Types
    • Definitions
    • Global Secondary Indexes
    • Additional Information
    • Expiring Data with Time to Live (TTL)
    • Additional Information
    • Functions
    • JSON Support
    • Materialized Views
    • Non-Reserved CQL Keywords
    • Reserved CQL Keywords
    • ScyllaDB CQL Extensions
  • ScyllaDB Architecture
    • ScyllaDB Ring Architecture
    • ScyllaDB Fault Tolerance
    • Consistency Level Console Demo
    • ScyllaDB Anti-Entropy
      • Scylla Hinted Handoff
      • Scylla Read Repair
      • Scylla Repair
    • SSTable
      • ScyllaDB SSTable - 2.x
      • ScyllaDB SSTable - 3.x
    • Compaction Strategies
    • Raft Consensus Algorithm in ScyllaDB
  • Troubleshooting ScyllaDB
    • Errors and Support
      • Report a Scylla problem
      • Error Messages
      • Change Log Level
    • ScyllaDB Startup
      • Ownership Problems
      • Scylla will not Start
      • Scylla Python Script broken
    • Upgrade
      • Inaccessible configuration files after ScyllaDB upgrade
    • Cluster and Node
      • Failed Decommission Problem
      • Cluster Timeouts
      • Node Joined With No Data
      • SocketTimeoutException
      • NullPointerException
    • Data Modeling
      • Scylla Large Partitions Table
      • Scylla Large Rows and Cells Table
      • Large Partitions Hunting
    • Data Storage and SSTables
      • Space Utilization Increasing
      • Disk Space is not Reclaimed
      • SSTable Corruption Problem
      • Pointless Compactions
      • Limiting Compaction
    • CQL
      • Time Range Query Fails
      • COPY FROM Fails
      • CQL Connection Table
      • Reverse queries fail
    • ScyllaDB Monitor and Manager
      • Manager and Monitoring integration
      • Manager lists healthy nodes as down
  • Knowledge Base
    • Upgrading from experimental CDC
    • Compaction
    • Counting all rows in a table is slow
    • CQL Query Does Not Display Entire Result Set
    • When CQLSh query returns partial results with followed by “More”
    • Run Scylla and supporting services as a custom user:group
    • Decoding Stack Traces
    • Snapshots and Disk Utilization
    • DPDK mode
    • Debug your database with Flame Graphs
    • How to Change gc_grace_seconds for a Table
    • Gossip in Scylla
    • Increase Permission Cache to Avoid Non-paged Queries
    • How does Scylla LWT Differ from Apache Cassandra ?
    • Map CPUs to Scylla Shards
    • Scylla Memory Usage
    • NTP Configuration for Scylla
    • Updating the Mode in perftune.yaml After a ScyllaDB Upgrade
    • POSIX networking for Scylla
    • Scylla consistency quiz for administrators
    • Recreate RAID devices
    • How to Safely Increase the Replication Factor
    • Scylla and Spark integration
    • Increase Scylla resource limits over systemd
    • Scylla Seed Nodes
    • How to Set up a Swap Space
    • Scylla Snapshots
    • Scylla payload sent duplicated static columns
    • Stopping a local repair
    • System Limits
    • How to flush old tombstones from a table
    • Time to Live (TTL) and Compaction
    • Scylla Nodes are Unresponsive
    • Update a Primary Key
    • Using the perf utility with Scylla
    • Configure Scylla Networking with Multiple NIC/IP Combinations
  • ScyllaDB FAQ
  • Contribute to ScyllaDB
  • Glossary
  • Alternator: DynamoDB API in Scylla
    • Getting Started With ScyllaDB Alternator
    • ScyllaDB Alternator for DynamoDB users
Docs Tutorials University Contact Us About Us
© 2025, ScyllaDB. All rights reserved. | Terms of Service | Privacy Policy | ScyllaDB, and ScyllaDB Cloud, are registered trademarks of ScyllaDB, Inc.
Last updated on 08 May 2025.
Powered by Sphinx 7.4.7 & ScyllaDB Theme 1.8.6