Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion versioned_docs/version-3.13/data-loader.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -404,7 +404,7 @@ Enable `--log-success` to log successfully imported records, and use `--log-raw-
| -------------- | ------------------------------------------------------------ |
| `action` | The result of the import process for the data record: UPDATE, INSERT, or FAILED_DURING_VALIDATION. |
| `namespace` | The name of the namespace of the table that the data is imported into. |
| `tablename` | The name of the table that the data is imported into. |
| `tableName` | The name of the table that the data is imported into. |
| `is_data_mapped` | Whether custom data mapping was applied or not based on an available control file. |
| `tx_id` | The transaction ID. Only available if Data Loader is run in `TRANSACTION` mode. |
| `value` | The final value, after optional data mapping, that Data Loader uses in the `PUT` operation. |
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -221,6 +221,13 @@ ScalarDB has its own data model and schema that maps to the implementation-speci
- **Need to create a database schema?** See [ScalarDB Schema Loader](schema-loader.mdx).
- **Need to import an existing database?** See [Importing Existing Tables to ScalarDB by Using ScalarDB Schema Loader](schema-loader-import.mdx).

## Load initial data as necessary

ScalarDB Data Loader is a utility for importing and exporting data with ScalarDB.

- **Need to import data into your database?** See [Importing data](data-loader.mdx#importing-data).
- **Need to export data from your database?** See [Exporting data](data-loader.mdx#exporting-data).

## Create your Java application

This section describes how to add the ScalarDB Core library to your project and how to configure it to run non-transactional storage operations by using Java.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -213,6 +213,13 @@ ScalarDB has its own data model and schema that maps to the implementation-speci
- **Need to create a database schema?** See [ScalarDB Schema Loader](schema-loader.mdx).
- **Need to import an existing database?** See [Importing Existing Tables to ScalarDB by Using ScalarDB Schema Loader](schema-loader-import.mdx).

## Load initial data as necessary

ScalarDB Data Loader is a utility for importing and exporting data with ScalarDB.

- **Need to import data into your database?** See [Importing data](data-loader.mdx#importing-data).
- **Need to export data from your database?** See [Exporting data](data-loader.mdx#exporting-data).

## Run transactions by using Java

- **Want to run transactions by using a one-phase commit interface?** See the [ScalarDB Java API Guide](api-guide.mdx#transactional-api).
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -255,6 +255,19 @@ ScalarDB has its own data model and schema that maps to the implementation-speci
- **Need to create a database schema?** See [Schema Loader for Cluster](developer-guide-for-scalardb-cluster-with-java-api.mdx#schema-loader-for-cluster).
- **Need to import an existing database?** See [Importing Existing Tables to ScalarDB by Using ScalarDB Schema Loader](../schema-loader-import.mdx).

## Load initial data as necessary

ScalarDB Data Loader is a utility for importing and exporting data with ScalarDB.

:::note

Data Loader is currently built upon ScalarDB Core, so it can only import and export data directly to and from the backend databases. Therefore, it cannot import and export data through ScalarDB Cluster.

:::

- **Need to import data into your database?** See [Importing data](../data-loader.mdx#importing-data).
- **Need to export data from your database?** See [Exporting data](../data-loader.mdx#exporting-data).

## Create your Java application

This section describes how to add the ScalarDB Cluster Java Client SDK to your project and how to configure it to run non-transactional storage operations by using Java.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -256,6 +256,19 @@ ScalarDB has its own data model and schema that maps to the implementation-speci

Also, for a list of supported DDLs, see [ScalarDB SQL Grammar](../scalardb-sql/grammar.mdx).

## Load initial data as necessary

ScalarDB Data Loader is a utility for importing and exporting data with ScalarDB.

:::note

Data Loader is currently built upon ScalarDB Core, so it can only import and export data directly to and from the backend databases. Therefore, it cannot import and export data through ScalarDB Cluster.

:::

- **Need to import data into your database?** See [Importing data](../data-loader.mdx#importing-data).
- **Need to export data from your database?** See [Exporting data](../data-loader.mdx#exporting-data).

## Create your application

<Tabs groupId="interfaces" queryString>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -246,6 +246,19 @@ ScalarDB has its own data model and schema that maps to the implementation-speci
- **Need to create a database schema?** See [SQL CLI](developer-guide-for-scalardb-cluster-with-java-api.mdx#sql-cli).
- **Need to import an existing database?** See [Importing Existing Tables to ScalarDB by Using ScalarDB Schema Loader](../schema-loader-import.mdx).

## Load initial data as necessary

ScalarDB Data Loader is a utility for importing and exporting data with ScalarDB.

:::note

Data Loader is currently built upon ScalarDB Core, so it can only import and export data directly to and from the backend databases. Therefore, it cannot import and export data through ScalarDB Cluster.

:::

- **Need to import data into your database?** See [Importing data](../data-loader.mdx#importing-data).
- **Need to export data from your database?** See [Exporting data](../data-loader.mdx#exporting-data).

## Run transactions

You can run transactions by using a one-phase or a two-phase commit interface. Select your method for running transactions.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -247,6 +247,19 @@ ScalarDB has its own data model and schema that maps to the implementation-speci
- **Need to create a database schema?** See [ScalarDB Schema Loader](../schema-loader.mdx).
- **Need to import an existing database?** See [Importing Existing Tables to ScalarDB by Using ScalarDB Schema Loader](../schema-loader-import.mdx).

## Load initial data as necessary

ScalarDB Data Loader is a utility for importing and exporting data with ScalarDB.

:::note

Data Loader is currently built upon ScalarDB Core, so it can only import and export data directly to and from the backend databases. Therefore, it cannot import and export data through ScalarDB Cluster.

:::

- **Need to import data into your database?** See [Importing data](../data-loader.mdx#importing-data).
- **Need to export data from your database?** See [Exporting data](../data-loader.mdx#exporting-data).

## Run transactions

You can run transactions by using a one-phase or a two-phase commit interface. Select your method for running transactions.
Expand Down