influxdb-java
influxdb-java copied to clipboard
Java client for InfluxDB
Chunking
code: ``` InfluxDB influxDB = myInfluxDB.getInfluxDB(); String command="select * from hour.cup"; Query query = new Query(command,myInfluxDB.getDatabase()); influxDB.query(query,100,queryResult ->System.out.println(queryResult)); ``` result: org.influxdb.InfluxDBException: java.io.InterruptedIOException: executor rejected I don't understand why this is...
When log level is set to BASIC/HEADERS/FULL, app logs does not show any additional information. I see the InfluxDBImpl uses default HttpLoggingInterceptor constructor and no way to pass logger object.
The offset of the first series is 0; Also, why is SelectionCoreImpl package-private? How do I create a subclass of 'SelectQueryImpl'?
I'm using influx-java and would like to simplify the marshalling of the data returned from influx. I've started working with the toPOJO method from the InfluxDBResultMapper, however it seems that...
Expected behaviour: When registering an exceptionHandler in BatchOptions, it should be invoked when data cannot be written. Actual behaviour: The handler isn't invoked, not even when attempting to write to...
null/empty values mapped to 0 for a double ? They should be set to Double.NaN isn't it ? Or am i missing something here ? Thanks for your help in...
**Current problem** At some point after the release of version 2.3 of this library, changelog and description of new features were frequently added to the README.md file. With more and...
I'm waiting release of this fix. https://github.com/influxdata/influxdb-java/commit/d944e96879f967073e1f902239bf6f918153bed4#diff-23360835991a654afd56314b41590521L150-R155 a part of https://github.com/influxdata/influxdb-java/pull/644.
I created a POJO to insert into influxdb: @Measurement(name = "mymeasurement") public class Pojo { @Column(name = "tag1", tag =true) private string tag1; @Column(name = "tag2", tag = true) private...
- When gzip is disabled, do not add Accept-Encoding gzip header to request. (Overrided with identity for Accept-Encoding) - In specific environments/deployments the addition of this encoding type causes issues