Skip to content

Commit bce011c

Browse files
AUTO: Sync ScalarDB docs in English to docs site repo (#1450)
Co-authored-by: josh-wong <[email protected]>
1 parent ee3de84 commit bce011c

File tree

2 files changed

+18
-0
lines changed

2 files changed

+18
-0
lines changed

versioned_docs/version-3.12/api-guide.mdx

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

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

20+
:::warning
21+
22+
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:
23+
24+
- [Repair a table](#repair-a-table) by using the Java API
25+
- [Repair tables](schema-loader.mdx#repair-tables) by using ScalarDB Schema Loader
26+
27+
:::
28+
2029
:::note
2130

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

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

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -47,6 +47,15 @@ tags:
4747

4848
## DDL
4949

50+
:::warning
51+
52+
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:
53+
54+
- [Repair a table](../api-guide.mdx#repair-a-table) by using the Java API
55+
- [Repair tables](../schema-loader.mdx#repair-tables) by using ScalarDB Schema Loader
56+
57+
:::
58+
5059
### CREATE NAMESPACE
5160

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

0 commit comments

Comments
 (0)