From 195d6c76d87852a017e94f814c188bee7bb873fd Mon Sep 17 00:00:00 2001 From: finalchild Date: Thu, 19 Oct 2023 15:38:14 +0900 Subject: [PATCH] Remove duplicate paragraph in storage_engine.adoc --- .../cassandra/pages/architecture/storage_engine.adoc | 6 ------ 1 file changed, 6 deletions(-) diff --git a/doc/modules/cassandra/pages/architecture/storage_engine.adoc b/doc/modules/cassandra/pages/architecture/storage_engine.adoc index 9a0c37a089..47d1ff35b0 100644 --- a/doc/modules/cassandra/pages/architecture/storage_engine.adoc +++ b/doc/modules/cassandra/pages/architecture/storage_engine.adoc @@ -30,12 +30,6 @@ By default, max_mutation_size is half the size of `commitlog_segment_size`. `commitlog_segment_size` must be set to at least twice the size of `max_mutation_size`**. -Commitlogs are an append only log of all mutations local to a Cassandra -node. Any data written to Cassandra will first be written to a commit -log before being written to a memtable. This provides durability in the -case of unexpected shutdown. On startup, any mutations in the commit log -will be applied. - * `commitlog_sync`: may be either _periodic_ or _batch_. ** `batch`: In batch mode, Cassandra won’t ack writes until the commit log has been fsynced to disk. It will wait