Skip to content

Commit 068b941

Browse files
AUTO: Sync ScalarDB docs in English to docs site repo (#1453)
Co-authored-by: josh-wong <[email protected]>
1 parent 3757b01 commit 068b941

File tree

2 files changed

+18
-0
lines changed

2 files changed

+18
-0
lines changed

versioned_docs/version-3.15/api-guide.mdx

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,15 @@ The ScalarDB Java API is mainly composed of the Administrative API and Transacti
1818

1919
This section explains how to execute administrative operations programmatically by using the Administrative API in ScalarDB.
2020

21+
:::warning
22+
23+
When an Administrative API call writes to the underlying databases, it triggers several write operations. However, these operations are not executed atomically, meaning that if the call fails midway, you may encounter inconsistent states. To resolve this inconsistency issue, you can repair the table. For details, see the following pages:
24+
25+
- [Repair a table](#repair-a-table) by using the Java API
26+
- [Repair tables](schema-loader.mdx#repair-tables) by using ScalarDB Schema Loader
27+
28+
:::
29+
2130
:::note
2231

2332
Another method for executing administrative operations is to use [Schema Loader](schema-loader.mdx).

versioned_docs/version-3.15/scalardb-sql/grammar.mdx

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -55,6 +55,15 @@ displayed_sidebar: docsEnglish
5555

5656
## DDL
5757

58+
:::warning
59+
60+
Each DDL command triggers several write operations, but these operations are not executed atomically, meaning that if the command fails midway, you may encounter inconsistent states. To resolve this inconsistency issue, you can repair the table. For details, see the following pages:
61+
62+
- [Repair a table](../api-guide.mdx#repair-a-table) by using the Java API
63+
- [Repair tables](../schema-loader.mdx#repair-tables) by using ScalarDB Schema Loader
64+
65+
:::
66+
5867
### CREATE NAMESPACE
5968

6069
Before creating tables, namespaces must be created since a table belongs to one namespace.

0 commit comments

Comments
 (0)