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 ScyllaDB for Administrators Security Encryption at Rest

Caution

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

Encryption at Rest¶

ScyllaDB Enterprise

Added in version 2019.1.1.

Changed in version 2019.1.3.

Introduction¶

Scylla Enterprise protects your sensitive data with data-at-rest encryption. It protects the privacy of your user’s data, reduces the risk of data breaches, and helps meet regulatory requirements. In particular, it provides an additional level of protection for your data persisted in storage or its backups.

When Scylla Enterprise Encryption at Rest is used together with Encryption in Transit (Node to Node and Client to Node), you benefit from end to end data encryption.

Note

Encryption at Rest is available for Scylla Enterprise customers version 2019.1.1 and later. KMIP support is available for Scylla Enterprise customers version 2019.1.3 and later.

About Encryption at Rest¶

The following can be encrypted:

  • Scylla persistent tables (SSTables)

  • System level data, such as:

    • Commit logs

    • Batches

    • hints logs

    • KMIP Password (part of scylla.yaml)

Encryption at Rest works at table level granularity, so you can choose to encrypt only sensitive tables. For both system and table data, you can use different algorithms that are supported by OpenSSL in a file block encryption scheme.

Note

SSTables of a particular table can have different encryption keys, use different encryption algorithms, or not be encrypted at all - at the same time.

When is Data Encrypted?¶

As SSTables are immutable, tables are encrypted only once, as a result of memtable flush, compaction, or upgrade (with Nodetool upgradesstables).

Once a table is encrypted, all resulting SSTables are encrypted using the most current key and algorithm. When you encrypt an existing table, the new SSTables are encrypted. The old SSTables which existed before the encryption are not updated. These tables are encrypted according to the same actions as described previously.

When is Data Decrypted?¶

When Scylla reads an encrypted SSTable from disk, it fetches the encryption key’s ID from the SSTable and uses it to extract the key and decrypt the data. When Scylla reads an encrypted system table, it fetches the system table encryption key location from the scylla.yaml file. It locates the key and uses it to extract the key and decrypt the data.

Encryption Keys¶

Two types of encryption keys are available: System Keys and Table Keys.

System Keys¶

System keys are used for encrypting system data, such as commit logs, hints, and/or other user table keys. When a Replicated Key Provider is used for encrypting SSTables, the table keys are stored in the encrypted_keys table, and the system key is used to encrypt the encrypted_keys table. The system key is stored as the contents of a local file and is encrypted with a single key that you provide. The default location of system keys is /etc/scylla/resources/system_keys/ and can be changed with the system_key_directory option in scylla.yaml file. When a Local Key Provider is used for encrypting system info, you can provide your own key, or Scylla can make one for you.

Table Keys¶

Table keys are used for encrypting SSTables. Depending on your key provider, this key is stored in different locations:

  • Replicated Key Provider - encrypted_keys table

  • KMIP Key Provider - KMIP server

  • Local Key Provider - in a local file with multiple keys. You can provide your own key or Scylla can make one for you.

Key Providers¶

When encrypting the system tables or SSTables, you need to state which provider is holding your keys. You can use the following options:

Key Provider Name

key_provider Name

Description

Local Key Provider

LocalFileSystemKeyProviderFactory (default)

Stores the key on the same machine as the data.

Replicated Key Provider

ReplicatedKeyProviderFactory

Stores table keys in a Scylla table where the table itself is encrypted using the system key (available from 2019.1.3)

KMIP Key Provider

KmipKeyProviderFactory

External key management server (available from 2019.1.3)

Cipher Algorithms¶

The following cipher_algorithims are available for use with Scylla using OpenSSL. Note that the default algorithm (AES/CBC/PKCS5Padding with key strength 128 ) is recommended.

cipher_algorithm

secret_key_strength

AES/CBC/PKCS5Padding (default)

128 (default), 192, or 256

AES/ECB/PKCS5Padding

128, 192, or 256

Blowfish/CBC/PKCS5Padding

32-448

DES/CBC/PKCS5Padding

56

DESede/CBC/PKCS5Padding

112 or 168

RC2/CBC/PKCS5Padding

40-128

About Local Key Storage¶

Local keys are used for encrypting user data, such as SSTables. Currently, this is the only option available for user data and, as such, is the default key storage manager. With local key storage, keys are stored locally on disk in a text file. The location of this file is specified in the scylla.yaml.

Caution

Care should be taken so that no unauthorized person can access the key data from the file system. Make sure that the owner of this file is the scylla user and that the file is not readable by other users, not accessible by other roles.

You should also consider keeping the key directory on a network drive (using TLS for the file sharing) to avoid having keys and data on the same storage media, in case your storage is stolen or discarded.

Encrypt a Single Table¶

