Skip to content

Commit 072d919

Browse files
AUTO: Sync ScalarDB docs in English to docs site repo (#1639)
Co-authored-by: josh-wong <joshua.wong@scalar-labs.com>
1 parent 5e50934 commit 072d919

7 files changed

+67
-1
lines changed

versioned_docs/version-3.15/data-loader.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -404,7 +404,7 @@ Enable `--log-success` to log successfully imported records, and use `--log-raw-
404404
| -------------- | ------------------------------------------------------------ |
405405
| `action` | The result of the import process for the data record: UPDATE, INSERT, or FAILED_DURING_VALIDATION. |
406406
| `namespace` | The name of the namespace of the table that the data is imported into. |
407-
| `tablename` | The name of the table that the data is imported into. |
407+
| `tableName` | The name of the table that the data is imported into. |
408408
| `is_data_mapped` | Whether custom data mapping was applied or not based on an available control file. |
409409
| `tx_id` | The transaction ID. Only available if Data Loader is run in `TRANSACTION` mode. |
410410
| `value` | The final value, after optional data mapping, that Data Loader uses in the `PUT` operation. |

versioned_docs/version-3.15/run-non-transactional-storage-operations-through-library.mdx

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -221,6 +221,13 @@ ScalarDB has its own data model and schema that maps to the implementation-speci
221221
- **Need to create a database schema?** See [ScalarDB Schema Loader](schema-loader.mdx).
222222
- **Need to import an existing database?** See [Importing Existing Tables to ScalarDB by Using ScalarDB Schema Loader](schema-loader-import.mdx).
223223

224+
## Load initial data as necessary
225+
226+
ScalarDB Data Loader is a utility for importing and exporting data with ScalarDB.
227+
228+
- **Need to import data into your database?** See [Importing data](data-loader.mdx#importing-data).
229+
- **Need to export data from your database?** See [Exporting data](data-loader.mdx#exporting-data).
230+
224231
## Create your Java application
225232

226233
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.

versioned_docs/version-3.15/run-transactions-through-scalardb-core-library.mdx

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -213,6 +213,13 @@ ScalarDB has its own data model and schema that maps to the implementation-speci
213213
- **Need to create a database schema?** See [ScalarDB Schema Loader](schema-loader.mdx).
214214
- **Need to import an existing database?** See [Importing Existing Tables to ScalarDB by Using ScalarDB Schema Loader](schema-loader-import.mdx).
215215

216+
## Load initial data as necessary
217+
218+
ScalarDB Data Loader is a utility for importing and exporting data with ScalarDB.
219+
220+
- **Need to import data into your database?** See [Importing data](data-loader.mdx#importing-data).
221+
- **Need to export data from your database?** See [Exporting data](data-loader.mdx#exporting-data).
222+
216223
## Run transactions by using Java
217224

218225
- **Want to run transactions by using a one-phase commit interface?** See the [ScalarDB Java API Guide](api-guide.mdx#transactional-api).

versioned_docs/version-3.15/scalardb-cluster/run-non-transactional-storage-operations-through-scalardb-cluster.mdx

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -255,6 +255,19 @@ ScalarDB has its own data model and schema that maps to the implementation-speci
255255
- **Need to create a database schema?** See [Schema Loader for Cluster](developer-guide-for-scalardb-cluster-with-java-api.mdx#schema-loader-for-cluster).
256256
- **Need to import an existing database?** See [Importing Existing Tables to ScalarDB by Using ScalarDB Schema Loader](../schema-loader-import.mdx).
257257

258+
## Load initial data as necessary
259+
260+
ScalarDB Data Loader is a utility for importing and exporting data with ScalarDB.
261+
262+
:::note
263+
264+
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.
265+
266+
:::
267+
268+
- **Need to import data into your database?** See [Importing data](../data-loader.mdx#importing-data).
269+
- **Need to export data from your database?** See [Exporting data](../data-loader.mdx#exporting-data).
270+
258271
## Create your Java application
259272

260273
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.

versioned_docs/version-3.15/scalardb-cluster/run-non-transactional-storage-operations-through-sql-interface.mdx

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -256,6 +256,19 @@ ScalarDB has its own data model and schema that maps to the implementation-speci
256256

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

259+
## Load initial data as necessary
260+
261+
ScalarDB Data Loader is a utility for importing and exporting data with ScalarDB.
262+
263+
:::note
264+
265+
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.
266+
267+
:::
268+
269+
- **Need to import data into your database?** See [Importing data](../data-loader.mdx#importing-data).
270+
- **Need to export data from your database?** See [Exporting data](../data-loader.mdx#exporting-data).
271+
259272
## Create your application
260273

261274
<Tabs groupId="interfaces" queryString>

versioned_docs/version-3.15/scalardb-cluster/run-transactions-through-scalardb-cluster-sql.mdx

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -246,6 +246,19 @@ ScalarDB has its own data model and schema that maps to the implementation-speci
246246
- **Need to create a database schema?** See [SQL CLI](developer-guide-for-scalardb-cluster-with-java-api.mdx#sql-cli).
247247
- **Need to import an existing database?** See [Importing Existing Tables to ScalarDB by Using ScalarDB Schema Loader](../schema-loader-import.mdx).
248248

249+
## Load initial data as necessary
250+
251+
ScalarDB Data Loader is a utility for importing and exporting data with ScalarDB.
252+
253+
:::note
254+
255+
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.
256+
257+
:::
258+
259+
- **Need to import data into your database?** See [Importing data](../data-loader.mdx#importing-data).
260+
- **Need to export data from your database?** See [Exporting data](../data-loader.mdx#exporting-data).
261+
249262
## Run transactions
250263

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

versioned_docs/version-3.15/scalardb-cluster/run-transactions-through-scalardb-cluster.mdx

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -247,6 +247,19 @@ ScalarDB has its own data model and schema that maps to the implementation-speci
247247
- **Need to create a database schema?** See [ScalarDB Schema Loader](../schema-loader.mdx).
248248
- **Need to import an existing database?** See [Importing Existing Tables to ScalarDB by Using ScalarDB Schema Loader](../schema-loader-import.mdx).
249249

250+
## Load initial data as necessary
251+
252+
ScalarDB Data Loader is a utility for importing and exporting data with ScalarDB.
253+
254+
:::note
255+
256+
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.
257+
258+
:::
259+
260+
- **Need to import data into your database?** See [Importing data](../data-loader.mdx#importing-data).
261+
- **Need to export data from your database?** See [Exporting data](../data-loader.mdx#exporting-data).
262+
250263
## Run transactions
251264

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

0 commit comments

Comments
 (0)