我在一些代码的帮助下使用JMeter同时将数据推送到influxdb。数据被推送到数据库,但是如果代码必须推送100个数据,则流入数据库仅填充96或97个条目。当内置的Influx侦听器推送100个条目时,我的代码无法将所有100个条目推送到Influx。我的代码段如下。
InfluxDB influxDB = InfluxDBFactory.connect(“http:/l/ocalhost:8086”,“TestingDB,”");
influxDB.createDatabase(“MYTestData”);
Point point1 = Point.measurement(“myTable”)
.time(System.currentTimeMillis() , TimeUnit.MILLISECONDS)
.tag(“CustomerID”,"ID1234 ")
.tag(“empID”,"emp1234 ")
.tag(“TestID”,“test12343”)
influxDB.write(“DBname”, “autogen”, point1);
如果我用10个迭代与10个用户运行相同的代码,则我需要获取100个数据点,而其中只有95个或更多条目。为什么内置侦听器可以推送100%的数据,而我却不能。??
FFIVE
相关分类