Skip to content

Commit 77d3270

Browse files
committed
AUTO: Sync ScalarDB docs in English to docs site repo
1 parent 78ff8db commit 77d3270

8 files changed

+33
-33
lines changed

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

Lines changed: 14 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -111,7 +111,7 @@ To add a dependency on ScalarDB Cluster Client by using Gradle, use the followin
111111

112112
```gradle
113113
dependencies {
114-
implementation 'com.scalar-labs:scalardb-cluster-client:3.10.4'
114+
implementation 'com.scalar-labs:scalardb-cluster-client:3.10.5'
115115
}
116116
```
117117

@@ -121,7 +121,7 @@ To add a dependency by using Maven, use the following:
121121
<dependency>
122122
<groupId>com.scalar-labs</groupId>
123123
<artifactId>scalardb-cluster-client</artifactId>
124-
<version>3.10.4</version>
124+
<version>3.10.5</version>
125125
</dependency>
126126
```
127127

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

217217
To load a schema via ScalarDB Cluster, you need to use the dedicated Schema Loader for ScalarDB Cluster (Schema Loader for Cluster).
218218
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.
219-
You can download the Schema Loader for Cluster from [ScalarDB Releases](https://github.com/scalar-labs/scalardb/releases/tag/v3.10.4).
219+
You can download the Schema Loader for Cluster from [ScalarDB Releases](https://github.com/scalar-labs/scalardb/releases/tag/v3.10.5).
220220
After downloading the JAR file, you can run Schema Loader for Cluster with the following command:
221221

222222
```shell
223-
java -jar scalardb-cluster-schema-loader-3.10.4-all.jar --config <PATH_TO_CONFIG_FILE> -f <PATH_TO_SCHEMA_FILE> --coordinator
223+
java -jar scalardb-cluster-schema-loader-3.10.5-all.jar --config <PATH_TO_CONFIG_FILE> -f <PATH_TO_SCHEMA_FILE> --coordinator
224224
```
225225

226226
## ScalarDB Cluster SQL
@@ -260,8 +260,8 @@ To add the dependencies on the ScalarDB Cluster JDBC driver by using Gradle, use
260260

261261
```gradle
262262
dependencies {
263-
implementation 'com.scalar-labs:scalardb-sql-jdbc:3.10.4'
264-
implementation 'com.scalar-labs:scalardb-cluster-client:3.10.4'
263+
implementation 'com.scalar-labs:scalardb-sql-jdbc:3.10.5'
264+
implementation 'com.scalar-labs:scalardb-cluster-client:3.10.5'
265265
}
266266
```
267267

@@ -272,12 +272,12 @@ To add the dependencies by using Maven, use the following:
272272
<dependency>
273273
<groupId>com.scalar-labs</groupId>
274274
<artifactId>scalardb-sql-jdbc</artifactId>
275-
<version>3.10.4</version>
275+
<version>3.10.5</version>
276276
</dependency>
277277
<dependency>
278278
<groupId>com.scalar-labs</groupId>
279279
<artifactId>scalardb-cluster-client</artifactId>
280-
<version>3.10.4</version>
280+
<version>3.10.5</version>
281281
</dependency>
282282
</dependencies>
283283
```
@@ -295,8 +295,8 @@ To add the dependencies by using Gradle, use the following:
295295

296296
```gradle
297297
dependencies {
298-
implementation 'com.scalar-labs:scalardb-sql-spring-data:3.10.4'
299-
implementation 'com.scalar-labs:scalardb-cluster-client:3.10.4'
298+
implementation 'com.scalar-labs:scalardb-sql-spring-data:3.10.5'
299+
implementation 'com.scalar-labs:scalardb-cluster-client:3.10.5'
300300
}
301301
```
302302

