Skip to content

Commit 98854f9

Browse files
committed
AUTO: Sync ScalarDB docs in English to docs site repo
1 parent 34fc00b commit 98854f9

11 files changed

+35
-35
lines changed

versioned_docs/version-3.12/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
@@ -17,7 +17,7 @@ To add a dependency on the ScalarDB Cluster Java Client SDK by using Gradle, use
1717

1818
```gradle
1919
dependencies {
20-
implementation 'com.scalar-labs:scalardb-cluster-java-client-sdk:3.12.5'
20+
implementation 'com.scalar-labs:scalardb-cluster-java-client-sdk:3.12.7'
2121
}
2222
```
2323

@@ -27,7 +27,7 @@ To add a dependency by using Maven, use the following:
2727
<dependency>
2828
<groupId>com.scalar-labs</groupId>
2929
<artifactId>scalardb-cluster-java-client-sdk</artifactId>
30-
<version>3.12.5</version>
30+
<version>3.12.7</version>
3131
</dependency>
3232
```
3333

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

121121
To load a schema via ScalarDB Cluster, you need to use the dedicated Schema Loader for ScalarDB Cluster (Schema Loader for Cluster).
122122
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.
123-
You can download the Schema Loader for Cluster from [ScalarDB Releases](https://github.com/scalar-labs/scalardb/releases/tag/v3.12.5).
123+
You can download the Schema Loader for Cluster from [ScalarDB Releases](https://github.com/scalar-labs/scalardb/releases/tag/v3.12.7).
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.5-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_CONFIG_FILE> -f <PATH_TO_SCHEMA_FILE> --coordinator
128128
```
129129

130130
## ScalarDB Cluster SQL
@@ -164,8 +164,8 @@ To add the dependencies on the ScalarDB Cluster JDBC driver by using Gradle, use
164164

165165
```gradle
166166
dependencies {
167-
implementation 'com.scalar-labs:scalardb-sql-jdbc:3.12.5'
168-
implementation 'com.scalar-labs:scalardb-cluster-java-client-sdk:3.12.5'
167+
implementation 'com.scalar-labs:scalardb-sql-jdbc:3.12.7'
168+
implementation 'com.scalar-labs:scalardb-cluster-java-client-sdk:3.12.7'
169169
}
170170
```
171171

