Skip to content

Commit e8cbde7

Browse files
committed
AUTO: Sync ScalarDB docs in English to docs site repo
1 parent 13ea804 commit e8cbde7

14 files changed

+50
-50
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
@@ -237,7 +237,7 @@ Select your build tool, and follow the instructions to add the build dependency
237237

238238
```gradle
239239
dependencies {
240-
implementation 'com.scalar-labs:scalardb:3.13.2'
240+
implementation 'com.scalar-labs:scalardb:3.13.4'
241241
}
242242
```
243243
</TabItem>
@@ -248,7 +248,7 @@ Select your build tool, and follow the instructions to add the build dependency
248248
<dependency>
249249
<groupId>com.scalar-labs</groupId>
250250
<artifactId>scalardb</artifactId>
251-
<version>3.13.2</version>
251+
<version>3.13.4</version>
252252
</dependency>
253253
```
254254
</TabItem>
@@ -269,4 +269,4 @@ The following limitations apply to non-transactional storage operations:
269269

270270
### Learn more
271271

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

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

Lines changed: 18 additions & 18 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.2'
21+
implementation 'com.scalar-labs:scalardb-cluster-java-client-sdk:3.13.4'
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.2</version>
31+
<version>3.13.4</version>
3232
</dependency>
3333
```
3434

@@ -121,11 +121,11 @@ scalar.db.contact_points=direct-kubernetes:ns/scalardb-cluster
121121

