From fa1ddd409b51c742180ea0a4305d926dc16f35c1 Mon Sep 17 00:00:00 2001 From: josh-wong Date: Wed, 10 Dec 2025 06:08:11 +0000 Subject: [PATCH] AUTO: Sync ScalarDB docs in English to docs site repo --- ...nal-storage-operations-through-library.mdx | 6 +-- docs/scalardb-analytics/configurations.mdx | 4 +- docs/scalardb-analytics/deployment-local.mdx | 2 +- .../run-analytical-queries.mdx | 4 +- ...ide-for-scalardb-cluster-with-java-api.mdx | 40 +++++++++---------- .../scalardb-cluster/encrypt-data-at-rest.mdx | 4 +- ...-started-with-scalardb-cluster-graphql.mdx | 4 +- ...started-with-scalardb-cluster-sql-jdbc.mdx | 4 +- ...-scalardb-cluster-sql-spring-data-jdbc.mdx | 4 +- .../getting-started-with-scalardb-cluster.mdx | 6 +-- ...ted-with-using-go-for-scalardb-cluster.mdx | 4 +- ...with-using-python-for-scalardb-cluster.mdx | 4 +- .../getting-started-with-vector-search.mdx | 8 ++-- ...ge-operations-through-scalardb-cluster.mdx | 6 +-- ...orage-operations-through-sql-interface.mdx | 18 ++++----- .../scalardb-auth-with-sql.mdx | 10 ++--- ...ster-on-kubernetes-by-using-helm-chart.mdx | 2 +- docs/scalardb-sql/jdbc-guide.mdx | 2 +- docs/scalardb-sql/spring-data-guide.mdx | 2 +- docs/scalardb-sql/sql-api-guide.mdx | 2 +- 20 files changed, 68 insertions(+), 68 deletions(-) diff --git a/docs/run-non-transactional-storage-operations-through-library.mdx b/docs/run-non-transactional-storage-operations-through-library.mdx index 349394d25..1002ea5d5 100644 --- a/docs/run-non-transactional-storage-operations-through-library.mdx +++ b/docs/run-non-transactional-storage-operations-through-library.mdx @@ -313,7 +313,7 @@ Select your build tool, and follow the instructions to add the build dependency ```gradle dependencies { - implementation 'com.scalar-labs:scalardb:3.17.0' + implementation 'com.scalar-labs:scalardb:3.17.1' } ``` @@ -324,7 +324,7 @@ Select your build tool, and follow the instructions to add the build dependency com.scalar-labs scalardb - 3.17.0 + 3.17.1 ``` @@ -345,4 +345,4 @@ The following limitations apply to non-transactional storage operations: ### Learn more -- [Javadoc](https://javadoc.io/doc/com.scalar-labs/scalardb/3.17.0/index.html) +- [Javadoc](https://javadoc.io/doc/com.scalar-labs/scalardb/3.17.1/index.html) diff --git a/docs/scalardb-analytics/configurations.mdx b/docs/scalardb-analytics/configurations.mdx index 081458464..eeaeaaaac 100644 --- a/docs/scalardb-analytics/configurations.mdx +++ b/docs/scalardb-analytics/configurations.mdx @@ -284,7 +284,7 @@ scalar.db.analytics.client.server.host=localhost #### Spark configuration (`spark-defaults.conf`) ```properties -spark.jars.packages com.scalar-labs:scalardb-analytics-spark-all-3.5_2.12:3.17.0 +spark.jars.packages com.scalar-labs:scalardb-analytics-spark-all-3.5_2.12:3.17.1 spark.extraListeners com.scalar.db.analytics.spark.metering.ScalarDbAnalyticsListener spark.sql.catalog.analytics com.scalar.db.analytics.spark.ScalarDbAnalyticsCatalog spark.sql.catalog.analytics.server.host localhost @@ -334,7 +334,7 @@ scalar.db.analytics.client.server.tls.ca_root_cert_path=/path/to/cert.pem #### Spark configuration (`spark-defaults.conf`) ```properties -spark.jars.packages com.scalar-labs:scalardb-analytics-spark-all-3.5_2.12:3.17.0 +spark.jars.packages com.scalar-labs:scalardb-analytics-spark-all-3.5_2.12:3.17.1 spark.extraListeners com.scalar.db.analytics.spark.metering.ScalarDbAnalyticsListener spark.sql.catalog.analytics com.scalar.db.analytics.spark.ScalarDbAnalyticsCatalog spark.sql.catalog.analytics.server.host analytics.example.com diff --git a/docs/scalardb-analytics/deployment-local.mdx b/docs/scalardb-analytics/deployment-local.mdx index a48f4b853..6f39aefe4 100644 --- a/docs/scalardb-analytics/deployment-local.mdx +++ b/docs/scalardb-analytics/deployment-local.mdx @@ -159,7 +159,7 @@ metadata: spec: containers: - name: analytics-server-cli - image: ghcr.io/scalar-labs/scalardb-analytics-cli:3.17.0 + image: ghcr.io/scalar-labs/scalardb-analytics-cli:3.17.1 command: ['sleep'] args: ['inf'] restartPolicy: Never diff --git a/docs/scalardb-analytics/run-analytical-queries.mdx b/docs/scalardb-analytics/run-analytical-queries.mdx index 70788e419..dca2ff3be 100644 --- a/docs/scalardb-analytics/run-analytical-queries.mdx +++ b/docs/scalardb-analytics/run-analytical-queries.mdx @@ -58,7 +58,7 @@ The following describes what you should change the content in the angle brackets - ``: Your Spark version (for example, `3.5` or `3.4`) - ``: Your Scala version (for example, `2.13` or `2.12`) -- ``: The ScalarDB Analytics version (for example, `3.17.0`) +- ``: The ScalarDB Analytics version (for example, `3.17.1`) In this example: @@ -177,7 +177,7 @@ The following describes what you should change the content in the angle brackets - ``: The major and minor version of Scala that matches your Spark installation (`2.12` or `2.13`) - ``: The full version of Spark you are using (for example, `3.5.7`) - ``: The major and minor version of Spark you are using (`3.4` or `3.5`) -- ``: The version of ScalarDB Analytics (for example, `3.17.0`) +- ``: The version of ScalarDB Analytics (for example, `3.17.1`) :::note diff --git a/docs/scalardb-cluster/developer-guide-for-scalardb-cluster-with-java-api.mdx b/docs/scalardb-cluster/developer-guide-for-scalardb-cluster-with-java-api.mdx index 3c930b0a9..dc0858890 100644 --- a/docs/scalardb-cluster/developer-guide-for-scalardb-cluster-with-java-api.mdx +++ b/docs/scalardb-cluster/developer-guide-for-scalardb-cluster-with-java-api.mdx @@ -18,7 +18,7 @@ To add a dependency on the ScalarDB Cluster Java Client SDK by using Gradle, use ```gradle dependencies { - implementation 'com.scalar-labs:scalardb-cluster-java-client-sdk:3.17.0' + implementation 'com.scalar-labs:scalardb-cluster-java-client-sdk:3.17.1' } ``` @@ -28,7 +28,7 @@ To add a dependency by using Maven, use the following: com.scalar-labs scalardb-cluster-java-client-sdk - 3.17.0 + 3.17.1 ``` @@ -94,17 +94,17 @@ The following section describes the Schema Loader for ScalarDB Cluster. 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 [ScalarDB Schema Loader](../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.17.0). +You can download the Schema Loader for Cluster from [ScalarDB Releases](https://github.com/scalar-labs/scalardb/releases/tag/v3.17.1). After downloading the JAR file, you can run Schema Loader for Cluster with the following command: ```console -java -jar scalardb-cluster-schema-loader-3.17.0-all.jar --config --schema-file --coordinator +java -jar scalardb-cluster-schema-loader-3.17.1-all.jar --config --schema-file --coordinator ``` 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: ```console -docker run --rm -v :/scalardb.properties -v :/schema.json ghcr.io/scalar-labs/scalardb-cluster-schema-loader:3.17.0 --config /scalardb.properties --schema-file /schema.json --coordinator +docker run --rm -v :/scalardb.properties -v :/schema.json ghcr.io/scalar-labs/scalardb-cluster-schema-loader:3.17.1 --config /scalardb.properties --schema-file /schema.json --coordinator ``` ## ScalarDB Cluster SQL @@ -144,8 +144,8 @@ To add the dependencies on the ScalarDB Cluster JDBC driver by using Gradle, use ```gradle dependencies { - implementation 'com.scalar-labs:scalardb-sql-jdbc:3.17.0' - implementation 'com.scalar-labs:scalardb-cluster-java-client-sdk:3.17.0' + implementation 'com.scalar-labs:scalardb-sql-jdbc:3.17.1' + implementation 'com.scalar-labs:scalardb-cluster-java-client-sdk:3.17.1' } ``` @@ -156,12 +156,12 @@ To add the dependencies by using Maven, use the following: com.scalar-labs scalardb-sql-jdbc - 3.17.0 + 3.17.1 com.scalar-labs scalardb-cluster-java-client-sdk - 3.17.0 + 3.17.1 ``` @@ -179,8 +179,8 @@ To add the dependencies by using Gradle, use the following: ```gradle dependencies { - implementation 'com.scalar-labs:scalardb-sql-spring-data:3.17.0' - implementation 'com.scalar-labs:scalardb-cluster-java-client-sdk:3.17.0' + implementation 'com.scalar-labs:scalardb-sql-spring-data:3.17.1' + implementation 'com.scalar-labs:scalardb-cluster-java-client-sdk:3.17.1' } ``` @@ -191,12 +191,12 @@ To add the dependencies by using Maven, use the following: com.scalar-labs scalardb-sql-spring-data - 3.17.0 + 3.17.1 com.scalar-labs scalardb-cluster-java-client-sdk - 3.17.0 + 3.17.1 ``` @@ -208,16 +208,16 @@ For details about Spring Data JDBC for ScalarDB, see [Guide of Spring Data JDBC Like other SQL databases, ScalarDB SQL also provides a CLI tool where you can issue SQL statements interactively in a command-line shell. -You can download the SQL CLI for Cluster from [ScalarDB Releases](https://github.com/scalar-labs/scalardb/releases/tag/v3.17.0). After downloading the JAR file, you can run the SQL CLI with the following command: +You can download the SQL CLI for Cluster from [ScalarDB Releases](https://github.com/scalar-labs/scalardb/releases/tag/v3.17.1). After downloading the JAR file, you can run the SQL CLI with the following command: ```console -java -jar scalardb-cluster-sql-cli-3.17.0-all.jar --config +java -jar scalardb-cluster-sql-cli-3.17.1-all.jar --config ``` 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: ```console -docker run --rm -it -v :/scalardb-sql.properties ghcr.io/scalar-labs/scalardb-cluster-sql-cli:3.17.0 --config /scalardb-sql.properties +docker run --rm -it -v :/scalardb-sql.properties ghcr.io/scalar-labs/scalardb-cluster-sql-cli:3.17.1 --config /scalardb-sql.properties ``` #### Usage @@ -225,7 +225,7 @@ docker run --rm -it -v :/scalar You can see the CLI usage with the `-h` option as follows: ```console -java -jar scalardb-cluster-sql-cli-3.17.0-all.jar -h +java -jar scalardb-cluster-sql-cli-3.17.1-all.jar -h Usage: scalardb-sql-cli [-hs] -c=PROPERTIES_FILE [-e=COMMAND] [-f=FILE] [-l=LOG_FILE] [-o=] [-p=PASSWORD] [-u=USERNAME] @@ -256,6 +256,6 @@ For details about the ScalarDB Cluster gRPC API, refer to the following: JavaDocs are also available: -* [ScalarDB Cluster Java Client SDK](https://javadoc.io/doc/com.scalar-labs/scalardb-cluster-java-client-sdk/3.17.0/index.html) -* [ScalarDB Cluster Common](https://javadoc.io/doc/com.scalar-labs/scalardb-cluster-common/3.17.0/index.html) -* [ScalarDB Cluster RPC](https://javadoc.io/doc/com.scalar-labs/scalardb-cluster-rpc/3.17.0/index.html) +* [ScalarDB Cluster Java Client SDK](https://javadoc.io/doc/com.scalar-labs/scalardb-cluster-java-client-sdk/3.17.1/index.html) +* [ScalarDB Cluster Common](https://javadoc.io/doc/com.scalar-labs/scalardb-cluster-common/3.17.1/index.html) +* [ScalarDB Cluster RPC](https://javadoc.io/doc/com.scalar-labs/scalardb-cluster-rpc/3.17.1/index.html) diff --git a/docs/scalardb-cluster/encrypt-data-at-rest.mdx b/docs/scalardb-cluster/encrypt-data-at-rest.mdx index d3e42a610..cd8056d2d 100644 --- a/docs/scalardb-cluster/encrypt-data-at-rest.mdx +++ b/docs/scalardb-cluster/encrypt-data-at-rest.mdx @@ -185,7 +185,7 @@ services: scalardb-cluster-standalone: container_name: "scalardb-cluster-node" - image: "ghcr.io/scalar-labs/scalardb-cluster-node-byol-premium:3.17.0" + image: "ghcr.io/scalar-labs/scalardb-cluster-node-byol-premium:3.17.1" ports: - 60053:60053 - 9080:9080 @@ -243,7 +243,7 @@ scalar.db.sql.cluster_mode.contact_points=indirect:localhost Then, start the SQL CLI by running the following command. ```console -java -jar scalardb-cluster-sql-cli-3.17.0-all.jar --config scalardb-cluster-sql-cli.properties +java -jar scalardb-cluster-sql-cli-3.17.1-all.jar --config scalardb-cluster-sql-cli.properties ``` To begin, create the Coordinator tables required for ScalarDB transaction execution. diff --git a/docs/scalardb-cluster/getting-started-with-scalardb-cluster-graphql.mdx b/docs/scalardb-cluster/getting-started-with-scalardb-cluster-graphql.mdx index a860ad12f..58ce06e8c 100644 --- a/docs/scalardb-cluster/getting-started-with-scalardb-cluster-graphql.mdx +++ b/docs/scalardb-cluster/getting-started-with-scalardb-cluster-graphql.mdx @@ -108,11 +108,11 @@ For details about the client modes, see [Developer Guide for ScalarDB Cluster wi 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.17.0). +You can download the Schema Loader for Cluster from [ScalarDB Releases](https://github.com/scalar-labs/scalardb/releases/tag/v3.17.1). After downloading the JAR file, you can run the Schema Loader for Cluster with the following command: ```console -java -jar scalardb-cluster-schema-loader-3.17.0-all.jar --config database.properties -f schema.json --coordinator +java -jar scalardb-cluster-schema-loader-3.17.1-all.jar --config database.properties -f schema.json --coordinator ``` ## Step 4. Run operations from GraphiQL diff --git a/docs/scalardb-cluster/getting-started-with-scalardb-cluster-sql-jdbc.mdx b/docs/scalardb-cluster/getting-started-with-scalardb-cluster-sql-jdbc.mdx index 6b8b55a04..de259dd25 100644 --- a/docs/scalardb-cluster/getting-started-with-scalardb-cluster-sql-jdbc.mdx +++ b/docs/scalardb-cluster/getting-started-with-scalardb-cluster-sql-jdbc.mdx @@ -86,10 +86,10 @@ For details about the client modes, see [Developer Guide for ScalarDB Cluster wi ## Step 3. Load a schema -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.17.0). After downloading the JAR file, you can use SQL CLI for Cluster by running the following command: +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.17.1). After downloading the JAR file, you can use SQL CLI for Cluster by running the following command: ```console -java -jar scalardb-cluster-sql-cli-3.17.0-all.jar --config scalardb-sql.properties --file schema.sql +java -jar scalardb-cluster-sql-cli-3.17.1-all.jar --config scalardb-sql.properties --file schema.sql ``` ## Step 4. Load the initial data diff --git a/docs/scalardb-cluster/getting-started-with-scalardb-cluster-sql-spring-data-jdbc.mdx b/docs/scalardb-cluster/getting-started-with-scalardb-cluster-sql-spring-data-jdbc.mdx index f17a670ea..e7fa292ce 100644 --- a/docs/scalardb-cluster/getting-started-with-scalardb-cluster-sql-spring-data-jdbc.mdx +++ b/docs/scalardb-cluster/getting-started-with-scalardb-cluster-sql-spring-data-jdbc.mdx @@ -86,10 +86,10 @@ For details about the client modes, see [Developer Guide for ScalarDB Cluster wi ## Step 3. Load a schema -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.17.0). After downloading the JAR file, you can use SQL CLI for Cluster by running the following command: +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.17.1). After downloading the JAR file, you can use SQL CLI for Cluster by running the following command: ```console -java -jar scalardb-cluster-sql-cli-3.17.0-all.jar --config scalardb-sql.properties --file schema.sql +java -jar scalardb-cluster-sql-cli-3.17.1-all.jar --config scalardb-sql.properties --file schema.sql ``` ## Step 4. Modify `application.properties` diff --git a/docs/scalardb-cluster/getting-started-with-scalardb-cluster.mdx b/docs/scalardb-cluster/getting-started-with-scalardb-cluster.mdx index 11bb24890..cce63c07f 100644 --- a/docs/scalardb-cluster/getting-started-with-scalardb-cluster.mdx +++ b/docs/scalardb-cluster/getting-started-with-scalardb-cluster.mdx @@ -120,7 +120,7 @@ To use ScalarDB Cluster, open `build.gradle` in your preferred text editor. Then dependencies { ... - implementation 'com.scalar-labs:scalardb-cluster-java-client-sdk:3.17.0' + implementation 'com.scalar-labs:scalardb-cluster-java-client-sdk:3.17.1' } ``` @@ -166,12 +166,12 @@ For details about the client modes, see [Developer Guide for ScalarDB Cluster wi 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). -To apply the schema, go to [ScalarDB Releases](https://github.com/scalar-labs/scalardb/releases/tag/v3.17.0) and download the ScalarDB Cluster Schema Loader to the `scalardb-samples/scalardb-sample` folder. +To apply the schema, go to [ScalarDB Releases](https://github.com/scalar-labs/scalardb/releases/tag/v3.17.1) and download the ScalarDB Cluster Schema Loader to the `scalardb-samples/scalardb-sample` folder. Then, run the following command: ```console -java -jar scalardb-cluster-schema-loader-3.17.0-all.jar --config database.properties -f schema.json --coordinator +java -jar scalardb-cluster-schema-loader-3.17.1-all.jar --config database.properties -f schema.json --coordinator ``` #### Schema details diff --git a/docs/scalardb-cluster/getting-started-with-using-go-for-scalardb-cluster.mdx b/docs/scalardb-cluster/getting-started-with-using-go-for-scalardb-cluster.mdx index 8320bb3c0..743e2e2d7 100644 --- a/docs/scalardb-cluster/getting-started-with-using-go-for-scalardb-cluster.mdx +++ b/docs/scalardb-cluster/getting-started-with-using-go-for-scalardb-cluster.mdx @@ -73,10 +73,10 @@ For details about the client modes, see [Developer Guide for ScalarDB Cluster wi ## Step 3. Load a schema -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.17.0). After downloading the JAR file, you can run the Schema Loader for Cluster with the following command: +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.17.1). After downloading the JAR file, you can run the Schema Loader for Cluster with the following command: ```console -java -jar scalardb-cluster-schema-loader-3.17.0-all.jar --config database.properties -f schema.json --coordinator +java -jar scalardb-cluster-schema-loader-3.17.1-all.jar --config database.properties -f schema.json --coordinator ``` ## Step 4. Set up a Go environment diff --git a/docs/scalardb-cluster/getting-started-with-using-python-for-scalardb-cluster.mdx b/docs/scalardb-cluster/getting-started-with-using-python-for-scalardb-cluster.mdx index 9ce753fcc..43d19e54f 100644 --- a/docs/scalardb-cluster/getting-started-with-using-python-for-scalardb-cluster.mdx +++ b/docs/scalardb-cluster/getting-started-with-using-python-for-scalardb-cluster.mdx @@ -73,10 +73,10 @@ For details about the client modes, see [Developer Guide for ScalarDB Cluster wi ## Step 3. Load a schema -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.17.0). After downloading the JAR file, you can run the Schema Loader for Cluster with the following command: +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.17.1). After downloading the JAR file, you can run the Schema Loader for Cluster with the following command: ```console -java -jar scalardb-cluster-schema-loader-3.17.0-all.jar --config database.properties -f schema.json --coordinator +java -jar scalardb-cluster-schema-loader-3.17.1-all.jar --config database.properties -f schema.json --coordinator ``` ## Step 4. Set up a Python environment diff --git a/docs/scalardb-cluster/getting-started-with-vector-search.mdx b/docs/scalardb-cluster/getting-started-with-vector-search.mdx index 23a73534b..2044e1890 100644 --- a/docs/scalardb-cluster/getting-started-with-vector-search.mdx +++ b/docs/scalardb-cluster/getting-started-with-vector-search.mdx @@ -419,7 +419,7 @@ Create the following configuration file as `docker-compose.yaml`. services: scalardb-cluster-standalone: container_name: "scalardb-cluster-node" - image: "ghcr.io/scalar-labs/scalardb-cluster-node-byol-premium:3.17.0" + image: "ghcr.io/scalar-labs/scalardb-cluster-node-byol-premium:3.17.1" ports: - 60053:60053 - 9080:9080 @@ -449,7 +449,7 @@ Select your build tool, and follow the instructions to add the build dependency ```gradle dependencies { - implementation 'com.scalar-labs:scalardb-cluster-embedding-java-client-sdk:3.17.0' + implementation 'com.scalar-labs:scalardb-cluster-embedding-java-client-sdk:3.17.1' } ``` @@ -460,7 +460,7 @@ Select your build tool, and follow the instructions to add the build dependency com.scalar-labs scalardb-cluster-embedding-java-client-sdk - 3.17.0 + 3.17.1 ``` @@ -556,4 +556,4 @@ The `ScalarDbEmbeddingClientFactory` instance should be closed after use to rele The vector search feature is currently in Public Preview. For more details, please [contact us](https://www.scalar-labs.com/contact). -- [Javadoc](https://javadoc.io/doc/com.scalar-labs/scalardb-cluster-embedding-java-client-sdk/3.17.0/index.html) +- [Javadoc](https://javadoc.io/doc/com.scalar-labs/scalardb-cluster-embedding-java-client-sdk/3.17.1/index.html) diff --git a/docs/scalardb-cluster/run-non-transactional-storage-operations-through-scalardb-cluster.mdx b/docs/scalardb-cluster/run-non-transactional-storage-operations-through-scalardb-cluster.mdx index 2c9a5ba9a..b2a567bc8 100644 --- a/docs/scalardb-cluster/run-non-transactional-storage-operations-through-scalardb-cluster.mdx +++ b/docs/scalardb-cluster/run-non-transactional-storage-operations-through-scalardb-cluster.mdx @@ -353,7 +353,7 @@ Select your build tool, and follow the instructions to add the build dependency ```gradle dependencies { - implementation 'com.scalar-labs:scalardb-cluster-java-client-sdk:3.17.0' + implementation 'com.scalar-labs:scalardb-cluster-java-client-sdk:3.17.1' } ``` @@ -364,7 +364,7 @@ Select your build tool, and follow the instructions to add the build dependency com.scalar-labs scalardb-cluster-java-client-sdk - 3.17.0 + 3.17.1 ``` @@ -389,5 +389,5 @@ The following limitations apply to non-transactional storage operations: ### Learn more -- [Javadoc](https://javadoc.io/doc/com.scalar-labs/scalardb/3.17.0/index.html) +- [Javadoc](https://javadoc.io/doc/com.scalar-labs/scalardb/3.17.1/index.html) - [Developer Guide for ScalarDB Cluster with the Java API](developer-guide-for-scalardb-cluster-with-java-api.mdx) diff --git a/docs/scalardb-cluster/run-non-transactional-storage-operations-through-sql-interface.mdx b/docs/scalardb-cluster/run-non-transactional-storage-operations-through-sql-interface.mdx index 0d79833c0..1e5204cc1 100644 --- a/docs/scalardb-cluster/run-non-transactional-storage-operations-through-sql-interface.mdx +++ b/docs/scalardb-cluster/run-non-transactional-storage-operations-through-sql-interface.mdx @@ -289,8 +289,8 @@ Data Loader is currently built upon ScalarDB Core, so it can only import and exp ```gradle dependencies { - implementation 'com.scalar-labs:scalardb-sql-jdbc:3.17.0' - implementation 'com.scalar-labs:scalardb-cluster-java-client-sdk:3.17.0' + implementation 'com.scalar-labs:scalardb-sql-jdbc:3.17.1' + implementation 'com.scalar-labs:scalardb-cluster-java-client-sdk:3.17.1' } ``` @@ -302,12 +302,12 @@ Data Loader is currently built upon ScalarDB Core, so it can only import and exp com.scalar-labs scalardb-sql-jdbc - 3.17.0 + 3.17.1 com.scalar-labs scalardb-cluster-java-client-sdk - 3.17.0 + 3.17.1 ``` @@ -354,8 +354,8 @@ The following limitations apply to non-transactional storage operations: ```gradle dependencies { - implementation 'com.scalar-labs:scalardb-sql:3.17.0' - implementation 'com.scalar-labs:scalardb-cluster-java-client-sdk:3.17.0' + implementation 'com.scalar-labs:scalardb-sql:3.17.1' + implementation 'com.scalar-labs:scalardb-cluster-java-client-sdk:3.17.1' } ``` @@ -367,12 +367,12 @@ The following limitations apply to non-transactional storage operations: com.scalar-labs scalardb-sql - 3.17.0 + 3.17.1 com.scalar-labs scalardb-cluster-java-client-sdk - 3.17.0 + 3.17.1 ``` @@ -400,7 +400,7 @@ The following limitations apply to non-transactional storage operations:

