You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: content/shared/influxdb3-internals-reference/durability.md
+5-5Lines changed: 5 additions & 5 deletions
Original file line number
Diff line number
Diff line change
@@ -1,10 +1,10 @@
1
-
## How Data Flows Through InfluxDB 3
1
+
## How data flows through InfluxDB 3
2
2
3
3
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.
4
4
5
5
### Write Path Overview
6
6
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:
8
8
9
9
1.[Write validation](#write-validation)
10
10
@@ -21,7 +21,7 @@ When data is written to {{% product-name %}}, it progresses through multiple sta
21
21
22
22
##### Write Validation
23
23
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.
25
25
26
26
- Impact: Prevents malformed or unsupported data from entering the database.
27
27
@@ -35,15 +35,15 @@ When data is written to {{% product-name %}}, it progresses through multiple sta
35
35
36
36
##### WAL Persistence
37
37
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).
39
39
40
40
- Impact: Ensures durability by persisting data to object storage.
41
41
42
42
- Tradeoff: More frequent flushing improves durability but increases I/O overhead.
43
43
44
44
##### Query Availability
45
45
46
-
- Process: After WAL persistence, data moves to the queryable buffer.
46
+
- Process: The system moves data to the queryable buffer after WAL persistence.
0 commit comments