From 8f1730950a5ee278d5326c6a129546010b6fc76b Mon Sep 17 00:00:00 2001 From: josh-wong Date: Thu, 28 Aug 2025 05:43:58 +0000 Subject: [PATCH] AUTO: Sync ScalarDB docs in English to docs site repo --- versioned_docs/version-3.12/api-guide.mdx | 9 +++++++++ versioned_docs/version-3.12/scalardb-sql/grammar.mdx | 9 +++++++++ 2 files changed, 18 insertions(+) diff --git a/versioned_docs/version-3.12/api-guide.mdx b/versioned_docs/version-3.12/api-guide.mdx index 8ea3a57c..5f3365fd 100644 --- a/versioned_docs/version-3.12/api-guide.mdx +++ b/versioned_docs/version-3.12/api-guide.mdx @@ -17,6 +17,15 @@ The ScalarDB Java API is mainly composed of the Administrative API and Transacti This section explains how to execute administrative operations programmatically by using the Administrative API in ScalarDB. +:::warning + +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: + +- [Repair a table](#repair-a-table) by using the Java API +- [Repair tables](schema-loader.mdx#repair-tables) by using ScalarDB Schema Loader + +::: + :::note Another method for executing administrative operations is to use [Schema Loader](schema-loader.mdx). diff --git a/versioned_docs/version-3.12/scalardb-sql/grammar.mdx b/versioned_docs/version-3.12/scalardb-sql/grammar.mdx index 823c0dca..5255577b 100644 --- a/versioned_docs/version-3.12/scalardb-sql/grammar.mdx +++ b/versioned_docs/version-3.12/scalardb-sql/grammar.mdx @@ -47,6 +47,15 @@ tags: ## DDL +:::warning + +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: + +- [Repair a table](../api-guide.mdx#repair-a-table) by using the Java API +- [Repair tables](../schema-loader.mdx#repair-tables) by using ScalarDB Schema Loader + +::: + ### CREATE NAMESPACE Before creating tables, namespaces must be created since a table belongs to one namespace.