@@ -307,12 +307,12 @@ To add the dependencies by using Maven, use the following:
307307
<dependency>
308308
<groupId>com.scalar-labs</groupId>
309309
<artifactId>scalardb-sql-spring-data</artifactId>
310-
<version>3.10.4</version>
310+
<version>3.10.5</version>
311311
</dependency>
312312
<dependency>
313313
<groupId>com.scalar-labs</groupId>
314314
<artifactId>scalardb-cluster-client</artifactId>
315-
<version>3.10.4</version>
315+
<version>3.10.5</version>
316316
</dependency>
317317
</dependencies>
318318
```
@@ -357,11 +357,11 @@ For details about how to configure Spring Data JDBC for ScalarDB, see [Configura
357357
You need to use the dedicated SQL CLI for ScalarDB Cluster (SQL CLI for Cluster).
358358

359359
Using the SQL CLI for Cluster is basically the same as using the [ScalarDB SQL Command Line Interface](../scalardb-sql/command-line-interface.mdx) except the name of the JAR file is different.
360-
You can download the SQL CLI for Cluster from [ScalarDB Releases](https://github.com/scalar-labs/scalardb/releases/tag/v3.10.4).
360+
You can download the SQL CLI for Cluster from [ScalarDB Releases](https://github.com/scalar-labs/scalardb/releases/tag/v3.10.5).
361361
After downloading the JAR file, you can run SQL CLI for Cluster with the following command:
362362

363363
```shell
364-
java -jar scalardb-cluster-sql-cli-3.10.4-all.jar --config <PATH_TO_CONFIG_FILE>
364+
java -jar scalardb-cluster-sql-cli-3.10.5-all.jar --config <PATH_TO_CONFIG_FILE>
365365
```
366366

367367
## Further reading

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

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

101101
To load a schema via ScalarDB Cluster, you need to use the dedicated Schema Loader for ScalarDB Cluster (Schema Loader for Cluster).
102102
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.
103-
You can download the Schema Loader for Cluster from [ScalarDB Releases](https://github.com/scalar-labs/scalardb/releases/tag/v3.10.4).
103+
You can download the Schema Loader for Cluster from [ScalarDB Releases](https://github.com/scalar-labs/scalardb/releases/tag/v3.10.5).
104104
After downloading the JAR file, you can run the Schema Loader for Cluster with the following command:
105105

106106
```shell
107-
$ java -jar scalardb-cluster-schema-loader-3.10.4-all.jar --config database.properties -f schema.json --coordinator
107+
$ java -jar scalardb-cluster-schema-loader-3.10.5-all.jar --config database.properties -f schema.json --coordinator
108108
```
109109

110110
## Step 4. Run operations from GraphiQL

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

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -95,7 +95,7 @@ Then, delete the existing dependency for `com.scalar-labs:scalardb-sql-direct-mo
9595
dependencies {
9696
...
9797
98-
implementation 'com.scalar-labs:scalardb-cluster-client:3.10.4'
98+
implementation 'com.scalar-labs:scalardb-cluster-client:3.10.5'
9999
}
100100
```
101101

@@ -133,11 +133,11 @@ For details about the client modes, see [Developer Guide for ScalarDB Cluster wi
133133

134134
To load a schema via ScalarDB Cluster SQL, you need to use the dedicated SQL CLI for ScalarDB Cluster (SQL CLI for Cluster).
135135
Using the SQL CLI for Cluster is basically the same as using the [ScalarDB SQL Command Line Interface](../scalardb-sql/command-line-interface.mdx) except the name of the JAR file is different.
136-
You can download the SQL CLI for Cluster from [ScalarDB Releases](https://github.com/scalar-labs/scalardb/releases/tag/v3.10.4).
136+
You can download the SQL CLI for Cluster from [ScalarDB Releases](https://github.com/scalar-labs/scalardb/releases/tag/v3.10.5).
137137
After downloading the JAR file, you can use SQL CLI for Cluster by running the following command:
138138

139139
```shell
140-
$ java -jar scalardb-cluster-sql-cli-3.10.4-all.jar --config scalardb-sql.properties --file schema.sql
140+
$ java -jar scalardb-cluster-sql-cli-3.10.5-all.jar --config scalardb-sql.properties --file schema.sql
141141
```
142142

143143
## Step 5. Load the initial data

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

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -95,7 +95,7 @@ Then, delete the existing dependency for `com.scalar-labs:scalardb-sql-direct-mo
9595
dependencies {
9696
...
9797
98-
implementation 'com.scalar-labs:scalardb-cluster-client:3.10.4'
98+
implementation 'com.scalar-labs:scalardb-cluster-client:3.10.5'
9999
}
100100
```
101101

@@ -133,11 +133,11 @@ For details about the client modes, see [Developer Guide for ScalarDB Cluster wi
133133

134134
To load a schema via ScalarDB Cluster SQL, you need to use the dedicated SQL CLI for ScalarDB Cluster (SQL CLI for Cluster).
135135
Using the SQL CLI for Cluster is basically the same as using the [ScalarDB SQL Command Line Interface](../scalardb-sql/command-line-interface.mdx) except the name of the JAR file is different.
136-
You can download the SQL CLI for Cluster from [ScalarDB Releases](https://github.com/scalar-labs/scalardb/releases/tag/v3.10.4).
136+
You can download the SQL CLI for Cluster from [ScalarDB Releases](https://github.com/scalar-labs/scalardb/releases/tag/v3.10.5).
137137
After downloading the JAR file, you can run SQL CLI for Cluster with the following command:
138138

139139
```shell
140-
$ java -jar scalardb-cluster-sql-cli-3.10.4-all.jar --config scalardb-sql.properties --file schema.sql
140+
$ java -jar scalardb-cluster-sql-cli-3.10.5-all.jar --config scalardb-sql.properties --file schema.sql
141141
```
142142

143143
## Step 5. Modify `application.properties`

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

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -154,7 +154,7 @@ Then, delete the existing dependency for `com.scalar-labs:scalardb` from the `de
154154
dependencies {
155155
...
156156
157-
implementation 'com.scalar-labs:scalardb-cluster-client:3.10.4'
157+
implementation 'com.scalar-labs:scalardb-cluster-client:3.10.5'
158158
}
159159
```
160160

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

201201
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).
202202

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

205205
Then, run the following command:
206206

207207
```console
208-
$ java -jar scalardb-cluster-schema-loader-3.10.4-all.jar --config database.properties -f schema.json --coordinator
208+
$ java -jar scalardb-cluster-schema-loader-3.10.5-all.jar --config database.properties -f schema.json --coordinator
209209
```
210210

211211
#### Schema details

versioned_docs/version-3.10/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
@@ -67,10 +67,10 @@ For details about the client modes, see [Developer Guide for ScalarDB Cluster wi
6767

6868
## Step 3. Load a schema
6969

70-
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.10.4). After downloading the JAR file, you can run the Schema Loader for Cluster with the following command:
70+
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.10.5). After downloading the JAR file, you can run the Schema Loader for Cluster with the following command:
7171

7272
```shell
73-
$ java -jar scalardb-cluster-schema-loader-3.10.4-all.jar --config database.properties -f schema.json --coordinator
73+
$ java -jar scalardb-cluster-schema-loader-3.10.5-all.jar --config database.properties -f schema.json --coordinator
7474
```
7575

7676
## Step 4. Set up a Go environment

versioned_docs/version-3.10/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
@@ -67,10 +67,10 @@ For details about the client modes, see [Developer Guide for ScalarDB Cluster wi
6767

6868
## Step 3. Load a schema
6969

70-
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.10.4). After downloading the JAR file, you can run the Schema Loader for Cluster with the following command:
70+
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.10.5). After downloading the JAR file, you can run the Schema Loader for Cluster with the following command:
7171

7272
```shell
73-
$ java -jar scalardb-cluster-schema-loader-3.10.4-all.jar --config database.properties -f schema.json --coordinator
73+
$ java -jar scalardb-cluster-schema-loader-3.10.5-all.jar --config database.properties -f schema.json --coordinator
7474
```
7575

7676
## Step 4. Set up a Python environment

versioned_docs/version-3.10/scalardb-sql/index.mdx

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -90,10 +90,10 @@ To add a dependency on ScalarDB SQL using Gradle, use the following:
9090
```gradle
9191
dependencies {
9292
// For Direct mode
93-
implementation 'com.scalar-labs:scalardb-sql-direct-mode:3.10.3'
93+
implementation 'com.scalar-labs:scalardb-sql-direct-mode:3.10.5'
9494
9595
// For Server mode
96-
implementation 'com.scalar-labs:scalardb-sql-server-mode:3.10.3'
96+
implementation 'com.scalar-labs:scalardb-sql-server-mode:3.10.5'
9797
}
9898
```
9999

@@ -104,14 +104,14 @@ To add a dependency using Maven:
104104
<dependency>
105105
<groupId>com.scalar-labs</groupId>
106106
<artifactId>scalardb-sql-direct-mode</artifactId>
107-
<version>3.10.3</version>
107+
<version>3.10.5</version>
108108
</dependency>
109109

110110
<!-- For Server mode -->
111111
<dependency>
112112
<groupId>com.scalar-labs</groupId>
113113
<artifactId>scalardb-sql-server-mode</artifactId>
114-
<version>3.10.3</version>
114+
<version>3.10.5</version>
115115
</dependency>
116116
</dependencies>
117117
```

0 commit comments

Comments
 (0)