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
+4-1Lines changed: 4 additions & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -335,7 +335,10 @@ Using `no_sync=true` is best when prioritizing high-throughput writes over absol
335
335
- Default behavior(`no_sync=false`): Waits for data to be written to disk before acknowledging writes. This reduces the risk of data loss but increases latency for writes.
336
336
- With `no_sync=true`: Reduces write latency but increases the risk of data loss incase of crashes before WAL persistence.
337
337
338
-
If you are using the HTTP API, here is an example of how to enable the `no_sync` option:
338
+
###### Immediate write using the HTTP API
339
+
340
+
The `no_sync` parameter controls when writes are acknowledged--for example:
0 commit comments