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
#574: Support fast writes without waiting for WAL persistence:
New write option (WriteOptions.noSync) added: true value means faster write but without the confirmation that
the data was persisted. Default value: false.
Supported by self-managed InfluxDB 3 Core and Enterprise servers only!
Also configurable via connection string query parameter (writeNoSync).
Also configurable via environment variable (INFLUX_WRITE_NO_SYNC).
Long precision string values added from v3 HTTP API: "nanosecond", "microsecond", "millisecond", "second" (in addition to the existing "ns", "us", "ms", "s").
Bugfix
#570: Fixes the bug that makes query results duplicate rows #553.