Skip to content

Commit a24c64e

Browse files
committed
AUTO: Sync ScalarDB docs in English to docs site repo
1 parent 5466951 commit a24c64e

File tree

7 files changed

+11
-15
lines changed

7 files changed

+11
-15
lines changed

versioned_docs/version-3.12/scalardb-analytics-spark/README.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,4 +27,4 @@ Since ScalarDB Analytics with Spark is provided as a Spark catalog plugin, you c
2727
* To run ad-hoc analytical queries or development applications by using ScalarDB Analytics with Spark, see [Getting Started with ScalarDB Analytics with Spark](getting-started.mdx).
2828
* For tutorials on how to use ScalarDB Analytics with Spark by using a sample dataset and application, see [Run Analytical Queries on Sample Data by Using ScalarDB Analytics with Spark](../scalardb-samples/scalardb-analytics-spark-sample/README.mdx).
2929
* For details on how to configure ScalarDB Analytics with Spark, see [Configuration of ScalarDB Analytics with Spark](configuration.mdx).
30-
* For supported Spark and Scala versions, see [Version Compatibility of ScalarDB Analytics with Spark](version-compatibility.mdx)
30+
* For supported Spark and Scala versions, see [Version Compatibility of ScalarDB Analytics with Spark](./version-compatibility.mdx)

versioned_docs/version-3.12/scalardb-analytics-spark/getting-started.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ Since ScalarDB Analytics with Spark is available on the Maven Central Repository
5757

5858
ScalarDB Analytics with Spark offers different artifacts for various Spark and Scala versions, provided in the format `scalardb-analytics-spark-<SPARK_VERSION>_<SCALA_VERSION>`. Make sure that you select the artifact matching the Spark and Scala versions you're using.
5959

60-
For reference, see [Version Compatibility of ScalarDB Analytics with Spark](version-compatibility.mdx).
60+
For reference, see [Version Compatibility of ScalarDB Analytics with Spark](./version-compatibility.mdx).
6161

6262
:::
6363

versioned_docs/version-3.12/scalardb-cluster-dotnet-client-sdk/getting-started-with-auth.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ A transaction manager or transaction admin object created from `TransactionFacto
4242

4343
## Wire encryption
4444

45-
[Wire encryption](../scalardb-cluster/scalardb-auth-with-sql.md#wire-encryption) is also supported. It can be turned on by setting `Address` property of `ScalarDbOptions` to the url started with `https`, like follows:
45+
[Wire encryption](../scalardb-cluster/scalardb-auth-with-sql.mdx#wire-encryption) is also supported. It can be turned on by setting `Address` property of `ScalarDbOptions` to the url started with `https`, like follows:
4646

4747
```c#
4848
builder.Services.AddScalarDbContext<TestDbContext>(options =>

versioned_docs/version-3.12/scalardb-server.mdx

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -162,11 +162,7 @@ scalar.db.grpc.max_inbound_metadata_size=
162162

163163
## Further reading
164164

165-
Please see the following sample to learn ScalarDB Server further:
166-
167-
- [ScalarDB Server Sample](scalardb-samples/scalardb-server-sample/README.mdx)
168-
169-
Please also see the following documents to learn how to deploy ScalarDB Server:
165+
Please see the following documents to learn how to deploy ScalarDB Server:
170166

171167
- [Deploy ScalarDB Server on AWS](scalar-kubernetes/ManualDeploymentGuideScalarDBServerOnEKS.mdx)
172168
- [Deploy ScalarDB Server on Azure](scalar-kubernetes/ManualDeploymentGuideScalarDBServerOnAKS.mdx)

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

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ Also, you need to create coordinator tables that are used in transactions as fol
3636

3737
## Store & retrieve data
3838

39-
[`ElectronicMoney.java`](./getting-started-with-jdbc/src/main/java/sample/ElectronicMoney.java) is a simple electronic money application.
39+
The following is a simple electronic money application.
4040
(Be careful: it is simplified for ease of reading and far from practical and is certainly not production-ready.)
4141

4242
```java
@@ -184,7 +184,7 @@ public class ElectronicMoney {
184184
```
185185

186186
Before you run the application, you need to specify your GitHub username and your personal access token to access our private Maven repository.
187-
One of the ways to specify them is using environment variables as follows (See [build.gradle](./getting-started-with-jdbc/build.gradle)):
187+
One of the ways to specify them is using environment variables as follows:
188188

189189
```console
190190
export GPR_USERNAME=<your GitHub username>
@@ -225,6 +225,6 @@ These are just simple examples of how ScalarDB JDBC is used. For more informatio
225225
* [Getting Started with ScalarDB](../getting-started-with-scalardb.mdx)
226226
* [ScalarDB JDBC Guide](jdbc-guide.mdx)
227227
* [ScalarDB SQL Grammar](grammar.mdx)
228-
* [ScalarDB SQL Command Line interface](command-line-interface.mdx)
228+
* [ScalarDB SQL Command Line interface](../scalardb-cluster/developer-guide-for-scalardb-cluster-with-java-api.mdx#sql-cli)
229229
* [ScalarDB SQL Server](sql-server.mdx)
230230
* [ScalarDB SQL Configurations](configurations.mdx)

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

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ Also, you need to create coordinator tables that are used in transactions as fol
3636

3737
## Store & retrieve data
3838

39-
[`ElectronicMoney.java`](./getting-started-with-sql/src/main/java/sample/ElectronicMoney.java) is a simple electronic money application.
39+
The following is a simple electronic money application.
4040
(Be careful: it is simplified for ease of reading and far from practical and is certainly not production-ready.)
4141

4242
```java
@@ -172,7 +172,7 @@ public class ElectronicMoney {
172172
```
173173

174174
Before you run the application, you need to specify your GitHub username and your personal access token to access our private Maven repository.
175-
One of the ways to specify them is using environment variables as follows (See [build.gradle](./getting-started-with-sql/build.gradle)):
175+
One of the ways to specify them is using environment variables as follows:
176176

177177
```console
178178
export GPR_USERNAME=<your GitHub username>
@@ -213,6 +213,6 @@ These are just simple examples of how ScalarDB SQL is used. For more information
213213
* [Getting Started with ScalarDB](../getting-started-with-scalardb.mdx)
214214
* [ScalarDB SQL API Guide](sql-api-guide.mdx)
215215
* [ScalarDB SQL Grammar](grammar.mdx)
216-
* [ScalarDB SQL Command Line interface](command-line-interface.mdx)
216+
* [ScalarDB SQL Command Line interface](../scalardb-cluster/developer-guide-for-scalardb-cluster-with-java-api.mdx#sql-cli)
217217
* [ScalarDB SQL Server](sql-server.mdx)
218218
* [ScalarDB SQL Configurations](configurations.mdx)

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -121,7 +121,7 @@ To add a dependency using Maven:
121121
- [ScalarDB SQL API Guide](sql-api-guide.mdx)
122122
- [ScalarDB JDBC Guide](jdbc-guide.mdx)
123123
- [ScalarDB SQL Grammar](grammar.mdx)
124-
- [ScalarDB SQL Command Line interface](command-line-interface.mdx)
124+
- [ScalarDB SQL Command Line interface](../scalardb-cluster/developer-guide-for-scalardb-cluster-with-java-api.mdx#sql-cli)
125125
- [ScalarDB SQL Server](sql-server.mdx)
126126
- [ScalarDB SQL Configurations](configurations.mdx)
127127
- [Guide of Spring Data JDBC for ScalarDB](spring-data-guide.mdx)

0 commit comments

Comments
 (0)