Skip to content

Commit 4047e2a

Browse files
AUTO: Sync ScalarDB docs in English to docs site repo (#1638)
Co-authored-by: josh-wong <[email protected]>
1 parent 072d919 commit 4047e2a

7 files changed

+67
-1
lines changed

docs/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. |

docs/run-non-transactional-storage-operations-through-library.mdx

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

247+
## Load initial data as necessary
248+
249+
ScalarDB Data Loader is a utility for importing and exporting data with ScalarDB.
250+
251+
- **Need to import data into your database?** See [Importing data](data-loader.mdx#importing-data).
252+
- **Need to export data from your database?** See [Exporting data](data-loader.mdx#exporting-data).
253+
247254
## Create your Java application
248255

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

docs/run-transactions-through-scalardb-core-library.mdx

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

239+
## Load initial data as necessary
240+
241+
ScalarDB Data Loader is a utility for importing and exporting data with ScalarDB.
242+
243+
- **Need to import data into your database?** See [Importing data](data-loader.mdx#importing-data).
244+
- **Need to export data from your database?** See [Exporting data](data-loader.mdx#exporting-data).
245+
239246
## Run transactions by using Java
240247

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

docs/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
@@ -278,6 +278,19 @@ ScalarDB has its own data model and schema that maps to the implementation-speci
278278
- **Need to create a database schema?** See [Schema Loader for Cluster](developer-guide-for-scalardb-cluster-with-java-api.mdx#schema-loader-for-cluster).
279279
- **Need to import an existing database?** See [Importing Existing Tables to ScalarDB by Using ScalarDB Schema Loader](../schema-loader-import.mdx).
280280

281+
## Load initial data as necessary
282+
283+
ScalarDB Data Loader is a utility for importing and exporting data with ScalarDB.
284+
285+
:::note
286+
287+
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.
288+
289+
:::
290+
291+
- **Need to import data into your database?** See [Importing data](../data-loader.mdx#importing-data).
292+
- **Need to export data from your database?** See [Exporting data](../data-loader.mdx#exporting-data).
293+
281294
## Create your Java application
282295

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

docs/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>

docs/scalardb-cluster/run-transactions-through-scalardb-cluster-sql.mdx

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

272+
## Load initial data as necessary
273+
274+
ScalarDB Data Loader is a utility for importing and exporting data with ScalarDB.
275+
276+
:::note
277+
278+
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.
279+
280+
:::
281+
282+
- **Need to import data into your database?** See [Importing data](../data-loader.mdx#importing-data).
283+
- **Need to export data from your database?** See [Exporting data](../data-loader.mdx#exporting-data).
284+
272285
## Run transactions
273286

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

docs/scalardb-cluster/run-transactions-through-scalardb-cluster.mdx

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

273+
## Load initial data as necessary
274+
275+
ScalarDB Data Loader is a utility for importing and exporting data with ScalarDB.
276+
277+
:::note
278+
279+
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.
280+
281+
:::
282+
283+
- **Need to import data into your database?** See [Importing data](../data-loader.mdx#importing-data).
284+
- **Need to export data from your database?** See [Exporting data](../data-loader.mdx#exporting-data).
285+
273286
## Run transactions
274287

275288
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)