Skip to content

1.2.0

Choose a tag to compare

@bednar bednar released this 26 Jun 04:53
· 87 commits to main since this release

Features

  1. #209 Add query function returning row as map.
  2. #238: 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").
  3. #241: Some default options will be used from a getter.
  4. #243: Add function to get InfluxDB version.

Bug Fixes

  1. #239: Use write options from ClientConfig in
    InfluxDBClientImpl write methods:

    public void writeRecord(@Nullable final String record);
    public void writeRecords(@Nonnull final List<String> records);
    public void writePoint(@Nullable final Point point);
    public void writePoints(@Nonnull final List<Point> points);