You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
|`scalar.db.consensus_commit.parallel_executor_count`| Number of executors (threads) for parallel execution. |`128`|
52
-
|`scalar.db.consensus_commit.parallel_preparation.enabled`| Whether or not the preparation phase is executed in parallel. |`true`|
53
-
|`scalar.db.consensus_commit.parallel_validation.enabled`| Whether or not the validation phase (in `EXTRA_READ`) is executed in parallel. | The value of `scalar.db.consensus_commit.parallel_commit.enabled`|
54
-
|`scalar.db.consensus_commit.parallel_commit.enabled`| Whether or not the commit phase is executed in parallel. |`true`|
55
-
|`scalar.db.consensus_commit.parallel_rollback.enabled`| Whether or not the rollback phase is executed in parallel. | The value of `scalar.db.consensus_commit.parallel_commit.enabled`|
56
-
|`scalar.db.consensus_commit.async_commit.enabled`| Whether or not the commit phase is executed asynchronously. |`false`|
57
-
|`scalar.db.consensus_commit.async_rollback.enabled`| Whether or not the rollback phase is executed asynchronously. | The value of `scalar.db.consensus_commit.async_commit.enabled`|
58
-
|`scalar.db.consensus_commit.parallel_implicit_pre_read.enabled`| Whether or not implicit pre-read is executed in parallel. |`true`|
|`scalar.db.consensus_commit.parallel_executor_count`| Number of executors (threads) for parallel execution. This number refers to the total number of threads across transactions in a ScalarDB Cluster node or a ScalarDB process.|`128`|
52
+
|`scalar.db.consensus_commit.parallel_preparation.enabled`| Whether or not the preparation phase is executed in parallel. |`true`|
53
+
|`scalar.db.consensus_commit.parallel_validation.enabled`| Whether or not the validation phase (in `EXTRA_READ`) is executed in parallel. | The value of `scalar.db.consensus_commit.parallel_commit.enabled`|
54
+
|`scalar.db.consensus_commit.parallel_commit.enabled`| Whether or not the commit phase is executed in parallel. |`true`|
55
+
|`scalar.db.consensus_commit.parallel_rollback.enabled`| Whether or not the rollback phase is executed in parallel. | The value of `scalar.db.consensus_commit.parallel_commit.enabled`|
56
+
|`scalar.db.consensus_commit.async_commit.enabled`| Whether or not the commit phase is executed asynchronously. |`false`|
57
+
|`scalar.db.consensus_commit.async_rollback.enabled`| Whether or not the rollback phase is executed asynchronously. | The value of `scalar.db.consensus_commit.async_commit.enabled`|
58
+
|`scalar.db.consensus_commit.parallel_implicit_pre_read.enabled`| Whether or not implicit pre-read is executed in parallel. |`true`|
59
59
60
60
#### Underlying storage or database configurations
61
61
@@ -208,7 +208,7 @@ In this example configuration, the app (ScalarDB library with Consensus Commit)
208
208
209
209
:::warning
210
210
211
-
This configuration exists only for development purposes and isn’t suitable for a production environment. This is because the app needs to implement the [Scalar Admin](https://github.com/scalar-labs/scalar-admin) interface to take transactionally consistent backups for ScalarDB, which requires additional configurations.
211
+
This configuration exists only for development purposes and isn't suitable for a production environment. This is because the app needs to implement the [Scalar Admin](https://github.com/scalar-labs/scalar-admin) interface to take transactionally consistent backups for ScalarDB, which requires additional configurations.
Copy file name to clipboardExpand all lines: versioned_docs/version-3.12/scalardb-sql/spring-data-guide.mdx
+6Lines changed: 6 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -12,6 +12,12 @@ Directly using the ScalarDB API may be difficult because you need to write a lot
12
12
The usage of Spring Data JDBC for ScalarDB basically follows [Spring Data JDBC - Reference Documentation](https://docs.spring.io/spring-data/jdbc/docs/3.0.x/reference/html/).
13
13
This guide describes several important topics to use Spring Data JDBC for ScalarDB and its limitations.
14
14
15
+
:::warning
16
+
17
+
Spring Data JDBC for ScalarDB extends Spring Data JDBC, but full compatibility is not guaranteed. Only the features listed on this page are officially tested and supported.
18
+
19
+
:::
20
+
15
21
## Add Spring Data JDBC for ScalarDB to your project
16
22
17
23
To add the dependencies on Spring Data JDBC for ScalarDB by using Gradle, use the following, replacing `<VERSION>` with the versions of Spring Data JDBC for ScalarDB and the related library, respectively, that you are using:
0 commit comments