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

InfluxDB 2 JVM Based Clients

Results 65 influxdb-client-java issues
Sort by recently updated
recently updated
newest added
trafficstars

Hi there, There are some ‘timeout’ errors as follows when I run a Java Spring program with influxdb-client-java. Could someone tell me how to fix these errors? Thanks a lot....

__Steps to reproduce:__ List the minimal actions needed to reproduce the behavior. 1. issue a `BucketsApi.createBucket` request with a `Bucket` object having `schemaType` _explicit_ 2. verify that the created bucket...

bug

__Steps to reproduce:__ List the minimal actions needed to reproduce the behavior. 1. Install InfluxDB v2 2. Create a bucket 28c2cbcbac4cf29f 3. Create v1 auth token with a name `UserName`...

void writePoints(@Nonnull final List points) throws InfluxException; What is the maximum support for the points parameter?

question

When execute TaskApi#getRuns with beforeTime and afterTime on exact time in minutes, it throws BadRequestException and can not get result. __Steps to reproduce:__ List the minimal actions needed to reproduce...

__Proposal:__ A `BucketSchemaApi` to provide convenient access to the bucket schema management features. __Current behavior:__ - While it is possible to create an "explicit" Bucket through the Java API, it...

when i test "InfluxDBClientReactive.getQueryReactiveApi().query(flux)" on InfluxDB 1.8 ,I print the thread Id same as main thread in subscribe callback

![image](https://user-images.githubusercontent.com/62842016/234199364-720422f6-8303-418c-b8c0-b69404a34e7a.png) My field type is Boolean, but my program threw 'Can't set java. lang. Boolean field xxx to null value' here. Please check

question

Java client library: influxdb client https://github.com/influxdata/influxdb-client-java Builder builder = InfluxDBClientOptions.builder(); builder.url(serverUrl); if (!token.isEmpty()) { builder.authenticateToken(token.toCharArray()); // 1. } else { builder.authenticate(username, password.toCharArray()); // 2. } builder.bucket(bucketName); builder.org(organization); InfluxDBClientOptions options =...

question

When I use java client, version 5.0.0. When the server run after a period , I found the point has not been writen to db. And there are not any...

question