Skip to content

Commit 68db88a

Browse files
MeelahMejstirnaman
authored andcommitted
update to _index.md
1 parent 778cddb commit 68db88a

File tree

4 files changed

+6
-86
lines changed

4 files changed

+6
-86
lines changed

content/shared/influxdb3-internals-reference/_index 2.md

Lines changed: 0 additions & 3 deletions
This file was deleted.
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,3 @@
1+
### [Data Durability](./durability.md)
12

23
{{< children >}}

content/shared/influxdb3-internals-reference/durability 2.md

Lines changed: 0 additions & 78 deletions
This file was deleted.

content/shared/influxdb3-internals-reference/durability.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
1-
## How Data Flows Through InfluxDB 3
1+
## How data flows through InfluxDB 3
22

33
When data is written to {{% product-name %}}, it progresses through multiple stages to ensure durability, optimize performance, and enable efficient querying. Configuration options at each stage affect system behavior, balancing reliability and resource usage.
44

55
### Write Path Overview
66

7-
{{% product-name %}} processes data through the following stages to ensure durability, query performance, and efficient storage:
7+
{{% product-name %}} processes data through several stages to ensure durability, query performance, and efficient storage. Below is a high-level overview of these stages:
88

99
1. [Write validation](#write-validation)
1010

@@ -21,7 +21,7 @@ When data is written to {{% product-name %}}, it progresses through multiple sta
2121

2222
##### Write Validation
2323

24-
- Process: The Ingest Router receives the write request and validates incoming data before accepting it into the system.
24+
- Process: InfluxDB validates incoming data before accepting it into the system.
2525

2626
- Impact: Prevents malformed or unsupported data from entering the database.
2727

@@ -35,15 +35,15 @@ When data is written to {{% product-name %}}, it progresses through multiple sta
3535

3636
##### WAL Persistence
3737

38-
- Process: The write buffer is flushed to the WAL every second (default).
38+
- Process: The system flushes the write buffer to the WAL every second (default).
3939

4040
- Impact: Ensures durability by persisting data to object storage.
4141

4242
- Tradeoff: More frequent flushing improves durability but increases I/O overhead.
4343

4444
##### Query Availability
4545

46-
- Process: After WAL persistence, data moves to the queryable buffer.
46+
- Process: The system moves data to the queryable buffer after WAL persistence.
4747

4848
- Impact: Enables fast queries on recent data.
4949

0 commit comments

Comments
 (0)