influxdb-client-java
influxdb-client-java copied to clipboard
InfluxDB 2 JVM Based Clients
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...
__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?
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
 My field type is Boolean, but my program threw 'Can't set java. lang. Boolean field xxx to null value' here. Please check
Java client library: finfluxdb client | influx HTTP status code: 401; Message: Unauthorized access.
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 =...
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...