influxdb-java icon indicating copy to clipboard operation
influxdb-java copied to clipboard

Java client for InfluxDB

Results 102 influxdb-java issues
Sort by recently updated
recently updated
newest added

I understand that OneShotBatchWriter gets one shot to write its points to influxdb, but I found when importing historical data through influxdb-java, that the OneShotBatchWriter stops processing its list of...

The first example in the readme.md uses the deprecated "createDatabase" method.

I'm using `org.influxdb:influxdb-java:2.10`. I'd like to limit my `@Measurement` classes visibility to package-private, but currently it doesn't work because of the following exception: ``` org.influxdb.InfluxDBMapperException: java.lang.IllegalAccessException: Class org.influxdb.impl.InfluxDBResultMapper can not...

kind/enhancement
difficulty/low

Can you please, add BigDecimal support into InfluxDBResultMapper. Thanks

kind/enhancement
difficulty/low

Hi, I use the method `toPojo` to store the result of a query in my Java class, using in that class, for each field, the annotation `Column`. The problem is...

question
need-more-info

# Summary Newlines in tag values are not escaped. I'm not exactly sure if they can be escaped (?), but currently bad values are being inserted instead. # Steps to...

kind/bug
difficulty/low

If I don't provide a URL with an "http://" prefix, I get a NullReferenceException. This is not relevant for udp. Using version 2.5. The problem is in InfluxDBImpl: `return InetAddress.getByName(HttpUrl.parse(url).host());`

kind/bug
help wanted
difficulty/low

Helpers like 'describeDatabases', 'databaseExists', 'createDatabase' etc are really .. helpful. I completely understand that all these functions are available through the more generic 'query' function but it seems really unnecessary...

question

When you submit a metric with a NaN value of a field, it fails server-side with "org.influxdb.InfluxDBException: http: bad request". It would be nice to have client-side validation with a...

I'm using Influxdb client for writing and have a requirement to set a connection timeout, so the data not written within that specified time interval (ex: 5 seconds), the connection...