influxdata / influxdb-java

Java client for InfluxDB
MIT License
1.19k stars 478 forks source link

EnableBatch and write several databases at the same time, the data be written to the wrong database. #716

Open liuxiaojianalibaba opened 3 years ago

liuxiaojianalibaba commented 3 years ago

the influxdb-java version

org.influxdb influxdb-java 2.20

image

All the data should be written to the first database,but some of the data is written to the other database.

I think a InfluxDB object write several databases with enableBatch at the same time,there is a bug.

majst01 commented 3 years ago

Hi @liuxiaojianalibaba,

With one InfluxDB Instance you can only write to one influxdb database:

InfluxDB influxDB = InfluxDBFactory.connect(serverURL, username, password)

So please elaborate how you tried to manage to write to multiple databases ? Show you code would be the best.