This is an automated email from the ASF dual-hosted git repository. acosentino pushed a commit to branch main in repository https://gitbox.apache.org/repos/asf/camel-performance-tests.git
commit 5aa1298b0bed3d040e5ea31ad6f3f2fabb86a8d4 Author: Andrea Cosentino <anco...@gmail.com> AuthorDate: Wed Oct 6 14:08:31 2021 +0200 Mongo Kafka: Updated 40000 scripts --- profiling/mongo-kafka/script/populate-40000.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/profiling/mongo-kafka/script/populate-40000.js b/profiling/mongo-kafka/script/populate-40000.js index bb90596..d6bb582 100644 --- a/profiling/mongo-kafka/script/populate-40000.js +++ b/profiling/mongo-kafka/script/populate-40000.js @@ -1,5 +1,5 @@ use test db.createCollection("log", { capped : true, size : 5242880, max : 50000 } ) -for (var i = 1; i <= 30000; i++) { +for (var i = 1; i <= 40000; i++) { db.log.insert({ item: "canvas", qty: 100, tags: ["cotton"], size: { h: 28, w: i, uom: "cm" } }) }