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

Chunking

Open Edgar-cn opened this issue 5 years ago • 1 comments

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

Edgar-cn avatar Jun 01 '20 09:06 Edgar-cn

InterruptedIOException is a Exception which comes most probably from a Operating System event like network outage or memory outage.

majst01 avatar Jun 02 '20 06:06 majst01