Learn more

- - [Javadoc](https://javadoc.io/doc/com.scalar-labs/scalardb-sql/3.17.0/index.html) + - [Javadoc](https://javadoc.io/doc/com.scalar-labs/scalardb-sql/3.17.1/index.html) diff --git a/docs/scalardb-cluster/scalardb-auth-with-sql.mdx b/docs/scalardb-cluster/scalardb-auth-with-sql.mdx index f7b942f7a..541849096 100644 --- a/docs/scalardb-cluster/scalardb-auth-with-sql.mdx +++ b/docs/scalardb-cluster/scalardb-auth-with-sql.mdx @@ -220,7 +220,7 @@ services: scalardb-cluster-standalone: container_name: "scalardb-cluster-node" - image: "ghcr.io/scalar-labs/scalardb-cluster-node-byol-premium:3.17.0" + image: "ghcr.io/scalar-labs/scalardb-cluster-node-byol-premium:3.17.1" ports: - 60053:60053 - 9080:9080 @@ -258,7 +258,7 @@ scalar.db.cluster.auth.enabled=true Then, start the SQL CLI by running the following command. ```console -java -jar scalardb-cluster-sql-cli-3.17.0-all.jar --config scalardb-cluster-sql-cli.properties +java -jar scalardb-cluster-sql-cli-3.17.1-all.jar --config scalardb-cluster-sql-cli.properties ``` Enter the username and password as `admin` and `admin`, respectively. @@ -347,7 +347,7 @@ You can see that `user1` has been granted the `SELECT`, `INSERT`, and `UPDATE` p Log in as `user1` and execute SQL statements. ```console -java -jar scalardb-cluster-sql-cli-3.17.0-all.jar --config scalardb-cluster-sql-cli.properties +java -jar scalardb-cluster-sql-cli-3.17.1-all.jar --config scalardb-cluster-sql-cli.properties ``` Enter the username and password as `user1` and `user1`, respectively. @@ -395,7 +395,7 @@ You will see the above error message because `user1` doesn't have the `DELETE` p Log in as `admin` to create and manage roles. ```console -java -jar scalardb-cluster-sql-cli-3.17.0-all.jar --config scalardb-cluster-sql-cli.properties +java -jar scalardb-cluster-sql-cli-3.17.1-all.jar --config scalardb-cluster-sql-cli.properties ``` Enter the username and password as `admin` and `admin`, respectively. @@ -470,7 +470,7 @@ SHOW GRANTS FOR user1; Now, log in as `user1` and try the `DELETE` statement again. ```console -java -jar scalardb-cluster-sql-cli-3.17.0-all.jar --config scalardb-cluster-sql-cli.properties +java -jar scalardb-cluster-sql-cli-3.17.1-all.jar --config scalardb-cluster-sql-cli.properties ``` Enter the username and password as `user1` and `user1`, respectively. diff --git a/docs/scalardb-cluster/setup-scalardb-cluster-on-kubernetes-by-using-helm-chart.mdx b/docs/scalardb-cluster/setup-scalardb-cluster-on-kubernetes-by-using-helm-chart.mdx index 0bf2bed35..378345a8f 100644 --- a/docs/scalardb-cluster/setup-scalardb-cluster-on-kubernetes-by-using-helm-chart.mdx +++ b/docs/scalardb-cluster/setup-scalardb-cluster-on-kubernetes-by-using-helm-chart.mdx @@ -170,7 +170,7 @@ You can deploy PostgreSQL on the Kubernetes cluster as follows. 5. Set the chart version of ScalarDB Cluster. ```console - SCALAR_DB_CLUSTER_VERSION=3.17.0 + SCALAR_DB_CLUSTER_VERSION=3.17.1 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) ``` diff --git a/docs/scalardb-sql/jdbc-guide.mdx b/docs/scalardb-sql/jdbc-guide.mdx index 26a5e667c..93f0e58a5 100644 --- a/docs/scalardb-sql/jdbc-guide.mdx +++ b/docs/scalardb-sql/jdbc-guide.mdx @@ -221,4 +221,4 @@ Please see also [ScalarDB SQL API Guide](sql-api-guide.mdx) for more details on - [Java JDBC API](https://docs.oracle.com/javase/8/docs/technotes/guides/jdbc/) - [ScalarDB SQL API Guide](sql-api-guide.mdx) -- [Javadoc for ScalarDB JDBC](https://javadoc.io/doc/com.scalar-labs/scalardb-sql-jdbc/3.17.0/index.html) +- [Javadoc for ScalarDB JDBC](https://javadoc.io/doc/com.scalar-labs/scalardb-sql-jdbc/3.17.1/index.html) diff --git a/docs/scalardb-sql/spring-data-guide.mdx b/docs/scalardb-sql/spring-data-guide.mdx index 74478c0c0..f1086b9d4 100644 --- a/docs/scalardb-sql/spring-data-guide.mdx +++ b/docs/scalardb-sql/spring-data-guide.mdx @@ -820,4 +820,4 @@ In order to use Spring Data JDBC for ScalarDB, the following features are implem - [Spring Data JDBC - Reference Documentation](https://docs.spring.io/spring-data/jdbc/docs/3.0.x/reference/html/) - [ScalarDB JDBC Guide](jdbc-guide.mdx) -- [Javadoc for Spring Data JDBC for ScalarDB](https://javadoc.io/doc/com.scalar-labs/scalardb-sql-spring-data/3.17.0/index.html) +- [Javadoc for Spring Data JDBC for ScalarDB](https://javadoc.io/doc/com.scalar-labs/scalardb-sql-spring-data/3.17.1/index.html) diff --git a/docs/scalardb-sql/sql-api-guide.mdx b/docs/scalardb-sql/sql-api-guide.mdx index 0e4b670e7..a94efb08c 100644 --- a/docs/scalardb-sql/sql-api-guide.mdx +++ b/docs/scalardb-sql/sql-api-guide.mdx @@ -374,4 +374,4 @@ For more details, see the