Skip to content

3.10.0

Compare
Choose a tag to compare
@vlastahajek vlastahajek released this 20 Jan 15:28
· 51 commits to master since this release

Features

  • 167 - Added InfluxDBClient::writeRecord(const char *record).
  • 167 - Added possibility to disable retrying by setting maxRetryAttempts to zero: client.setWriteOptions(WriteOptions().maxRetryAttempts(0));
  • 172 - Added directly streaming batch for write. It can be enabled by InfluxDBClient::setStreamWrite(bool enable = true). Writing by streaming lines of batch saves RAM as it sends data without allocating a buffer. On the other hand, this way of writing is about half times slower than the classic way, when allocating the buffer for writing the whole batch.
  • 172 - Allowing larger batch size, > 255.
  • 173 - Added Flux query parameters. Supported by InfluxDB Cloud only now.