This procedure demonstrates how to encrypt a new table.

Before you Begin

  • Make sure to Set the KMIP Host if you are using KMIP.

  • If you want to make your own key, use the procedure in Create Encryption Keys and skip to step 3. If you do not create your own key, Scylla will create one for you in the secret_key_file path. If you are not creating your own key, start with step 1.

Procedure

  1. By default, the encryption key is located in the /etc/scylla/ directory, and the file is named data_encryption_keys. If you want to save the key in a different directory, create one. This example will create encryption keys in a different directory (/etc/scylla/encryption_keys, for example), which ensures that the owner of this directory is scylla and not another user.

    Note

    Using the default location results in a known permission issue (scylladb/scylla-tools-java#94), so it is recommended to use another location as described in the example.

    sudo mkdir -p /etc/scylla/encryption_keys
    sudo chown -R scylla:scylla /etc/scylla/encryption_keys
    sudo chmod -R 700 /etc/scylla/encryption_keys
    
  2. Create the keyspace if it doesn’t exist.

  3. Create the table using the CREATE TABLE CQL statement, adding any additional options. To encrypt the table, use the options for encryption below, remembering to set the secret_key_file <path> to the same directory you created in step 1.

    CREATE TABLE <keyspace>.<table_name> (...<columns>...) WITH
      scylla_encryption_options = {
        'cipher_algorithm' : <hash>,
        'secret_key_strength' : <len>,
        'key_provider': <provider>,
        'secret_key_file': <path>
      }
    ;
    

    Where:

    • cipher_algorithm - The hashing algorithm which is to be used to create the key. See Cipher Algorithms for more information.

    • secret_key_strength - The length of the key in bytes. This is determined by the cipher you choose. See Cipher Algorithms for more information.

    • key_provider is the name or type of key provider. Refer to Key Providers for more information.

    • secret_key_file - the location that Scylla will store the key it creates (if one does not exist in this location) or the location of the key. By default the location is /etc/scylla/data_encryption_keys.

    Example:

    Continuing the example from above, this command will instruct Scylla to encrypt the table and will save the key in the location created in step 1.

    CREATE TABLE data.atrest (pk text primary key, c0 int) WITH
      scylla_encryption_options = {
        'cipher_algorithm' : 'AES/ECB/PKCS5Padding',
        'secret_key_strength' : 128,
        'key_provider': 'LocalFileSystemKeyProviderFactory',
        'secret_key_file': '/etc/scylla/encryption_keys/data_encryption_keys'
      }
    ;
    
  4. From this point, every new SSTable created for the atrest table is encrypted, using the data_encryption_keys key located in /etc/scylla/encryption_keys/. This table will remain encrypted with this key until you either change the key, change the key properties, or disable encryption.

  5. To ensure all SSTables for this table on every node are encrypted, run the Nodetool upgradesstables command. If not, the SSTables remain unencrypted until they are compacted or flushed from MemTables.

    For Example:

    nodetool upgradesstables data atrest
    
  6. Your SSTables are encrypted. If you want to change the key at any point, use the Update Encryption Properties of Existing Tables procedure. Always keep your key in a safe location known to you. Do not lose it. See When a Key is Lost.

Update Encryption Properties of Existing Tables¶

You can encrypt any existing table or use this procedure to change the cipher algorithm, key location or key strength or even disable encryption on a table.

Procedure

  1. Edit the table properties to enable encryption of one table of your choosing. Use the properties explained in Encrypt a Single Table if needed.

    ALTER TABLE <keyspace>.<table_name> (...<columns>...) WITH
      scylla_encryption_options = {
        'cipher_algorithm' : <hash>,
        'secret_key_strength' : <len>,
        'key_provider': <provider>,
        'secret_key_file': <path>
      }
    ;
    

    Example:

    Continuing the example from above, this command will instruct Scylla to encrypt the table and will save the key in the location created in step 1.

    ALTER TABLE data.atrest (pk text primary key, c0 int) WITH
      scylla_encryption_options = {
        'cipher_algorithm' : 'AES/ECB/PKCS5Padding',
        'secret_key_strength' : 192,
        'key_provider': 'LocalFileSystemKeyProviderFactory',
        'secret_key_file': '/etc/scylla/encryption_keys/data_encryption_keys'
      }
    ;
    
  2. If you want to make sure that SSTables that existed before this change are also encrypted, you can either upgrade them using the nodetool upgradesstables command or wait until the next compaction. If you decide to wait, Scylla will still be able to read the old unencrypted tables. If you change the key or remove encryption, Scylla will still continue to read the old tables as long as you still have the key. If your data is encrypted and you do not have the key, your data is unreadable.

    • If you decide to upgrade all of your old SSTables run the nodetool upgradesstables command.

      nodetool upgradesstables <keyspace> <table>
      

      For example:

      nodetool upgradesstables ks test
      
    • Repeat this command on all nodes as nodetool runs locally.

  3. If you want to change the key or disable encryption, repeat the Update Encryption Properties of Existing Tables procedure using the examples below as reference.

Examples

To encrypt an existing table named test in keyspace ks:

ALTER TABLE ks.test WITH
  scylla_encryption_options = {
     'cipher_algorithm' : 'AES/ECB/PKCS5Padding',
     'secret_key_strength' : 128,
     'key_provider': 'LocalFileSystemKeyProviderFactory',
     'secret_key_file': '/etc/scylla/encryption_keys/data_encryption_keys'
  }
;

To change the cipher algorithm from AES/ECB/PKCS5Padding to DES/CBC/PKCS5Padding and to change the key strength from 128 to 56 on an existing table:

ALTER TABLE ks.test WITH
  scylla_encryption_options = {
     'cipher_algorithm' : 'DES/CBC/PKCS5Padding',
     'secret_key_strength' : 56,
     'key_provider': 'LocalFileSystemKeyProviderFactory',
     'secret_key_file': '/etc/scylla/encryption_keys/data_encryption_keys'
  }
;

To disable encryption on an encrypted table named test in keyspace ks:

ALTER TABLE ks.test WITH
   scylla_encryption_options =  { 'key_provider' : 'none’ };

Create Encryption Keys¶

Depending on your key provider, you will either have the option of allowing Scylla to generate an encryption key, or you will have to provide one:

  • KMIP Key Provider - you don’t need to generate any key yourself

  • Replicated Key Provider - you must generate a system key yourself

  • Local Key Provider - If you do not generate your own secret key, Scylla will create one for you

When encrypting Scylla config by configuration_encryptor, you also need to generate a secret key and upload the key to all nodes.

Use the key generator script¶

The Key Generator script generates a key in the directory of your choice.

Procedure

  1. Create (if it doesn’t exist) a local directory for storing the key. Make sure that the owner of the directory is scylla and not another user. Make sure that the scylla user can read, write, and execute over the parent directory. Following this procedure makes /etc/scylla/encryption_keys/ the parent directory of your keys.

    For example:

    sudo mkdir -p /etc/scylla/encryption_keys/system_keys
    sudo chown -R scylla:scylla /etc/scylla/encryption_keys
    sudo chmod -R 700 /etc/scylla/encryption_keys
    
  2. Create a key using the local file key generator script making sure that the keyfile owner is scylla and not another user. Run the command:

    sudo -u scylla /bin/local_file_key_generator [options] [key-path]
    

    Where:

    • -a,--alg <arg> - the encryption algorithm (i.e. AES, 3DES) you want to use to encrypt the key

    • -c,--append - appends the output to the key file (default is to overwrite)

    • -h,--help - displays the help menu

    • -l,--length <arg> - the length of the encryption key in bits (i.e. 128, 256)

    • -m,--block-mode <arg> - the encryption algorithm block mode (i.e. CBC, EBC)

    • -p,--padding <arg> - the encryption algorithm padding method (i.e. PKCS5)

    • key-path - is the directory you want to place the key into (/etc/scylla/encryption_keys, for example)

    For Example:

    To create a secret key and a system key using other encryption settings in a different location:

    sudo -u scylla /bin/local_file_key_generator -a AES -m ECB -p PKCS5 -l 192 /etc/scylla/encryption_keys/secret_key
    sudo -u scylla /bin/local_file_key_generator -a AES -m CBC -p PKCS5 -l 128 /etc/scylla/encryption_keys/system_keys/system_key
    

    To display the secret key parameters:

    sudo cat /etc/scylla/encryption_keys/secret_key
    

    Returns:

    AES/ECB/PKCS5Padding:192:8stVxW5ypYhNxsnRVS1A6suKhk0sG4Tj
    

    To display the system key parameters:

    sudo cat /etc/scylla/encryption_keys/system_keys/system_key
    

    Returns:

    AES/CBC/PKCS5Padding:128:GGpOSxTGhtPRPLrNPYvVMQ==
    

    Once you have created a key, copy the key to each node, using the procedure described in Copy keys to nodes.

Copy keys to nodes¶

Every key you generate needs to be copied to the nodes for use in local key providers.

Procedure

  1. Securely copy the key file, using scp or similar, to the same path on all nodes in the cluster. Make sure the key on each target node is moved to the same location as the source directory and that the target directory has the same permissions as the source directory.

  2. Repeat for all nodes in the cluster.

Encrypt System Resources¶

System encryption is applied to semi-transient on-disk data, such as commit logs, batch logs, and hinted handoff data. This ensures that all temporarily stored data is encrypted until fully persisted to final SSTable on disk. Once this encryption is enabled, it is used for all system data.

Procedure

  1. Edit the scylla.yaml file - located in /etc/scylla/scylla.yaml and add the following:

    system_info_encryption:
       enabled: <true|false>
       key_provider: (optional) <key provider type>
    
    
    system_key_directory: <path to location of system key>
    

    Where:

    • enabled can be true or false. True is enabled; false is disabled.

    • key_provider is the name or type of key provider. Refer to Key Providers for more information.

    • cipher_algorithm is one of the supported Cipher Algorithms.

    • secret_key_file is the name of the key file containing the secret key (key.pem, for example)

    Example:

    system_info_encryption:
       enabled: True
       cipher_algorithm: AES
       secret_key_strength: 128
       key_provider: LocalFileSystemKeyProviderFactory
       secret_key_file: /path/to/systemKey.pem
    

    Example for KMIP:

    system_info_encryption:
       enabled: True
       cipher_algorithm: AES
       secret_key_strength: 128
       key_provider: KmipKeyProviderFactory
       kmip_host:  yourkmipServerIP.com
    

    Where:

    • kmip_host - is the address for your KMIP server

  2. Do not close the yaml file. Change the system key directory location according to your settings.

    • system_key_directory is the location of the system key you created in Create Encryption Keys.

    system_key_directory: /etc/scylla/encryption_keys/system_keys
    
  3. Save the file.

  4. Drain the node with nodetool drain

  5. Restart the scylla-server service.

    sudo systemctl restart scylla-server
    
    docker exec -it some-scylla supervisorctl restart scylla
    

    (without restarting some-scylla container)

Set the KMIP Host¶

If you are using KMIP to encrypt tables or system information, add the KMIP server information to the scylla.yaml configuration file.

  1. Edit the scylla.yaml file located in /etc/scylla/ and add the following in KMIP host(s) section:

    #
    # kmip_hosts:
    #   <name>:
    #       hosts: <address1[:port]> [, <address2[:port]>...]
    #       certificate: <identifying certificate> (optional)
    #       keyfile: <identifying key> (optional; it is required if "certificate" is set)
    #       truststore: <truststore for SSL connection> (optional)
    #       certficate_revocation_list: <CRL file> (optional)
    #       priority_string: <kmip tls priority string>
    #       username: <login> (optional>
    #       password: <password> (optional)
    #       max_command_retries: <int> (optional; default 3)
    #   <name>:
    

    Where:

    • <name> - The cluster name.

    • hosts - The list of hosts specified by IP and port for the KMIP server. The KMIP connection management only supports failover, so all requests go through a single KMIP server. There is no load balancing, as currently no KMIP servers support read replication or other strategies for availability. Hosts are tried in the order they appear, and the next one in the list is tried if the previous one fails. The default number of retries is three, but you can customize it with “max_command_retries”.

    • certificate - The name of the certificate and path used to identify yourself to the KMIP server.

    • keyfile - The name of the key used to identify yourself to the KMIP server. It is generated together with the certificate.

    • truststore - The location and key for the truststore to present to the KMIP server.

    • certficate_revocation_list - The path to a PEM-encoded certificate revocation list (CRL) - a list of issued certificates that have been revoked before their expiration date.

    • priority_string - The KMIP TLS priority string.

    • username - The KMIP server user name.

    • password - The KMIP server password.

    • max_command_retries - The number of attempts to connect to the KMIP server before trying the next host in the list.

  2. Save the file.

  3. Drain the node with nodetool drain

  4. Restart the scylla-server service.

sudo systemctl restart scylla-server
docker exec -it some-scylla supervisorctl restart scylla

(without restarting some-scylla container)

When a Key is Lost¶

It is crucial to back up all of your encryption keys in a secure way. Keep a copy of all keys in a secure location. In the event that you do lose a key, your data encrypted with that key will be unreadable.

Additional Resources¶

  • nodetool upgradesstables

  • CREATE TABLE parameters

Was this page helpful?

PREVIOUS
Generating a self-signed Certificate Chain Using openssl
NEXT
LDAP Authentication
  • Create an issue
  • Edit this page

On this page

  • Encryption at Rest
    • Introduction
    • About Encryption at Rest
    • When is Data Encrypted?
    • When is Data Decrypted?
    • Encryption Keys
      • System Keys
      • Table Keys
    • Key Providers
    • Cipher Algorithms
    • About Local Key Storage
    • Encrypt a Single Table
      • Update Encryption Properties of Existing Tables
    • Create Encryption Keys
      • Use the key generator script
      • Copy keys to nodes
    • Encrypt System Resources
    • Set the KMIP Host
    • When a Key is Lost
    • Additional Resources
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