Skip to content

Commit 78d4baa

Browse files
committed
Added bulk-size-evaluation-mini challenge
1 parent a9de3d6 commit 78d4baa

File tree

1 file changed

+36
-1
lines changed

1 file changed

+36
-1
lines changed

eventdata/challenges/bulk-size-evaluation.json

Lines changed: 36 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
{% set p_bulk_indexing_clients = (bulk_indexing_clients | default(8)) %}
1+
{% set p_bulk_indexing_clients = (bulk_indexing_clients | default(16)) %}
22
{% set p_replica_count = (number_of_replicas | default(0)) %}
33
{% set p_shard_count = (shard_count | default(2)) %}
44

@@ -77,4 +77,39 @@
7777
"clients": {{ p_bulk_indexing_clients }}
7878
}
7979
]
80+
},
81+
{
82+
"name": "bulk-size-evaluation-mini",
83+
"description": "Indexes with bulk sizes of 125 and 1000. IDs are autogenerated by Elasticsearch, meaning there are no conflicts.",
84+
"meta": {
85+
"client_count": {{ p_bulk_indexing_clients }},
86+
"benchmark_type": "indexing_bulksize"
87+
},
88+
"schedule": [
89+
{
90+
"operation": "delete-index"
91+
},
92+
{
93+
"operation": {
94+
"operation-type": "create-index",
95+
"settings": {
96+
"index.number_of_replicas": {{ p_replica_count }},
97+
"index.number_of_shards": {{ p_shard_count }}
98+
}
99+
}
100+
},
101+
{
102+
"operation": "index-append-125",
103+
"warmup-time-period": 0,
104+
"time-period": 600,
105+
"clients": {{ p_bulk_indexing_clients }}
106+
},
107+
{
108+
"operation": "index-append-1000",
109+
"warmup-time-period": 0,
110+
"time-period": 600,
111+
"clients": {{ p_bulk_indexing_clients }}
112+
}
113+
]
80114
}
115+

0 commit comments

Comments
 (0)