Skip to content

Commit 2ff75c2

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

12 files changed

+40
-40
lines changed

docs/scalardb-cluster/developer-guide-for-scalardb-cluster-with-java-api.mdx

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

1212
```gradle
1313
dependencies {
14-
implementation 'com.scalar-labs:scalardb-cluster-java-client-sdk:3.12.2'
14+
implementation 'com.scalar-labs:scalardb-cluster-java-client-sdk:3.12.3'
1515
}
1616
```
1717

@@ -21,7 +21,7 @@ To add a dependency by using Maven, use the following:
2121
<dependency>
2222
<groupId>com.scalar-labs</groupId>
2323
<artifactId>scalardb-cluster-java-client-sdk</artifactId>
24-
<version>3.12.2</version>
24+
<version>3.12.3</version>
2525
</dependency>
2626
```
2727

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

115115
To load a schema via ScalarDB Cluster, you need to use the dedicated Schema Loader for ScalarDB Cluster (Schema Loader for Cluster).
116116
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.
117-
You can download the Schema Loader for Cluster from [ScalarDB Releases](https://github.com/scalar-labs/scalardb/releases/tag/v3.12.2).
117+
You can download the Schema Loader for Cluster from [ScalarDB Releases](https://github.com/scalar-labs/scalardb/releases/tag/v3.12.3).
118118
After downloading the JAR file, you can run Schema Loader for Cluster with the following command:
119119

120120
```shell
121-
java -jar scalardb-cluster-schema-loader-3.12.2-all.jar --config <PATH_TO_CONFIG_FILE> -f <PATH_TO_SCHEMA_FILE> --coordinator
121+
java -jar scalardb-cluster-schema-loader-3.12.3-all.jar --config <PATH_TO_CONFIG_FILE> -f <PATH_TO_SCHEMA_FILE> --coordinator
122122
```
123123

124124
## ScalarDB Cluster SQL
@@ -158,8 +158,8 @@ To add the dependencies on the ScalarDB Cluster JDBC driver by using Gradle, use
158158

159159
```gradle
160160
dependencies {
161-
implementation 'com.scalar-labs:scalardb-sql-jdbc:3.12.2'
162-
implementation 'com.scalar-labs:scalardb-cluster-java-client-sdk:3.12.2'
161+
implementation 'com.scalar-labs:scalardb-sql-jdbc:3.12.3'
162+
implementation 'com.scalar-labs:scalardb-cluster-java-client-sdk:3.12.3'
163163
}
164164
```
165165

@@ -170,12 +170,12 @@ To add the dependencies by using Maven, use the following:
170170
<dependency>
171171
<groupId>com.scalar-labs</groupId>
172172
<artifactId>scalardb-sql-jdbc</artifactId>
173-
<version>3.12.2</version>
173+
<version>3.12.3</version>
174174
</dependency>
175175
<dependency>
176176
<groupId>com.scalar-labs</groupId>
177177
<artifactId>scalardb-cluster-java-client-sdk</artifactId>
178-
<version>3.12.2</version>
178+
<version>3.12.3</version>
179179
</dependency>
180180
</dependencies>
181181
```
@@ -193,8 +193,8 @@ To add the dependencies by using Gradle, use the following:
193193

194194
```gradle
195195
dependencies {
196-
implementation 'com.scalar-labs:scalardb-sql-spring-data:3.12.2'
197-
implementation 'com.scalar-labs:scalardb-cluster-java-client-sdk:3.12.2'
196+
implementation 'com.scalar-labs:scalardb-sql-spring-data:3.12.3'
197+
implementation 'com.scalar-labs:scalardb-cluster-java-client-sdk:3.12.3'
198198
}
199199
```
200200

