Skip to main content
Version: 3.4 (unsupported)

Getting started with Export

This document explains how you can get started with the ScalarDB Data Loader Export function.

Features

The ScalarDB Data Loader allows you to export data in the following formats:

  • JSON
  • JSONLines
  • CSV

Each export will run a ScalarDB scan operation based on the provided CLI arguments when running data loader. A partition key is always required to execute this scan.

Both ScalarDB storage and transaction mode are supported.

Usage

The data loader export function can be started with the following minimal configuration:

./scalardb-data-loader export --config scalardb.properties --namespace namespace --table tableName --key column=value
  • --config: the path to the scalardb connection properties file
  • --namespace: the namespace of the table that contains the data
  • --table: name of the table that contains the data
  • --key: the partition key to execute the ScalarDB scan with

By default, the data loader will create the output file in the working directory if the --output-file argument is omitted as well.

ScalarDB Storage mode is active by default.

Command-line flags

Here is a list of flags (options) that can be used with the scalardb data loader.

FlagDescriptionUsage
--modeThe mode in which ScalarDB is running . If omitted, the default value is storagescalardb-data-loader --mode transaction
--configthe path to the scalardb.properties file. If omitted the tool looks for a file named scalardb.properties in the current folderscalardb-data-loader --config scalardb.properties
--namespaceNamespace to export table data from. Required.scalardb-data-loader --namespace namespace
--tablename of table to export data from. Required.scalardb-data-loader --table tableName
--keyPartition key for the scan. Required.scalardb-data-loader --key columnName=value
--sortspecify a column to sort on. The column needs to be a clustering key. The argument can be repeated to provide multiple sortings.scalardb-data-loader --sort columnName=desc
--projectionlimit the columns that are exported by providing a projection. The argument can be repeated to provide multiple projections.scalardb-data-loader --projection columnName
--startclustering key to mark scan startscalardb-data-loader --start columnName=value
--start-exclusiveis the scan start exclusive or not. If omitted, the default value is falsescalardb-data-loader --start-exclusive
--endclustering key to mark scan endscalardb-data-loader --end columnName=value
--end-exclusiveis the scan start exclusive or not. If omitted, the default value is falsescalardb-data-loader --end-exclusive
--limitLimit the results of the scan. If omitted, the default value is 0 which means their is no limit.scalardb-data-loader --limit 1000
--output-fileThe name and path of the output file. If omitted, the tool will save the file in the current folder with the following name format:
export_namespace.tableName_timestamp.json or export_namespace.tableName_timestamp.csv

The ouput folder needs to exists. The dataloader does not create the output folder for you.
scalardb-data-loader --output-file ./out/output.json
--formatThe output format. By default JSONL is selected.scalardb-data-loader --format json
--metadataWhen set to true the transaction metadata is included in the export. By default this is set to falsescalardb-data-loader --metadata
--coordinatorWhen set to true, the coordinator state is exported for each record if ScalarDB is running in transaction mode. If omitted, or ScalarDB is running in storage mode, the default value is false.scalardb-data-loader --coordinator
--delimiterThe delimiter used in CSV files. Default value is ;scalardb-data-loader --delimiter ;
--no-headersExclude header row in CSV file. Default is falsescalardb-data-loader --no-headers
--threadsThread count for concurrent processingscalardb-data-loader --threads 500