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/v3-core-get-started/_index.md
+3-1Lines changed: 3 additions & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -328,7 +328,9 @@ For more information, see [diskless architecture](#diskless-architecture).
328
328
329
329
##### No sync write option
330
330
331
-
InfluxDB provides a `no_sync` write option to allow faster response of write request by skipping the waitfor WAL presistence. When `no_sync=true`, InfluxDB writes data to WAL but immediately acknowledges the write request without waiting for persistence.
331
+
InfluxDB provides a `no_sync` write option that allows the write request to respond faster by skipping the waitfor WAL presistence. When `no_sync=true`, InfluxDB writes data to the WAL and then immediately acknowledges the write request without waiting for persistence to the Object store.
332
+
333
+
Using `no_sync=true` is best when prioritizing high-throughput writes over absolute durability.
332
334
333
335
- Default behavior(`no_sync=false`): Ensures data is persisted before acknowledging writes. Thus, reducing the risk of data loss.
334
336
- With `no_sync=true`: Improves write performance but increases the risk of data loss incase of crashes before WAL persistence.
0 commit comments