@@ -205,12 +205,12 @@ To add the dependencies by using Maven, use the following:
205205
<dependency>
206206
<groupId>com.scalar-labs</groupId>
207207
<artifactId>scalardb-sql-spring-data</artifactId>
208-
<version>3.12.2</version>
208+
<version>3.12.3</version>
209209
</dependency>
210210
<dependency>
211211
<groupId>com.scalar-labs</groupId>
212212
<artifactId>scalardb-cluster-java-client-sdk</artifactId>
213-
<version>3.12.2</version>
213+
<version>3.12.3</version>
214214
</dependency>
215215
</dependencies>
216216
```
@@ -254,11 +254,11 @@ For details about how to configure Spring Data JDBC for ScalarDB, see [Configura
254254
You need to use the dedicated SQL CLI for ScalarDB Cluster (SQL CLI for Cluster).
255255

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

260260
```shell
261-
java -jar scalardb-cluster-sql-cli-3.12.2-all.jar --config <PATH_TO_CONFIG_FILE>
261+
java -jar scalardb-cluster-sql-cli-3.12.3-all.jar --config <PATH_TO_CONFIG_FILE>
262262
```
263263

264264
## Further reading
@@ -271,6 +271,6 @@ For details about the ScalarDB Cluster gRPC API, refer to the following:
271271

272272
JavaDocs are also available:
273273

274-
* [ScalarDB Cluster Java Client SDK](https://javadoc.io/doc/com.scalar-labs/scalardb-cluster-java-client-sdk/3.12.2/index.html)
275-
* [ScalarDB Cluster Common](https://javadoc.io/doc/com.scalar-labs/scalardb-cluster-common/3.12.2/index.html)
276-
* [ScalarDB Cluster RPC](https://javadoc.io/doc/com.scalar-labs/scalardb-cluster-rpc/3.12.2/index.html)
274+
* [ScalarDB Cluster Java Client SDK](https://javadoc.io/doc/com.scalar-labs/scalardb-cluster-java-client-sdk/3.12.3/index.html)
275+
* [ScalarDB Cluster Common](https://javadoc.io/doc/com.scalar-labs/scalardb-cluster-common/3.12.3/index.html)
276+
* [ScalarDB Cluster RPC](https://javadoc.io/doc/com.scalar-labs/scalardb-cluster-rpc/3.12.3/index.html)

docs/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.12.2).
111+
You can download the Schema Loader for Cluster from [ScalarDB Releases](https://github.com/scalar-labs/scalardb/releases/tag/v3.12.3).
112112
After downloading the JAR file, you can run the Schema Loader for Cluster with the following command:
113113

114114
```shell
115-
$ java -jar scalardb-cluster-schema-loader-3.12.2-all.jar --config database.properties -f schema.json --coordinator
115+
$ java -jar scalardb-cluster-schema-loader-3.12.3-all.jar --config database.properties -f schema.json --coordinator
116116
```
117117

118118
## Step 4. Run operations from GraphiQL

docs/scalardb-cluster/getting-started-with-scalardb-cluster-sql-jdbc.mdx

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,7 @@ Then, delete the existing dependency for `com.scalar-labs:scalardb-sql-direct-mo
6868
dependencies {
6969
...
7070
71-
implementation 'com.scalar-labs:scalardb-cluster-java-client-sdk:3.12.2'
71+
implementation 'com.scalar-labs:scalardb-cluster-java-client-sdk:3.12.3'
7272
}
7373
```
7474

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

107107
To load a schema via ScalarDB Cluster SQL, you need to use the dedicated SQL CLI for ScalarDB Cluster (SQL CLI for Cluster).
108108
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.
109-
You can download the SQL CLI for Cluster from [ScalarDB Releases](https://github.com/scalar-labs/scalardb/releases/tag/v3.12.2).
109+
You can download the SQL CLI for Cluster from [ScalarDB Releases](https://github.com/scalar-labs/scalardb/releases/tag/v3.12.3).
110110
After downloading the JAR file, you can use SQL CLI for Cluster by running the following command:
111111

112112
```shell
113-
$ java -jar scalardb-cluster-sql-cli-3.12.2-all.jar --config scalardb-sql.properties --file schema.sql
113+
$ java -jar scalardb-cluster-sql-cli-3.12.3-all.jar --config scalardb-sql.properties --file schema.sql
114114
```
115115

116116
## Step 5. Load the initial data

docs/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
@@ -68,7 +68,7 @@ Then, delete the existing dependency for `com.scalar-labs:scalardb-sql-direct-mo
6868
dependencies {
6969
...
7070
71-
implementation 'com.scalar-labs:scalardb-cluster-java-client-sdk:3.12.2'
71+
implementation 'com.scalar-labs:scalardb-cluster-java-client-sdk:3.12.3'
7272
}
7373
```
7474

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

107107
To load a schema via ScalarDB Cluster SQL, you need to use the dedicated SQL CLI for ScalarDB Cluster (SQL CLI for Cluster).
108108
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.
109-
You can download the SQL CLI for Cluster from [ScalarDB Releases](https://github.com/scalar-labs/scalardb/releases/tag/v3.12.2).
109+
You can download the SQL CLI for Cluster from [ScalarDB Releases](https://github.com/scalar-labs/scalardb/releases/tag/v3.12.3).
110110
After downloading the JAR file, you can run SQL CLI for Cluster with the following command:
111111

112112
```shell
113-
$ java -jar scalardb-cluster-sql-cli-3.12.2-all.jar --config scalardb-sql.properties --file schema.sql
113+
$ java -jar scalardb-cluster-sql-cli-3.12.3-all.jar --config scalardb-sql.properties --file schema.sql
114114
```
115115

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

docs/scalardb-cluster/getting-started-with-scalardb-cluster.mdx

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -111,7 +111,7 @@ To use ScalarDB Cluster, open `build.gradle` in your preferred text editor. Then
111111
dependencies {
112112
...
113113
114-
implementation 'com.scalar-labs:scalardb-cluster-java-client-sdk:3.12.2'
114+
implementation 'com.scalar-labs:scalardb-cluster-java-client-sdk:3.12.3'
115115
}
116116
```
117117

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

