influxdb-java
influxdb-java copied to clipboard
Chunking
code:
InfluxDB influxDB = myInfluxDB.getInfluxDB();
String command="select * from hour.cup";
Query query = new Query(command,myInfluxDB.getDatabase());
influxDB.query(query,100,queryResult ->System.out.println(queryResult));
result: org.influxdb.InfluxDBException: java.io.InterruptedIOException: executor rejected
I don't understand why this is happening, I hope to get help
version: inluxdb1.8 inluxdb-java 2.19
InterruptedIOException is a Exception which comes most probably from a Operating System event like network outage or memory outage.