File tree 1 file changed +36
-1
lines changed
1 file changed +36
-1
lines changed Original file line number Diff line number Diff line change 1
- {% set p_bulk_indexing_clients = (bulk_indexing_clients | default(8 )) % }
1
+ {% set p_bulk_indexing_clients = (bulk_indexing_clients | default(16 )) % }
2
2
{% set p_replica_count = (number_of_replicas | default(0)) % }
3
3
{% set p_shard_count = (shard_count | default(2)) % }
4
4
77
77
"clients" : {{ p_bulk_indexing_clients }}
78
78
}
79
79
]
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
+ ]
80
114
}
115
+
You can’t perform that action at this time.
0 commit comments