sstableloader (Cassandra bulk loader)
Provides the ability to bulk load external data into a cluster, load existing SSTables into another cluster with a different number of nodes or replication strategy, and restore snapshots.
- Bulk load external data into a cluster.
- Load existing SSTables into another cluster with a different number of nodes or replication strategy.
- Restore snapshots.
The sstableloader streams a set of SSTable data files to a live cluster. It does not simply copy the set of SSTables to every node, but transfers the relevant part of the data to each node, conforming to the replication strategy of the cluster. The table into which the data is loaded does not need to be empty.
- Bulkloading SSTables created in versions prior to Cassandra 3.0 is supported only in Cassandra 3.0.5 and later.
- Repairing tables that have been loaded into a different cluster does not repair the source tables.
Prerequisites
- The source data loaded by sstableloader must be in SSTables.
- Because sstableloader uses the streaming protocol, it requires a direct connection over the port 7000 (storage port) to each connected node.
Generating SSTables
When using sstableloader to load external data, you must first put the external data into SSTables.
SSTableWriter is the API to create raw Cassandra data files locally for bulk load into your cluster. The Cassandra source code includes the CQLSSTableWriter implementation for creating SSTable files from external data without needing to understand the details of how those map to the underlying storage engine. Import the org.apache.cassandra.io.sstable.CQLSSTableWriter class, and define the schema for the data you want to import, a writer for the schema, and a prepared insert statement. For a complete example, see https://www.datastax.com/dev/blog/using-the-cassandra-bulk-loader-updated.
Restoring Cassandra snapshots
For information about preparing snapshots for sstableloader import, see Restoring from centralized backups.
Importing SSTables from an existing cluster
Before importing existing SSTables, run nodetool flush on each source node to assure that any data in memtables is written out to the SSTables on disk.
Preparing the target environment
Before loading the data, you must define the schema of the target tables with CQL or Thrift.
Usage
$ sstableloader -d host_url (,host_url …) [options] path_to_keyspace
$ cd install_location/bin $ sstableloader -d host_url (,host_url …) [options] path_to_keyspace
The sstableloader bulk loads the SSTables found in the specified directory, where the parent directories of the path are used for the target keyspace and table name, to the indicated target cluster.
$ ls /var/lib/cassandra/data/Keyspace1/Standard1/
Keyspace1-Standard1-jb-60-CRC.db
Keyspace1-Standard1-jb-60-Data.db
...
Keyspace1-Standard1-jb-60-TOC.txt
For more sstableloader options, see sstableloader options
Using sstableloader
- If restoring snapshot data from some other source: make sure that the snapshot
files are in a keyspace/tablename directory path whose
names match those of the target
keyspace/tablename
. In this example, make sure the snapshot files are in /Keyspace/Standard1/. - Go to the location of the SSTables:Package installations:
$ cd /var/lib/cassandra/data/Keyspace1/Standard1/
Tarball installations:$ cd install_location/data/data/Keyspace1/Standard1/
- To view the contents of the
keyspace:
$ ls
Keyspace1-Standard1-jb-60-CRC.db Keyspace1-Standard1-jb-60-Data.db ... Keyspace1-Standard1-jb-60-TOC.txt
- To bulk load the files, indicate one or more nodes in the target cluster with
the -d flag, which takes a comma-separated list of IP addresses or
hostnames, and specify the path to ../Keyspace1/Standard1/ in the
source
machine:
$ sstableloader -d 110.82.155.1 /var/lib/cassandra/data/Keyspace1/Standard1/ ## package installation
$ install_location/bin/sstableloader -d 110.82.155.1 /var/lib/cassandra/data/Keyspace1/Standard1/ ## tarball installation
This command bulk loads all files.
Short option | Long option | Description |
---|---|---|
-alg | --ssl-alg <ALGORITHM> | Client SSL algorithm (default: SunX509). |
-ap | --auth-provider <auth provider class name> | Allows the use of a third party auth provider. Can be combined with -u <username> and -pw <password> if the auth provider supports plain text credentials. |
-ciphers | --ssl-ciphers <CIPHER-SUITES> | Client SSL. Comma-separated list of encryption suites. |
-cph | --connections-per-host <connectionsPerHost> | Number of concurrent connections-per-host. |
-d | --nodes <initial_hosts> | Required. Connect to a list of (comma separated) hosts for initial cluster information. |
-f | --conf-path <path_to_config_file> | Path to the cassandra.yaml path for streaming throughput and client/server SSL. |
-h | --help | Display help. |
-i | --ignore <NODES> | Do not stream to this comma separated list of nodes. |
-ks | --keystore <KEYSTORE> | Client SSL. Full path to the keystore. |
-kspw | --keystore-password <KEYSTORE-PASSWORD> | Client SSL. Password for the keystore. Overrides the client_encryption_options option in cassandra.yaml |
--no-progress | Do not display progress. | |
-p | --port <rpc port> | RPC port (default: 9160 [Thrift]). |
-prtcl | --ssl-protocol <PROTOCOL> | Client SSL. Connections protocol to use (default: TLS). Overrides the server_encryption_options option in cassandra.yaml |
-pw | --password <password> | Password for Cassandra authentication. |
-st | --store-type <STORE-TYPE> | Client SSL. Type of store. |
-t | --throttle <throttle> | Throttle speed in Mbits (default: unlimited). Overrides the stream_throughput_outbound_megabits_per_sec option in cassandra.yaml |
-tf | --transport-factory <transport factory> | Fully-qualified ITransportFactory class name for creating a connection to Cassandra. |
-ts | --truststore <TRUSTSTORE> | Client SSL. Full path to truststore. |
-tspw | --truststore-password <TRUSTSTORE-PASSWORD> | Client SSL. Password of the truststore. |
-u | --username <username> | User name for Cassandra authentication. |
-v | --verbose | Verbose output. |
Package installations | /etc/cassandra/cassandra.yaml |
Tarball installations | install_location/resources/cassandra/conf/cassandra.yaml |