Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -27,4 +27,4 @@ Since ScalarDB Analytics with Spark is provided as a Spark catalog plugin, you c
* 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).
* 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).
* For details on how to configure ScalarDB Analytics with Spark, see [Configuration of ScalarDB Analytics with Spark](configuration.mdx).
* For supported Spark and Scala versions, see [Version Compatibility of ScalarDB Analytics with Spark](version-compatibility.mdx)
* For supported Spark and Scala versions, see [Version Compatibility of ScalarDB Analytics with Spark](./version-compatibility.mdx)
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ Since ScalarDB Analytics with Spark is available on the Maven Central Repository

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.

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

:::

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ A transaction manager or transaction admin object created from `TransactionFacto

## Wire encryption

[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:
[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:

```c#
builder.Services.AddScalarDbContext<TestDbContext>(options =>
Expand Down
6 changes: 1 addition & 5 deletions versioned_docs/version-3.12/scalardb-server.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -162,11 +162,7 @@ scalar.db.grpc.max_inbound_metadata_size=

## Further reading

Please see the following sample to learn ScalarDB Server further:

- [ScalarDB Server Sample](scalardb-samples/scalardb-server-sample/README.mdx)

Please also see the following documents to learn how to deploy ScalarDB Server:
Please see the following documents to learn how to deploy ScalarDB Server:

- [Deploy ScalarDB Server on AWS](scalar-kubernetes/ManualDeploymentGuideScalarDBServerOnEKS.mdx)
- [Deploy ScalarDB Server on Azure](scalar-kubernetes/ManualDeploymentGuideScalarDBServerOnAKS.mdx)
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ Also, you need to create coordinator tables that are used in transactions as fol

## Store & retrieve data

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

```java
Expand Down Expand Up @@ -184,7 +184,7 @@ public class ElectronicMoney {
```

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

```console
export GPR_USERNAME=<your GitHub username>
Expand Down Expand Up @@ -225,6 +225,6 @@ These are just simple examples of how ScalarDB JDBC is used. For more informatio
* [Getting Started with ScalarDB](../getting-started-with-scalardb.mdx)
* [ScalarDB JDBC Guide](jdbc-guide.mdx)
* [ScalarDB SQL Grammar](grammar.mdx)
* [ScalarDB SQL Command Line interface](command-line-interface.mdx)
* [ScalarDB SQL Command Line interface](../scalardb-cluster/developer-guide-for-scalardb-cluster-with-java-api.mdx#sql-cli)
* [ScalarDB SQL Server](sql-server.mdx)
* [ScalarDB SQL Configurations](configurations.mdx)
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ Also, you need to create coordinator tables that are used in transactions as fol

## Store & retrieve data

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

```java
Expand Down Expand Up @@ -172,7 +172,7 @@ public class ElectronicMoney {
```

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

```console
export GPR_USERNAME=<your GitHub username>
Expand Down Expand Up @@ -213,6 +213,6 @@ These are just simple examples of how ScalarDB SQL is used. For more information
* [Getting Started with ScalarDB](../getting-started-with-scalardb.mdx)
* [ScalarDB SQL API Guide](sql-api-guide.mdx)
* [ScalarDB SQL Grammar](grammar.mdx)
* [ScalarDB SQL Command Line interface](command-line-interface.mdx)
* [ScalarDB SQL Command Line interface](../scalardb-cluster/developer-guide-for-scalardb-cluster-with-java-api.mdx#sql-cli)
* [ScalarDB SQL Server](sql-server.mdx)
* [ScalarDB SQL Configurations](configurations.mdx)
2 changes: 1 addition & 1 deletion versioned_docs/version-3.12/scalardb-sql/index.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -121,7 +121,7 @@ To add a dependency using Maven:
- [ScalarDB SQL API Guide](sql-api-guide.mdx)
- [ScalarDB JDBC Guide](jdbc-guide.mdx)
- [ScalarDB SQL Grammar](grammar.mdx)
- [ScalarDB SQL Command Line interface](command-line-interface.mdx)
- [ScalarDB SQL Command Line interface](../scalardb-cluster/developer-guide-for-scalardb-cluster-with-java-api.mdx#sql-cli)
- [ScalarDB SQL Server](sql-server.mdx)
- [ScalarDB SQL Configurations](configurations.mdx)
- [Guide of Spring Data JDBC for ScalarDB](spring-data-guide.mdx)
Expand Down