158158
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).
159159

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

162162
Then, run the following command:
163163

164164
```console
165-
$ java -jar scalardb-cluster-schema-loader-3.12.2-all.jar --config database.properties -f schema.json --coordinator
165+
$ java -jar scalardb-cluster-schema-loader-3.12.3-all.jar --config database.properties -f schema.json --coordinator
166166
```
167167

168168
#### Schema details

docs/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
@@ -62,10 +62,10 @@ For details about the client modes, see [Developer Guide for ScalarDB Cluster wi
6262

6363
## Step 3. Load a schema
6464

65-
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.12.2). After downloading the JAR file, you can run the Schema Loader for Cluster with the following command:
65+
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.12.3). After downloading the JAR file, you can run the Schema Loader for Cluster with the following command:
6666

6767
```shell
68-
$ java -jar scalardb-cluster-schema-loader-3.12.2-all.jar --config database.properties -f schema.json --coordinator
68+
$ java -jar scalardb-cluster-schema-loader-3.12.3-all.jar --config database.properties -f schema.json --coordinator
6969
```
7070

7171
## Step 4. Set up a Go environment

docs/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
@@ -62,10 +62,10 @@ For details about the client modes, see [Developer Guide for ScalarDB Cluster wi
6262

6363
## Step 3. Load a schema
6464

65-
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.12.2). After downloading the JAR file, you can run the Schema Loader for Cluster with the following command:
65+
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.12.3). After downloading the JAR file, you can run the Schema Loader for Cluster with the following command:
6666

6767
```shell
68-
$ java -jar scalardb-cluster-schema-loader-3.12.2-all.jar --config database.properties -f schema.json --coordinator
68+
$ java -jar scalardb-cluster-schema-loader-3.12.3-all.jar --config database.properties -f schema.json --coordinator
6969
```
7070

7171
## Step 4. Set up a Python environment

docs/scalardb-cluster/standalone-mode/docker-compose.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ services:
1717

1818
scalardb-cluster-standalone:
1919
container_name: "scalardb-cluser-node"
20-
image: "ghcr.io/scalar-labs/scalardb-cluster-node:3.12.2"
20+
image: "ghcr.io/scalar-labs/scalardb-cluster-node:3.12.3"
2121
ports:
2222
- 60053:60053
2323
- 9080:9080

docs/scalardb-sql/index.mdx

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -88,10 +88,10 @@ To add a dependency on ScalarDB SQL using Gradle, use the following:
8888
```gradle
8989
dependencies {
9090
// For Direct mode
91-
implementation 'com.scalar-labs:scalardb-sql-direct-mode:3.12.2'
91+
implementation 'com.scalar-labs:scalardb-sql-direct-mode:3.12.3'
9292
9393
// For Server mode
94-
implementation 'com.scalar-labs:scalardb-sql-server-mode:3.12.2'
94+
implementation 'com.scalar-labs:scalardb-sql-server-mode:3.12.3'
9595
}
9696
```
9797

@@ -102,14 +102,14 @@ To add a dependency using Maven:
102102
<dependency>
103103
<groupId>com.scalar-labs</groupId>
104104
<artifactId>scalardb-sql-direct-mode</artifactId>
105-
<version>3.12.2</version>
105+
<version>3.12.3</version>
106106
</dependency>
107107

108108
<!-- For Server mode -->
109109
<dependency>
110110
<groupId>com.scalar-labs</groupId>
111111
<artifactId>scalardb-sql-server-mode</artifactId>
112-
<version>3.12.2</version>
112+
<version>3.12.3</version>
113113
</dependency>
114114
</dependencies>
115115
```

docs/scalardb-sql/jdbc-guide.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -214,4 +214,4 @@ Please see also [ScalarDB SQL API Guide](sql-api-guide.mdx) for more details on
214214

215215
- [Java JDBC API](https://docs.oracle.com/javase/8/docs/technotes/guides/jdbc/)
216216
- [ScalarDB SQL API Guide](sql-api-guide.mdx)
217-
- [Javadoc for ScalarDB JDBC](https://javadoc.io/doc/com.scalar-labs/scalardb-sql-jdbc/3.12.2/index.html)
217+
- [Javadoc for ScalarDB JDBC](https://javadoc.io/doc/com.scalar-labs/scalardb-sql-jdbc/3.12.3/index.html)

0 commit comments

Comments
 (0)