Skip to content

Commit 41c5be4

Browse files
AUTO: Sync ScalarDB docs in English to docs site repo (#1738)
Co-authored-by: josh-wong <[email protected]>
1 parent d755442 commit 41c5be4

14 files changed

+52
-52
lines changed

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

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -244,7 +244,7 @@ Select your build tool, and follow the instructions to add the build dependency
244244

245245
```gradle
246246
dependencies {
247-
implementation 'com.scalar-labs:scalardb:3.13.4'
247+
implementation 'com.scalar-labs:scalardb:3.13.6'
248248
}
249249
```
250250
</TabItem>
@@ -255,7 +255,7 @@ Select your build tool, and follow the instructions to add the build dependency
255255
<dependency>
256256
<groupId>com.scalar-labs</groupId>
257257
<artifactId>scalardb</artifactId>
258-
<version>3.13.4</version>
258+
<version>3.13.6</version>
259259
</dependency>
260260
```
261261
</TabItem>
@@ -276,4 +276,4 @@ The following limitations apply to non-transactional storage operations:
276276

277277
### Learn more
278278

279-
- [Javadoc](https://javadoc.io/doc/com.scalar-labs/scalardb/3.13.4/index.html)
279+
- [Javadoc](https://javadoc.io/doc/com.scalar-labs/scalardb/3.13.6/index.html)

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

Lines changed: 20 additions & 20 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ To add a dependency on the ScalarDB Cluster Java Client SDK by using Gradle, use
1818

1919
```gradle
2020
dependencies {
21-
implementation 'com.scalar-labs:scalardb-cluster-java-client-sdk:3.13.4'
21+
implementation 'com.scalar-labs:scalardb-cluster-java-client-sdk:3.13.6'
2222
}
2323
```
2424

@@ -28,7 +28,7 @@ To add a dependency by using Maven, use the following:
2828
<dependency>
2929
<groupId>com.scalar-labs</groupId>
3030
<artifactId>scalardb-cluster-java-client-sdk</artifactId>
31-
<version>3.13.4</version>
31+
<version>3.13.6</version>
3232
</dependency>
3333
```
3434

@@ -94,17 +94,17 @@ The following section describes the Schema Loader for ScalarDB Cluster.
9494

9595
To load a schema via ScalarDB Cluster, you need to use the dedicated Schema Loader for ScalarDB Cluster (Schema Loader for Cluster).
9696
Using the Schema Loader for Cluster is basically the same as using the [ScalarDB Schema Loader](../schema-loader.mdx) except the name of the JAR file is different.
97-
You can download the Schema Loader for Cluster from [ScalarDB Releases](https://github.com/scalar-labs/scalardb/releases/tag/v3.13.4).
97+
You can download the Schema Loader for Cluster from [ScalarDB Releases](https://github.com/scalar-labs/scalardb/releases/tag/v3.13.6).
9898
After downloading the JAR file, you can run Schema Loader for Cluster with the following command:
9999

100100
```console
101-
java -jar scalardb-cluster-schema-loader-3.13.4-all.jar --config <PATH_TO_SCALARDB_PROPERTIES_FILE> --schema-file <PATH_TO_SCHEMA_FILE> --coordinator
101+
java -jar scalardb-cluster-schema-loader-3.13.6-all.jar --config <PATH_TO_SCALARDB_PROPERTIES_FILE> --schema-file <PATH_TO_SCHEMA_FILE> --coordinator
102102
```
103103

104104
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:
105105

106106
```console
107-
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.13.4 --config /scalardb.properties --schema-file /schema.json --coordinator
107+
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.13.6 --config /scalardb.properties --schema-file /schema.json --coordinator
108108
```
109109

110110
## ScalarDB Cluster SQL
@@ -144,8 +144,8 @@ To add the dependencies on the ScalarDB Cluster JDBC driver by using Gradle, use
144144

145145
```gradle
146146
dependencies {
147-
implementation 'com.scalar-labs:scalardb-sql-jdbc:3.13.4'
148-
implementation 'com.scalar-labs:scalardb-cluster-java-client-sdk:3.13.4'
147+
implementation 'com.scalar-labs:scalardb-sql-jdbc:3.13.6'
148+
implementation 'com.scalar-labs:scalardb-cluster-java-client-sdk:3.13.6'
149149
}
150150
```
151151

@@ -156,12 +156,12 @@ To add the dependencies by using Maven, use the following:
156156
<dependency>
157157
<groupId>com.scalar-labs</groupId>
158158
<artifactId>scalardb-sql-jdbc</artifactId>
159-
<version>3.13.4</version>
159+
<version>3.13.6</version>
160160
</dependency>
161161
<dependency>
162162
<groupId>com.scalar-labs</groupId>
163163
<artifactId>scalardb-cluster-java-client-sdk</artifactId>
164-
<version>3.13.4</version>
164+
<version>3.13.6</version>
165165
</dependency>
166166
</dependencies>
167167
```
@@ -179,8 +179,8 @@ To add the dependencies by using Gradle, use the following:
179179

180180
```gradle
181181
dependencies {
182-
implementation 'com.scalar-labs:scalardb-sql-spring-data:3.13.4'
183-
implementation 'com.scalar-labs:scalardb-cluster-java-client-sdk:3.13.4'
182+
implementation 'com.scalar-labs:scalardb-sql-spring-data:3.13.6'
183+
implementation 'com.scalar-labs:scalardb-cluster-java-client-sdk:3.13.6'
184184
}
185185
```
186186

@@ -191,12 +191,12 @@ To add the dependencies by using Maven, use the following:
191191
<dependency>
192192
<groupId>com.scalar-labs</groupId>
193193
<artifactId>scalardb-sql-spring-data</artifactId>
194-
<version>3.13.4</version>
194+
<version>3.13.6</version>
195195
</dependency>
196196
<dependency>
197197
<groupId>com.scalar-labs</groupId>
198198
<artifactId>scalardb-cluster-java-client-sdk</artifactId>
199-
<version>3.13.4</version>
199+
<version>3.13.6</version>
200200
</dependency>
201201
</dependencies>
202202
```
@@ -208,24 +208,24 @@ For details about Spring Data JDBC for ScalarDB, see [Guide of Spring Data JDBC
208208

209209
Like other SQL databases, ScalarDB SQL also provides a CLI tool where you can issue SQL statements interactively in a command-line shell.
210210

211-
You can download the SQL CLI for Cluster from [ScalarDB Releases](https://github.com/scalar-labs/scalardb/releases/tag/v3.13.4). After downloading the JAR file, you can run the SQL CLI with the following command:
211+
You can download the SQL CLI for Cluster from [ScalarDB Releases](https://github.com/scalar-labs/scalardb/releases/tag/v3.13.6). After downloading the JAR file, you can run the SQL CLI with the following command:
212212

213213
```console
214-
java -jar scalardb-cluster-sql-cli-3.13.4-all.jar --config <PATH_TO_SCALARDB_SQL_PROPERTIES_FILE>
214+
java -jar scalardb-cluster-sql-cli-3.13.6-all.jar --config <PATH_TO_SCALARDB_SQL_PROPERTIES_FILE>
215215
```
216216

217217
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:
218218

219219
```console
220-
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.13.4 --config /scalardb-sql.properties
220+
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.13.6 --config /scalardb-sql.properties
221221
```
222222

223223
#### Usage
224224

225225
You can see the CLI usage with the `-h` option as follows:
226226

227227
```console
228-
java -jar scalardb-cluster-sql-cli-3.13.4-all.jar -h
228+
java -jar scalardb-cluster-sql-cli-3.13.6-all.jar -h
229229
Usage: scalardb-sql-cli [-hs] -c=PROPERTIES_FILE [-e=COMMAND] [-f=FILE]
230230
[-l=LOG_FILE] [-o=<outputFormat>] [-p=PASSWORD]
231231
[-u=USERNAME]
@@ -256,6 +256,6 @@ For details about the ScalarDB Cluster gRPC API, refer to the following:
256256

257257
JavaDocs are also available:
258258

259-
* [ScalarDB Cluster Java Client SDK](https://javadoc.io/doc/com.scalar-labs/scalardb-cluster-java-client-sdk/3.13.4/index.html)
260-
* [ScalarDB Cluster Common](https://javadoc.io/doc/com.scalar-labs/scalardb-cluster-common/3.13.4/index.html)
261-
* [ScalarDB Cluster RPC](https://javadoc.io/doc/com.scalar-labs/scalardb-cluster-rpc/3.13.4/index.html)
259+
* [ScalarDB Cluster Java Client SDK](https://javadoc.io/doc/com.scalar-labs/scalardb-cluster-java-client-sdk/3.13.6/index.html)
260+
* [ScalarDB Cluster Common](https://javadoc.io/doc/com.scalar-labs/scalardb-cluster-common/3.13.6/index.html)
261+
* [ScalarDB Cluster RPC](https://javadoc.io/doc/com.scalar-labs/scalardb-cluster-rpc/3.13.6/index.html)

versioned_docs/version-3.13/scalardb-cluster/getting-started-with-scalardb-cluster-graphql.mdx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -108,11 +108,11 @@ For details about the client modes, see [Developer Guide for ScalarDB Cluster wi
108108

109109
To load a schema via ScalarDB Cluster, you need to use the dedicated Schema Loader for ScalarDB Cluster (Schema Loader for Cluster).
110110
Using the Schema Loader for Cluster is basically the same as using the [Schema Loader for ScalarDB](../schema-loader.mdx) except the name of the JAR file is different.
111-
You can download the Schema Loader for Cluster from [ScalarDB Releases](https://github.com/scalar-labs/scalardb/releases/tag/v3.13.4).
111+
You can download the Schema Loader for Cluster from [ScalarDB Releases](https://github.com/scalar-labs/scalardb/releases/tag/v3.13.6).
112112
After downloading the JAR file, you can run the Schema Loader for Cluster with the following command:
113113

114114
```console
115-
java -jar scalardb-cluster-schema-loader-3.13.4-all.jar --config database.properties -f schema.json --coordinator
115+
java -jar scalardb-cluster-schema-loader-3.13.6-all.jar --config database.properties -f schema.json --coordinator
116116
```
117117

118118
## Step 4. Run operations from GraphiQL

versioned_docs/version-3.13/scalardb-cluster/getting-started-with-scalardb-cluster-sql-jdbc.mdx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -86,10 +86,10 @@ For details about the client modes, see [Developer Guide for ScalarDB Cluster wi
8686

8787
## Step 3. Load a schema
8888

89-
To load a schema, you need to use [the SQL CLI](developer-guide-for-scalardb-cluster-with-java-api.mdx#sql-cli). You can download the SQL CLI from [ScalarDB Releases](https://github.com/scalar-labs/scalardb/releases/tag/v3.13.4). After downloading the JAR file, you can use SQL CLI for Cluster by running the following command:
89+
To load a schema, you need to use [the SQL CLI](developer-guide-for-scalardb-cluster-with-java-api.mdx#sql-cli). You can download the SQL CLI from [ScalarDB Releases](https://github.com/scalar-labs/scalardb/releases/tag/v3.13.6). After downloading the JAR file, you can use SQL CLI for Cluster by running the following command:
9090

9191
```console
92-
java -jar scalardb-cluster-sql-cli-3.13.4-all.jar --config scalardb-sql.properties --file schema.sql
92+
java -jar scalardb-cluster-sql-cli-3.13.6-all.jar --config scalardb-sql.properties --file schema.sql
9393
```
9494

9595
## Step 4. Load the initial data

versioned_docs/version-3.13/scalardb-cluster/getting-started-with-scalardb-cluster-sql-spring-data-jdbc.mdx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -86,10 +86,10 @@ For details about the client modes, see [Developer Guide for ScalarDB Cluster wi
8686

8787
## Step 3. Load a schema
8888

89-
To load a schema, you need to use [the SQL CLI](developer-guide-for-scalardb-cluster-with-java-api.mdx#sql-cli). You can download the SQL CLI from [ScalarDB Releases](https://github.com/scalar-labs/scalardb/releases/tag/v3.13.4). After downloading the JAR file, you can use SQL CLI for Cluster by running the following command:
89+
To load a schema, you need to use [the SQL CLI](developer-guide-for-scalardb-cluster-with-java-api.mdx#sql-cli). You can download the SQL CLI from [ScalarDB Releases](https://github.com/scalar-labs/scalardb/releases/tag/v3.13.6). After downloading the JAR file, you can use SQL CLI for Cluster by running the following command:
9090

9191
```console
92-
java -jar scalardb-cluster-sql-cli-3.13.4-all.jar --config scalardb-sql.properties --file schema.sql
92+
java -jar scalardb-cluster-sql-cli-3.13.6-all.jar --config scalardb-sql.properties --file schema.sql
9393
```
9494

9595
## Step 4. Modify `application.properties`

versioned_docs/version-3.13/scalardb-cluster/getting-started-with-scalardb-cluster.mdx

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -120,7 +120,7 @@ To use ScalarDB Cluster, open `build.gradle` in your preferred text editor. Then
120120
dependencies {
121121
...
122122
123-
implementation 'com.scalar-labs:scalardb-cluster-java-client-sdk:3.13.4'
123+
implementation 'com.scalar-labs:scalardb-cluster-java-client-sdk:3.13.6'
124124
}
125125
```
126126

@@ -166,12 +166,12 @@ For details about the client modes, see [Developer Guide for ScalarDB Cluster wi
166166

167167
The database schema (the method in which the data will be organized) for the sample application has already been defined in [`schema.json`](https://github.com/scalar-labs/scalardb-samples/tree/main/scalardb-sample/schema.json).
168168

169-
To apply the schema, go to [ScalarDB Releases](https://github.com/scalar-labs/scalardb/releases/tag/v3.13.4) and download the ScalarDB Cluster Schema Loader to the `scalardb-samples/scalardb-sample` folder.
169+
To apply the schema, go to [ScalarDB Releases](https://github.com/scalar-labs/scalardb/releases/tag/v3.13.6) and download the ScalarDB Cluster Schema Loader to the `scalardb-samples/scalardb-sample` folder.
170170

171171
Then, run the following command:
172172

173173
```console
174-
java -jar scalardb-cluster-schema-loader-3.13.4-all.jar --config database.properties -f schema.json --coordinator
174+
java -jar scalardb-cluster-schema-loader-3.13.6-all.jar --config database.properties -f schema.json --coordinator
175175
```
176176

177177
#### Schema details

versioned_docs/version-3.13/scalardb-cluster/getting-started-with-using-go-for-scalardb-cluster.mdx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -73,10 +73,10 @@ For details about the client modes, see [Developer Guide for ScalarDB Cluster wi
7373

7474
## Step 3. Load a schema
7575

76-
To load a schema via ScalarDB Cluster, you need to use the dedicated Schema Loader for ScalarDB Cluster (Schema Loader for Cluster). Using the Schema Loader for Cluster is basically the same as using the [Schema Loader for ScalarDB](../schema-loader.mdx) except the name of the JAR file is different. You can download the Schema Loader for Cluster from [ScalarDB Releases](https://github.com/scalar-labs/scalardb/releases/tag/v3.13.4). After downloading the JAR file, you can run the Schema Loader for Cluster with the following command:
76+
To load a schema via ScalarDB Cluster, you need to use the dedicated Schema Loader for ScalarDB Cluster (Schema Loader for Cluster). Using the Schema Loader for Cluster is basically the same as using the [Schema Loader for ScalarDB](../schema-loader.mdx) except the name of the JAR file is different. You can download the Schema Loader for Cluster from [ScalarDB Releases](https://github.com/scalar-labs/scalardb/releases/tag/v3.13.6). After downloading the JAR file, you can run the Schema Loader for Cluster with the following command:
7777

7878
```console
79-
java -jar scalardb-cluster-schema-loader-3.13.4-all.jar --config database.properties -f schema.json --coordinator
79+
java -jar scalardb-cluster-schema-loader-3.13.6-all.jar --config database.properties -f schema.json --coordinator
8080
```
8181

8282
## Step 4. Set up a Go environment

versioned_docs/version-3.13/scalardb-cluster/getting-started-with-using-python-for-scalardb-cluster.mdx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -73,10 +73,10 @@ For details about the client modes, see [Developer Guide for ScalarDB Cluster wi
7373

7474
## Step 3. Load a schema
7575

76-
To load a schema via ScalarDB Cluster, you need to use the dedicated Schema Loader for ScalarDB Cluster (Schema Loader for Cluster). Using the Schema Loader for Cluster is basically the same as using the [Schema Loader for ScalarDB](../schema-loader.mdx) except the name of the JAR file is different. You can download the Schema Loader for Cluster from [ScalarDB Releases](https://github.com/scalar-labs/scalardb/releases/tag/v3.13.4). After downloading the JAR file, you can run the Schema Loader for Cluster with the following command:
76+
To load a schema via ScalarDB Cluster, you need to use the dedicated Schema Loader for ScalarDB Cluster (Schema Loader for Cluster). Using the Schema Loader for Cluster is basically the same as using the [Schema Loader for ScalarDB](../schema-loader.mdx) except the name of the JAR file is different. You can download the Schema Loader for Cluster from [ScalarDB Releases](https://github.com/scalar-labs/scalardb/releases/tag/v3.13.6). After downloading the JAR file, you can run the Schema Loader for Cluster with the following command:
7777

7878
```console
79-
java -jar scalardb-cluster-schema-loader-3.13.4-all.jar --config database.properties -f schema.json --coordinator
79+
java -jar scalardb-cluster-schema-loader-3.13.6-all.jar --config database.properties -f schema.json --coordinator
8080
```
8181

8282
## Step 4. Set up a Python environment

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

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -284,7 +284,7 @@ Select your build tool, and follow the instructions to add the build dependency
284284

285285
```gradle
286286
dependencies {
287-
implementation 'com.scalar-labs:scalardb-cluster-java-client-sdk:3.13.4'
287+
implementation 'com.scalar-labs:scalardb-cluster-java-client-sdk:3.13.6'
288288
}
289289
```
290290
</TabItem>
@@ -295,7 +295,7 @@ Select your build tool, and follow the instructions to add the build dependency
295295
<dependency>
296296
<groupId>com.scalar-labs</groupId>
297297
<artifactId>scalardb-cluster-java-client-sdk</artifactId>
298-
<version>3.13.4</version>
298+
<version>3.13.6</version>
299299
</dependency>
300300
```
301301
</TabItem>
@@ -320,5 +320,5 @@ The following limitations apply to non-transactional storage operations:
320320

321321
### Learn more
322322

323-
- [Javadoc](https://javadoc.io/doc/com.scalar-labs/scalardb/3.13.4/index.html)
323+
- [Javadoc](https://javadoc.io/doc/com.scalar-labs/scalardb/3.13.6/index.html)
324324
- [Developer Guide for ScalarDB Cluster with the Java API](developer-guide-for-scalardb-cluster-with-java-api.mdx)

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

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -289,8 +289,8 @@ Data Loader is currently built upon ScalarDB Core, so it can only import and exp
289289

290290
```gradle
291291
dependencies {
292-
implementation 'com.scalar-labs:scalardb-sql-jdbc:3.13.4'
293-
implementation 'com.scalar-labs:scalardb-cluster-java-client-sdk:3.13.4'
292+
implementation 'com.scalar-labs:scalardb-sql-jdbc:3.13.6'
293+
implementation 'com.scalar-labs:scalardb-cluster-java-client-sdk:3.13.6'
294294
}
295295
```
296296
</TabItem>
@@ -302,12 +302,12 @@ Data Loader is currently built upon ScalarDB Core, so it can only import and exp
302302
<dependency>
303303
<groupId>com.scalar-labs</groupId>
304304
<artifactId>scalardb-sql-jdbc</artifactId>
305-
<version>3.13.4</version>
305+
<version>3.13.6</version>
306306
</dependency>
307307
<dependency>
308308
<groupId>com.scalar-labs</groupId>
309309
<artifactId>scalardb-cluster-java-client-sdk</artifactId>
310-
<version>3.13.4</version>
310+
<version>3.13.6</version>
311311
</dependency>
312312
</dependencies>
313313
```
@@ -354,8 +354,8 @@ The following limitations apply to non-transactional storage operations:
354354

355355
```gradle
356356
dependencies {
357-
implementation 'com.scalar-labs:scalardb-sql:3.13.4'
358-
implementation 'com.scalar-labs:scalardb-cluster-java-client-sdk:3.13.4'
357+
implementation 'com.scalar-labs:scalardb-sql:3.13.6'
358+
implementation 'com.scalar-labs:scalardb-cluster-java-client-sdk:3.13.6'
359359
}
360360
```
361361
</TabItem>
@@ -367,12 +367,12 @@ The following limitations apply to non-transactional storage operations:
367367
<dependency>
368368
<groupId>com.scalar-labs</groupId>
369369
<artifactId>scalardb-sql</artifactId>
370-
<version>3.13.4</version>
370+
<version>3.13.6</version>
371371
</dependency>
372372
<dependency>
373373
<groupId>com.scalar-labs</groupId>
374374
<artifactId>scalardb-cluster-java-client-sdk</artifactId>
375-
<version>3.13.4</version>
375+
<version>3.13.6</version>
376376
</dependency>
377377
</dependencies>
378378
```
@@ -400,7 +400,7 @@ The following limitations apply to non-transactional storage operations:
400400

401401
<h3>Learn more</h3>
402402

403-
- [Javadoc](https://javadoc.io/doc/com.scalar-labs/scalardb-sql/3.13.4/index.html)
403+
- [Javadoc](https://javadoc.io/doc/com.scalar-labs/scalardb-sql/3.13.6/index.html)
404404

405405
</TabItem>
406406
</Tabs>

0 commit comments

Comments
 (0)