I use java and write to InfluxDb using batch points. My code is mentioned below
BatchPoints batchPoints = BatchPoints
.database(dbName).retentionPolicy("autogen") .consistency(InfluxDB.ConsistencyLevel.ALL).build();
point = Point.measurement("cpu")...
batchPoints.point(point);
I write from 20 to 30 million points, and after a while I get an exception:
.java.lang.RuntimeException: {"error":"partial write: max-values-per-tag limit exceeded (100708/100000): measurement=\"cpu\" tag=\"jkey\" value=\ .....
I wonder how to increase the limit? Or do I need to change the design of the circuit?
Ammad source
share