122122
To load a schema via ScalarDB Cluster, you need to use the dedicated Schema Loader for ScalarDB Cluster (Schema Loader for Cluster).
123123
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.
124-
You can download the Schema Loader for Cluster from [ScalarDB Releases](https://github.com/scalar-labs/scalardb/releases/tag/v3.13.2).
124+
You can download the Schema Loader for Cluster from [ScalarDB Releases](https://github.com/scalar-labs/scalardb/releases/tag/v3.13.4).
125125
After downloading the JAR file, you can run Schema Loader for Cluster with the following command:
126126

127127
```console
128-
java -jar scalardb-cluster-schema-loader-3.13.2-all.jar --config <PATH_TO_CONFIG_FILE> -f <PATH_TO_SCHEMA_FILE> --coordinator
128+
java -jar scalardb-cluster-schema-loader-3.13.4-all.jar --config <PATH_TO_CONFIG_FILE> -f <PATH_TO_SCHEMA_FILE> --coordinator
129129
```
130130

131131
## ScalarDB Cluster SQL
@@ -165,8 +165,8 @@ To add the dependencies on the ScalarDB Cluster JDBC driver by using Gradle, use
165165

166166
```gradle
167167
dependencies {
168-
implementation 'com.scalar-labs:scalardb-sql-jdbc:3.13.2'
169-
implementation 'com.scalar-labs:scalardb-cluster-java-client-sdk:3.13.2'
168+
implementation 'com.scalar-labs:scalardb-sql-jdbc:3.13.4'
169+
implementation 'com.scalar-labs:scalardb-cluster-java-client-sdk:3.13.4'
170170
}
171171
```
172172

@@ -177,12 +177,12 @@ To add the dependencies by using Maven, use the following:
177177
<dependency>
178178
<groupId>com.scalar-labs</groupId>
179179
<artifactId>scalardb-sql-jdbc</artifactId>
180-
<version>3.13.2</version>
180+
<version>3.13.4</version>
181181
</dependency>
182182
<dependency>
183183
<groupId>com.scalar-labs</groupId>
184184
<artifactId>scalardb-cluster-java-client-sdk</artifactId>
185-
<version>3.13.2</version>
185+
<version>3.13.4</version>
186186
</dependency>
187187
</dependencies>
188188
```
@@ -200,8 +200,8 @@ To add the dependencies by using Gradle, use the following:
200200

201201
```gradle
202202
dependencies {
203-
implementation 'com.scalar-labs:scalardb-sql-spring-data:3.13.2'
204-
implementation 'com.scalar-labs:scalardb-cluster-java-client-sdk:3.13.2'
203+
implementation 'com.scalar-labs:scalardb-sql-spring-data:3.13.4'
204+
implementation 'com.scalar-labs:scalardb-cluster-java-client-sdk:3.13.4'
205205
}
206206
```
207207

@@ -212,12 +212,12 @@ To add the dependencies by using Maven, use the following:
212212
<dependency>
213213
<groupId>com.scalar-labs</groupId>
214214
<artifactId>scalardb-sql-spring-data</artifactId>
215-
<version>3.13.2</version>
215+
<version>3.13.4</version>
216216
</dependency>
217217
<dependency>
218218
<groupId>com.scalar-labs</groupId>
219219
<artifactId>scalardb-cluster-java-client-sdk</artifactId>
220-
<version>3.13.2</version>
220+
<version>3.13.4</version>
221221
</dependency>
222222
</dependencies>
223223
```
@@ -262,18 +262,18 @@ For details about how to configure Spring Data JDBC for ScalarDB, see [Configura
262262

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

265-
You can download the SQL CLI for Cluster from [ScalarDB Releases](https://github.com/scalar-labs/scalardb/releases/tag/v3.13.2). After downloading the JAR file, you can run the SQL CLI with the following command:
265+
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:
266266

267267
```console
268-
java -jar scalardb-cluster-sql-cli-3.13.2-all.jar --config <PATH_TO_CONFIG_FILE>
268+
java -jar scalardb-cluster-sql-cli-3.13.4-all.jar --config <PATH_TO_CONFIG_FILE>
269269
```
270270

271271
#### Usage
272272

273273
You can see the CLI usage with the `-h` option as follows:
274274

275275
```console
276-
java -jar scalardb-cluster-sql-cli-3.13.2-all.jar -h
276+
java -jar scalardb-cluster-sql-cli-3.13.4-all.jar -h
277277
Usage: scalardb-sql-cli [-hs] -c=PROPERTIES_FILE [-e=COMMAND] [-f=FILE]
278278
[-l=LOG_FILE] [-o=<outputFormat>] [-p=PASSWORD]
279279
[-u=USERNAME]
@@ -304,6 +304,6 @@ For details about the ScalarDB Cluster gRPC API, refer to the following:
304304

305305
JavaDocs are also available:
306306

307-
* [ScalarDB Cluster Java Client SDK](https://javadoc.io/doc/com.scalar-labs/scalardb-cluster-java-client-sdk/3.13.2/index.html)
308-
* [ScalarDB Cluster Common](https://javadoc.io/doc/com.scalar-labs/scalardb-cluster-common/3.13.2/index.html)
309-
* [ScalarDB Cluster RPC](https://javadoc.io/doc/com.scalar-labs/scalardb-cluster-rpc/3.13.2/index.html)
307+
* [ScalarDB Cluster Java Client SDK](https://javadoc.io/doc/com.scalar-labs/scalardb-cluster-java-client-sdk/3.13.4/index.html)
308+
* [ScalarDB Cluster Common](https://javadoc.io/doc/com.scalar-labs/scalardb-cluster-common/3.13.4/index.html)
309+
* [ScalarDB Cluster RPC](https://javadoc.io/doc/com.scalar-labs/scalardb-cluster-rpc/3.13.4/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.2).
111+
You can download the Schema Loader for Cluster from [ScalarDB Releases](https://github.com/scalar-labs/scalardb/releases/tag/v3.13.4).
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.2-all.jar --config database.properties -f schema.json --coordinator
115+
java -jar scalardb-cluster-schema-loader-3.13.4-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.2). 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.4). 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.2-all.jar --config scalardb-sql.properties --file schema.sql
92+
java -jar scalardb-cluster-sql-cli-3.13.4-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.2). 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.4). 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.2-all.jar --config scalardb-sql.properties --file schema.sql
92+
java -jar scalardb-cluster-sql-cli-3.13.4-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.2'
123+
implementation 'com.scalar-labs:scalardb-cluster-java-client-sdk:3.13.4'
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.2) 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.4) 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.2-all.jar --config database.properties -f schema.json --coordinator
174+
java -jar scalardb-cluster-schema-loader-3.13.4-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.2). 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.4). 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.2-all.jar --config database.properties -f schema.json --coordinator
79+
java -jar scalardb-cluster-schema-loader-3.13.4-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.2). 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.4). 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.2-all.jar --config database.properties -f schema.json --coordinator
79+
java -jar scalardb-cluster-schema-loader-3.13.4-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
@@ -271,7 +271,7 @@ Select your build tool, and follow the instructions to add the build dependency
271271

272272
```gradle
273273
dependencies {
274-
implementation 'com.scalar-labs:scalardb-cluster-java-client-sdk:3.13.2'
274+
implementation 'com.scalar-labs:scalardb-cluster-java-client-sdk:3.13.4'
275275
}
276276
```
277277
</TabItem>
@@ -282,7 +282,7 @@ Select your build tool, and follow the instructions to add the build dependency
282282
<dependency>
283283
<groupId>com.scalar-labs</groupId>
284284
<artifactId>scalardb-cluster-java-client-sdk</artifactId>
285-
<version>3.13.2</version>
285+
<version>3.13.4</version>
286286
</dependency>
287287
```
288288
</TabItem>
@@ -307,5 +307,5 @@ The following limitations apply to non-transactional storage operations:
307307

308308
### Learn more
309309

310-
- [Javadoc](https://javadoc.io/doc/com.scalar-labs/scalardb/3.13.2/index.html)
310+
- [Javadoc](https://javadoc.io/doc/com.scalar-labs/scalardb/3.13.4/index.html)
311311
- [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
@@ -276,8 +276,8 @@ Also, for a list of supported DDLs, see [ScalarDB SQL Grammar](../scalardb-sql/g
276276

277277
```gradle
278278
dependencies {
279-
implementation 'com.scalar-labs:scalardb-sql-jdbc:3.13.2'
280-
implementation 'com.scalar-labs:scalardb-cluster-java-client-sdk:3.13.2'
279+
implementation 'com.scalar-labs:scalardb-sql-jdbc:3.13.4'
280+
implementation 'com.scalar-labs:scalardb-cluster-java-client-sdk:3.13.4'
281281
}
282282
```
283283
</TabItem>
@@ -289,12 +289,12 @@ Also, for a list of supported DDLs, see [ScalarDB SQL Grammar](../scalardb-sql/g
289289
<dependency>
290290
<groupId>com.scalar-labs</groupId>
291291
<artifactId>scalardb-sql-jdbc</artifactId>
292-
<version>3.13.2</version>
292+
<version>3.13.4</version>
293293
</dependency>
294294
<dependency>
295295
<groupId>com.scalar-labs</groupId>
296296
<artifactId>scalardb-cluster-java-client-sdk</artifactId>
297-
<version>3.13.2</version>
297+
<version>3.13.4</version>
298298
</dependency>
299299
</dependencies>
300300
```
@@ -341,8 +341,8 @@ The following limitations apply to non-transactional storage operations:
341341

342342
```gradle
343343
dependencies {
344-
implementation 'com.scalar-labs:scalardb-sql:3.13.2'
345-
implementation 'com.scalar-labs:scalardb-cluster-java-client-sdk:3.13.2'
344+
implementation 'com.scalar-labs:scalardb-sql:3.13.4'
345+
implementation 'com.scalar-labs:scalardb-cluster-java-client-sdk:3.13.4'
346346
}
347347
```
348348
</TabItem>
@@ -354,12 +354,12 @@ The following limitations apply to non-transactional storage operations:
354354
<dependency>
355355
<groupId>com.scalar-labs</groupId>
356356
<artifactId>scalardb-sql</artifactId>
357-
<version>3.13.2</version>
357+
<version>3.13.4</version>
358358
</dependency>
359359
<dependency>
360360
<groupId>com.scalar-labs</groupId>
361361
<artifactId>scalardb-cluster-java-client-sdk</artifactId>
362-
<version>3.13.2</version>
362+
<version>3.13.4</version>
363363
</dependency>
364364
</dependencies>
365365
```
@@ -387,7 +387,7 @@ The following limitations apply to non-transactional storage operations:
387387

388388
<h3>Learn more</h3>
389389

390-
- [Javadoc](https://javadoc.io/doc/com.scalar-labs/scalardb-sql/3.13.2/index.html)
390+
- [Javadoc](https://javadoc.io/doc/com.scalar-labs/scalardb-sql/3.13.4/index.html)
391391

392392
</TabItem>
393393
</Tabs>

0 commit comments

Comments
 (0)