@@ -176,12 +176,12 @@ To add the dependencies by using Maven, use the following:
176176
<dependency>
177177
<groupId>com.scalar-labs</groupId>
178178
<artifactId>scalardb-sql-jdbc</artifactId>
179-
<version>3.12.5</version>
179+
<version>3.12.7</version>
180180
</dependency>
181181
<dependency>
182182
<groupId>com.scalar-labs</groupId>
183183
<artifactId>scalardb-cluster-java-client-sdk</artifactId>
184-
<version>3.12.5</version>
184+
<version>3.12.7</version>
185185
</dependency>
186186
</dependencies>
187187
```
@@ -199,8 +199,8 @@ To add the dependencies by using Gradle, use the following:
199199

200200
```gradle
201201
dependencies {
202-
implementation 'com.scalar-labs:scalardb-sql-spring-data:3.12.5'
203-
implementation 'com.scalar-labs:scalardb-cluster-java-client-sdk:3.12.5'
202+
implementation 'com.scalar-labs:scalardb-sql-spring-data:3.12.7'
203+
implementation 'com.scalar-labs:scalardb-cluster-java-client-sdk:3.12.7'
204204
}
205205
```
206206

@@ -211,12 +211,12 @@ To add the dependencies by using Maven, use the following:
211211
<dependency>
212212
<groupId>com.scalar-labs</groupId>
213213
<artifactId>scalardb-sql-spring-data</artifactId>
214-
<version>3.12.5</version>
214+
<version>3.12.7</version>
215215
</dependency>
216216
<dependency>
217217
<groupId>com.scalar-labs</groupId>
218218
<artifactId>scalardb-cluster-java-client-sdk</artifactId>
219-
<version>3.12.5</version>
219+
<version>3.12.7</version>
220220
</dependency>
221221
</dependencies>
222222
```
@@ -261,18 +261,18 @@ For details about how to configure Spring Data JDBC for ScalarDB, see [Configura
261261

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

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

266266
```console
267-
java -jar scalardb-cluster-sql-cli-3.12.5-all.jar --config <PATH_TO_CONFIG_FILE>
267+
java -jar scalardb-cluster-sql-cli-3.12.7-all.jar --config <PATH_TO_CONFIG_FILE>
268268
```
269269

270270
#### Usage
271271

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

274274
```console
275-
java -jar scalardb-cluster-sql-cli-3.12.5-all.jar -h
275+
java -jar scalardb-cluster-sql-cli-3.12.7-all.jar -h
276276
Usage: scalardb-sql-cli [-hs] -c=PROPERTIES_FILE [-e=COMMAND] [-f=FILE]
277277
[-l=LOG_FILE] [-o=<outputFormat>] [-p=PASSWORD]
278278
[-u=USERNAME]
@@ -303,6 +303,6 @@ For details about the ScalarDB Cluster gRPC API, refer to the following:
303303

304304
JavaDocs are also available:
305305

306-
* [ScalarDB Cluster Java Client SDK](https://javadoc.io/doc/com.scalar-labs/scalardb-cluster-java-client-sdk/3.12.5/index.html)
307-
* [ScalarDB Cluster Common](https://javadoc.io/doc/com.scalar-labs/scalardb-cluster-common/3.12.5/index.html)
308-
* [ScalarDB Cluster RPC](https://javadoc.io/doc/com.scalar-labs/scalardb-cluster-rpc/3.12.5/index.html)
306+
* [ScalarDB Cluster Java Client SDK](https://javadoc.io/doc/com.scalar-labs/scalardb-cluster-java-client-sdk/3.12.7/index.html)
307+
* [ScalarDB Cluster Common](https://javadoc.io/doc/com.scalar-labs/scalardb-cluster-common/3.12.7/index.html)
308+
* [ScalarDB Cluster RPC](https://javadoc.io/doc/com.scalar-labs/scalardb-cluster-rpc/3.12.7/index.html)

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

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

108108
To load a schema via ScalarDB Cluster, you need to use the dedicated Schema Loader for ScalarDB Cluster (Schema Loader for Cluster).
109109
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.
110-
You can download the Schema Loader for Cluster from [ScalarDB Releases](https://github.com/scalar-labs/scalardb/releases/tag/v3.12.5).
110+
You can download the Schema Loader for Cluster from [ScalarDB Releases](https://github.com/scalar-labs/scalardb/releases/tag/v3.12.7).
111111
After downloading the JAR file, you can run the Schema Loader for Cluster with the following command:
112112

113113
```console
114-
java -jar scalardb-cluster-schema-loader-3.12.5-all.jar --config database.properties -f schema.json --coordinator
114+
java -jar scalardb-cluster-schema-loader-3.12.7-all.jar --config database.properties -f schema.json --coordinator
115115
```
116116

117117
## Step 4. Run operations from GraphiQL

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

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

8686
## Step 3. Load a schema
8787

88-
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.12.5). After downloading the JAR file, you can use SQL CLI for Cluster by running the following command:
88+
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.12.7). After downloading the JAR file, you can use SQL CLI for Cluster by running the following command:
8989

9090
```console
91-
java -jar scalardb-cluster-sql-cli-3.12.5-all.jar --config scalardb-sql.properties --file schema.sql
91+
java -jar scalardb-cluster-sql-cli-3.12.7-all.jar --config scalardb-sql.properties --file schema.sql
9292
```
9393

9494
## Step 4. Load the initial data

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

8686
## Step 3. Load a schema
8787

88-
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.12.5). After downloading the JAR file, you can use SQL CLI for Cluster by running the following command:
88+
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.12.7). After downloading the JAR file, you can use SQL CLI for Cluster by running the following command:
8989

9090
```console
91-
java -jar scalardb-cluster-sql-cli-3.12.5-all.jar --config scalardb-sql.properties --file schema.sql
91+
java -jar scalardb-cluster-sql-cli-3.12.7-all.jar --config scalardb-sql.properties --file schema.sql
9292
```
9393

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

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

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

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

166166
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).
167167

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

170170
Then, run the following command:
171171

172172
```console
173-
java -jar scalardb-cluster-schema-loader-3.12.5-all.jar --config database.properties -f schema.json --coordinator
173+
java -jar scalardb-cluster-schema-loader-3.12.7-all.jar --config database.properties -f schema.json --coordinator
174174
```
175175

176176
#### Schema details

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

7373
## Step 3. Load a schema
7474

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

7777
```console
78-
java -jar scalardb-cluster-schema-loader-3.12.5-all.jar --config database.properties -f schema.json --coordinator
78+
java -jar scalardb-cluster-schema-loader-3.12.7-all.jar --config database.properties -f schema.json --coordinator
7979
```
8080

8181
## Step 4. Set up a Go environment

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

7373
## Step 3. Load a schema
7474

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

7777
```console
78-
java -jar scalardb-cluster-schema-loader-3.12.5-all.jar --config database.properties -f schema.json --coordinator
78+
java -jar scalardb-cluster-schema-loader-3.12.7-all.jar --config database.properties -f schema.json --coordinator
7979
```
8080

8181
## Step 4. Set up a Python environment

versioned_docs/version-3.12/scalardb-cluster/setup-scalardb-cluster-on-kubernetes-by-using-helm-chart.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -169,7 +169,7 @@ You can deploy PostgreSQL on the Kubernetes cluster as follows.
169169
5. Set the chart version of ScalarDB Cluster.
170170

171171
```console
172-
SCALAR_DB_CLUSTER_VERSION=3.12.5
172+
SCALAR_DB_CLUSTER_VERSION=3.12.7
173173
SCALAR_DB_CLUSTER_CHART_VERSION=$(helm search repo scalar-labs/scalardb-cluster -l | grep -F "${SCALAR_DB_CLUSTER_VERSION}" | awk '{print $2}' | sort --version-sort -r | head -n 1)
174174
```
175175

versioned_docs/version-3.12/scalardb-sql/jdbc-guide.mdx

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

192192
- [Java JDBC API](https://docs.oracle.com/javase/8/docs/technotes/guides/jdbc/)
193193
- [ScalarDB SQL API Guide](sql-api-guide.mdx)
194-
- [Javadoc for ScalarDB JDBC](https://javadoc.io/doc/com.scalar-labs/scalardb-sql-jdbc/3.12.5/index.html)
194+
- [Javadoc for ScalarDB JDBC](https://javadoc.io/doc/com.scalar-labs/scalardb-sql-jdbc/3.12.7/index.html)

versioned_docs/version-3.12/scalardb-sql/spring-data-guide.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -805,4 +805,4 @@ In order to use Spring Data JDBC for ScalarDB, the following features are implem
805805

806806
- [Spring Data JDBC - Reference Documentation](https://docs.spring.io/spring-data/jdbc/docs/3.0.x/reference/html/)
807807
- [ScalarDB JDBC Guide](jdbc-guide.mdx)
808-
- [Javadoc for Spring Data JDBC for ScalarDB](https://javadoc.io/doc/com.scalar-labs/scalardb-sql-spring-data/3.12.5/index.html)
808+
- [Javadoc for Spring Data JDBC for ScalarDB](https://javadoc.io/doc/com.scalar-labs/scalardb-sql-spring-data/3.12.7/index.html)

0 commit comments

Comments
 (0)