【发布时间】:2017-10-01 21:26:53
【问题描述】:
我正在使用 java 并使用批处理点写入 InfluxDb。我的代码在下面提到,
BatchPoints batchPoints = BatchPoints
.database(dbName).retentionPolicy("autogen") .consistency(InfluxDB.ConsistencyLevel.ALL).build();
point = Point.measurement("cpu")...
batchPoints.point(point);
我正在写 20 到 3000 万个点,过了一会儿就出现异常:
.java.lang.RuntimeException: {"error":"partial write: max-values-per-tag limit exceeded (100708/100000): measurement=\"cpu\" tag=\"jkey\" value=\ .....
想知道如何增加限制?还是我需要更改我的架构设计?
【问题讨论】:
标签: influxdb