Skip to content

Commit d7e2be2

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

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

docs/data-loader.mdx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -206,15 +206,15 @@ When using INSERT mode, you must have matching fields in the source file for eac
206206

207207
Based on your schema type, you can use one of the following modes:
208208

209-
- **`TRANSACTION`:** Use this mode for databases that have [transaction metadata](consensus-commit.mdx/#distributed-wal) in their schemas. Rows are imported by using transactional operations, ensuring ACID properties and data consistency. By default, up to 100 put operations are grouped into a single transaction. You can adjust this by using the `--transaction-size` option.
209+
- **`TRANSACTION`:** Use this mode for databases that have [transaction metadata](consensus-commit.mdx#distributed-wal) in their schemas. Rows are imported by using transactional operations, ensuring ACID properties and data consistency. By default, up to 100 put operations are grouped into a single transaction. You can adjust this by using the `--transaction-size` option.
210210

211211
:::note
212212

213213
When using `TRANSACTION` mode, each transaction group (that includes 100 records by default) meets ACID guarantees, but the overall import or export operation is not atomic. If interrupted, some groups may be committed while others are not. Use the log files to identify and retry failed records.
214214

215215
:::
216216

217-
- **`STORAGE` (default):** Use this mode for databases that do not have [transaction metadata](consensus-commit.mdx/#distributed-wal) in their schemas. This mode performs direct database imports by using non-transactional storage operations for better performance, without full ACID guarantees.
217+
- **`STORAGE` (default):** Use this mode for databases that do not have [transaction metadata](consensus-commit.mdx#distributed-wal) in their schemas. This mode performs direct database imports by using non-transactional storage operations for better performance, without full ACID guarantees.
218218

219219
For additional configuration options including validation, logging, and performance tuning, see the [Command-line flags](#command-line-flags) section below.
220220

0 commit comments

Comments
 (0)