Skip to content

Commit 0075cf7

Browse files
committed
AUTO: Sync ScalarDB docs in English to docs site repo
1 parent 6b1978b commit 0075cf7

File tree

2 files changed

+15
-3
lines changed

2 files changed

+15
-3
lines changed

versioned_docs/version-3.12/scalardb-cluster/developer-guide-for-scalardb-cluster-with-java-api.mdx

Lines changed: 14 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -124,7 +124,13 @@ You can download the Schema Loader for Cluster from [ScalarDB Releases](https://
124124
After downloading the JAR file, you can run Schema Loader for Cluster with the following command:
125125

126126
```console
127-
java -jar scalardb-cluster-schema-loader-3.12.7-all.jar --config <PATH_TO_CONFIG_FILE> -f <PATH_TO_SCHEMA_FILE> --coordinator
127+
java -jar scalardb-cluster-schema-loader-3.12.7-all.jar --config <PATH_TO_SCALARDB_PROPERTIES_FILE> --schema-file <PATH_TO_SCHEMA_FILE> --coordinator
128+
```
129+
130+
You can also pull the Docker image from the [Scalar container registry](https://github.com/orgs/scalar-labs/packages/container/package/scalardb-cluster-schema-loader) by running the following command, replacing the contents in the angle brackets as described:
131+
132+
```console
133+
docker run --rm -v <PATH_TO_YOUR_LOCAL_SCALARDB_PROPERTIES_FILE>:/scalardb.properties -v <PATH_TO_YOUR_LOCAL_SCHEMA_FILE>:/schema.json ghcr.io/scalar-labs/scalardb-cluster-schema-loader:3.12.7 --config /scalardb.properties --schema-file /schema.json --coordinator
128134
```
129135

130136
## ScalarDB Cluster SQL
@@ -264,7 +270,13 @@ Like other SQL databases, ScalarDB SQL also provides a CLI tool where you can is
264270
You can download the SQL CLI for Cluster from [ScalarDB Releases](https://github.com/scalar-labs/scalardb/releases/tag/v3.12.7). After downloading the JAR file, you can run the SQL CLI with the following command:
265271

266272
```console
267-
java -jar scalardb-cluster-sql-cli-3.12.7-all.jar --config <PATH_TO_CONFIG_FILE>
273+
java -jar scalardb-cluster-sql-cli-3.12.7-all.jar --config <PATH_TO_SCALARDB_SQL_PROPERTIES_FILE>
274+
```
275+
276+
You can also pull the Docker image from the [Scalar container registry](https://github.com/orgs/scalar-labs/packages/container/package/scalardb-cluster-sql-cli) by running the following command, replacing the contents in the angle brackets as described:
277+
278+
```console
279+
docker run --rm -it -v <PATH_TO_YOUR_LOCAL_SCALARDB_SQL_PROPERTIES_FILE>:/scalardb-sql.properties ghcr.io/scalar-labs/scalardb-cluster-sql-cli:3.12.7 --config /scalardb-sql.properties
268280
```
269281

270282
#### Usage

versioned_docs/version-3.12/schema-loader.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ Select your preferred method to set up Schema Loader, and follow the instruction
3737
You can pull the Docker image from the [Scalar container registry](https://github.com/orgs/scalar-labs/packages/container/package/scalardb-schema-loader) by running the following command, replacing the contents in the angle brackets as described:
3838

3939
```console
40-
docker run --rm -v <PATH_TO_YOUR_LOCAL_SCHEMA_FILE>:<PATH_TO_SCHEMA_FILE_DOCKER> [-v <PATH_TO_LOCAL_SCALARDB_PROPERTIES_FILE>:<PATH_TO_SCALARDB_PROPERTIES_FILE_IN_DOCKER>] ghcr.io/scalar-labs/scalardb-schema-loader:<VERSION> <COMMAND_ARGUMENTS>
40+
docker run --rm -v <PATH_TO_YOUR_LOCAL_SCALARDB_PROPERTIES_FILE>:/scalardb.properties -v <PATH_TO_YOUR_LOCAL_SCHEMA_FILE>:/schema.json ghcr.io/scalar-labs/scalardb-schema-loader:<VERSION> --config /scalardb.properties --schema-file /schema.json <OHTER_COMMAND_ARGUMENTS>
4141
```
4242

4343
:::note

0 commit comments

Comments
 (0)