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

Would like to make use of the compression gains based on using an appropriate time precision.

kind/bug
help wanted

Hi, I am observing rounding errors on integer fields when reading from database and writing them back. I have a measurement with an integer column that represents a timestamps with...

kind/bug
difficulty/high

If a timestamp has a 10-millisecond time (last digit 0), the returned milliseconds time is not correct. .time(1497600000030L, TimeUnit.MILLISECONDS) after reading from database: fromInfluxDBTimeFormat(raw.get(0).toString()) returns "1497600000003" the database contains "2017-06-16T08:00:00.03Z"

kind/bug
difficulty/low

When the amount of data written is exactly equal to batchActions, it will not be written correctly.

Hi, I want to extract only the Tags and Fields in the failedPoints(Iterable) in the lower part and create them as a file. influxDB.enableBatch(BatchOptions.DEFAULTS.exceptionHandler( (failedPoints, throwable) -> { /* custom...

use addFieldsFromPOJO method build point will cause npe when some tag field hasn't set any value.

Fix for issues #498 to propagate exception if you are using the query stream. Adds also functionality to specify the time unit to the query stream. This feature was also...

If you do not specify database in query (even thou you have specified database on the client level) method InfluxDBl#query(Query, TimeUnit) will not return any result because it will not...

As Java migrates to modules, support for modular artifacts becomes more important. Producing jmod files or modular jars as inputs to jlink will become required as older version of Java...

Querying for points immediately after batch write misses points. Example: ``` @Test public void test() { // Query the count of points Query query = new Query("select count(disk)from disk", databaseName);...