Jakub Bednář
Jakub Bednář
I am out of an office, but next week I will will take a look. Thanks for good cooperation
Hi @NektoDron, I tried simulate it by import large amout of data as a simple program with `main` method and everything was fine... all threads was disposed :( Could you...
Hi @NektoDron, The problem was wrong implementation of `WaitToCondition`. It is fixed by #81. If you would like to use a preview version use our nightly build: [InfluxDB.Client 1.8.0-dev.639](https://www.nuget.org/packages/InfluxDB.Client/1.8.0-dev.639). Regards
It looks like that is related to handling an exception. Could you share an exception log from your debug output?
Hi @tomwimmenhove, thanks for using our client. Could you share a piece of code how you use a client? Do you always write data into same bucket and org? Regards
Sorry for the late The `WriteApi` is suppose to run as a long live singleton and uses batching in background. You don't need to split your data into chunks. >...
Hi @ftkus, thanks for using our client. > Is there some way of getting more information (e.g. status of WriteApi)? you can enable debug logging by: `Client.SetLogLevel(LogLevel.Body);`. Could you share...
Hi @TatianaInfoGuild, thanks for using our client. We will take a look. Regards
For more info about usage of `EventHandler` see: - https://github.com/influxdata/influxdb-client-csharp/tree/master/Client#handle-the-events - https://github.com/influxdata/influxdb-client-csharp/blob/master/Examples/WriteEventHandlerExample.cs
Hi @nathanielc, The our API is prepared to consume AST queries: - https://github.com/influxdata/influxdb-client-java/blob/9c8af0c1af5cc4519407b7cb3a91419027ce8ec9/client/src/main/java/com/influxdb/client/QueryApi.java#L87 - https://github.com/influxdata/influxdb-client-java/blob/31834c04033c73b4c8635d9e50b0ac830d4a9931/client/src/generated/java/com/influxdb/client/domain/Query.java#L38 - https://github.com/influxdata/influxdb-client-java/blob/b89c5e8923bd380c6c5b62807a074bbdd411ac24/client/src/generated/java/com/influxdb/client/domain/StringLiteral.java#L32 so we have to prepare something like `toQuery` option that will transform DSL...