-
Notifications
You must be signed in to change notification settings - Fork 228
Expand file tree
/
Copy pathdefault-schedule.json
More file actions
307 lines (307 loc) · 14.2 KB
/
Copy pathdefault-schedule.json
File metadata and controls
307 lines (307 loc) · 14.2 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
{
"operation": {
"name": "delete-data-stream",
"operation-type": "delete-data-stream",
"only-if-exists": false,
"data-stream": ["logs-181998", "logs-191998", "logs-201998", "logs-211998", "logs-221998", "logs-231998", "logs-241998", "reindexed-logs"]
},
"tags": ["setup"]
},
{
"operation": {
"name": "delete-index",
"operation-type": "delete-index",
"only-if-exists": false,
"index": ["logs-181998", "logs-191998", "logs-201998", "logs-211998", "logs-221998", "logs-231998", "logs-241998", "reindexed-logs"]
},
"tags": ["setup"]
},
{
"operation" : {
"name": "delete-all-index-templates",
"operation-type": "delete-composable-template"
},
"tags": ["setup"]
},
{
"operation": {
"name": "create-all-templates",
"operation-type": "create-composable-template"
},
"tags": ["setup"]
},
{
{%- if index_mode == "logsdb" or index_type == "data_stream" %}
{%- set indexing_operation_type = "create-data-stream" %}
{%- endif %}
"operation": {
"operation-type": {{ indexing_operation_type | default("create-index") | tojson }},
"settings": {{index_settings | default({}) | tojson}}
},
"tags": ["setup"]
},
{
"name": "check-cluster-health",
"operation": {
"operation-type": "cluster-health",
"index": "logs-*",
"request-params": {
"wait_for_status": "{{cluster_health | default('green')}}",
"wait_for_no_relocating_shards": "true"
},
"retry-until-success": true
}
},
{%- if runtime_fields is defined %}
{
"operation": "create-timestamp-pipeline"
},
{
"operation": "index-append-with-timestamp-pipeline",
"warmup-time-period": 240,
"clients": {{bulk_indexing_clients | default(8)}},
"ignore-response-error-level": "{{error_level | default('non-fatal')}}"
},
{%- else %}
{
"operation": "index-append",
"warmup-time-period": 240,
"clients": {{bulk_indexing_clients | default(8)}},
"ignore-response-error-level": "{{error_level | default('non-fatal')}}"
},
{%- endif %}
{
"name": "refresh-after-index",
"operation": "refresh"
},
{
"operation": {
"operation-type": "force-merge",
"request-timeout": 7200
}
},
{
"name": "refresh-after-force-merge",
"operation": "refresh"
},
{
"name": "wait-until-merges-finish",
"operation": {
"operation-type": "index-stats",
"index": "_all",
"condition": {
"path": "_all.total.merges.current",
"expected-value": 0
},
"retry-until-success": true,
"include-in-reporting": false
}
},
{# serverless-post-ingest-sleep-marker-start #}{%- if post_ingest_sleep|default(false) -%}
{
"name": "post-ingest-sleep",
"operation": {
"operation-type": "sleep",
"duration": {{ post_ingest_sleep_duration|default(30) }}
}
},
{%- endif -%}{# serverless-post-ingest-sleep-marker-end #}
{
"operation": "default",
"warmup-iterations": 500,
"iterations": 100,
"target-throughput": 20
},
{%- if runtime_fields is defined %}
{ "operation": "term", "name": "term-from-source-using-grok", "warmup-iterations": 50, "iterations": 10, "target-throughput": 0.01, "tags": ["term", "from-source", "using-grok"] },
{ "operation": "term", "name": "term-from-keyword-using-grok", "warmup-iterations": 50, "iterations": 10, "target-throughput": 0.01, "tags": ["term", "from-keyword", "using-grok"] },
{ "operation": "term", "name": "term-from-wildcard-using-grok", "warmup-iterations": 50, "iterations": 10, "target-throughput": 0.01, "tags": ["term", "from-wildcard", "using-grok"] },
{ "operation": "term", "name": "term-from-source-using-dissect", "warmup-iterations": 50, "iterations": 10, "target-throughput": 0.01, "tags": ["term", "from-source", "using-dissect"] },
{ "operation": "term", "name": "term-from-keyword-using-dissect", "warmup-iterations": 50, "iterations": 10, "target-throughput": 0.01, "tags": ["term", "from-wildcard", "using-dissect"] },
{ "operation": "term", "name": "term-from-wildcard-using-dissect", "warmup-iterations": 50, "iterations": 10, "target-throughput": 0.01, "tags": ["term", "from-wildcard", "using-dissect"] },
{ "operation": "term", "name": "term-from-source-using-index-of", "warmup-iterations": 50, "iterations": 10, "target-throughput": 0.01, "tags": ["term", "from-source", "using-index-of"] },
{ "operation": "term", "name": "term-from-keyword-using-index-of", "warmup-iterations": 50, "iterations": 10, "target-throughput": 0.01, "tags": ["term", "from-keyword", "using-index-of"] },
{ "operation": "term", "name": "term-from-wildcard-using-index-of", "warmup-iterations": 50, "iterations": 10, "target-throughput": 0.01, "tags": ["term", "from-wildcard", "using-index-of"] },
{%- else %}
{
"name": "term",
"operation": "term",
"warmup-iterations": 500,
"iterations": 100,
"target-throughput": 50
},
{%- endif %}
{
"name": "terms_enum",
"operation": "terms_enum",
"warmup-iterations": 500,
"iterations": 100,
"target-throughput": 50
},
{
"operation": "range",
"warmup-iterations": 100,
"iterations": 100,
"target-throughput": 25
},
{%- if runtime_fields is defined %}
{ "operation": "200s-in-range", "name": "200s-in-range-from-source-using-grok", "warmup-iterations": 100, "iterations": 100, "target-throughput": 5, "tags": ["200s-in-range", "from-source", "using-grok"] },
{ "operation": "200s-in-range", "name": "200s-in-range-from-keyword-using-grok", "warmup-iterations": 100, "iterations": 100, "target-throughput": 5, "tags": ["200s-in-range", "from-keyword", "using-grok"] },
{ "operation": "200s-in-range", "name": "200s-in-range-from-wildcard-using-grok", "warmup-iterations": 100, "iterations": 100, "target-throughput": 5, "tags": ["200s-in-range", "from-wildcard", "using-grok"] },
{ "operation": "200s-in-range", "name": "200s-in-range-from-source-using-dissect", "warmup-iterations": 100, "iterations": 100, "target-throughput": 5, "tags": ["200s-in-range", "from-source", "using-dissect"] },
{ "operation": "200s-in-range", "name": "200s-in-range-from-keyword-using-dissect", "warmup-iterations": 100, "iterations": 100, "target-throughput": 5, "tags": ["200s-in-range", "from-wildcard", "using-dissect"] },
{ "operation": "200s-in-range", "name": "200s-in-range-from-wildcard-using-dissect", "warmup-iterations": 100, "iterations": 100, "target-throughput": 5, "tags": ["200s-in-range", "from-wildcard", "using-dissect"] },
{ "operation": "200s-in-range", "name": "200s-in-range-from-source-using-index-of", "warmup-iterations": 100, "iterations": 100, "target-throughput": 5, "tags": ["200s-in-range", "from-source", "using-index-of"] },
{ "operation": "200s-in-range", "name": "200s-in-range-from-keyword-using-index-of", "warmup-iterations": 100, "iterations": 100, "target-throughput": 5, "tags": ["200s-in-range", "from-keyword", "using-index-of"] },
{ "operation": "200s-in-range", "name": "200s-in-range-from-wildcard-using-index-of", "warmup-iterations": 100, "iterations": 100, "target-throughput": 5, "tags": ["200s-in-range", "from-wildcard", "using-index-of"] },
{ "operation": "400s-in-range", "name": "400s-in-range-from-source-using-grok", "warmup-iterations": 100, "iterations": 100, "target-throughput": 0.3, "tags": ["400s-in-range", "from-source", "using-grok"] },
{ "operation": "400s-in-range", "name": "400s-in-range-from-keyword-using-grok", "warmup-iterations": 100, "iterations": 100, "target-throughput": 0.3, "tags": ["400s-in-range", "from-keyword", "using-grok"] },
{ "operation": "400s-in-range", "name": "400s-in-range-from-wildcard-using-grok", "warmup-iterations": 100, "iterations": 100, "target-throughput": 0.3, "tags": ["400s-in-range", "from-wildcard", "using-grok"] },
{ "operation": "400s-in-range", "name": "400s-in-range-from-source-using-dissect", "warmup-iterations": 100, "iterations": 100, "target-throughput": 0.5, "tags": ["400s-in-range", "from-source", "using-dissect"] },
{ "operation": "400s-in-range", "name": "400s-in-range-from-keyword-using-dissect", "warmup-iterations": 100, "iterations": 100, "target-throughput": 1, "tags": ["400s-in-range", "from-wildcard", "using-dissect"] },
{ "operation": "400s-in-range", "name": "400s-in-range-from-wildcard-using-dissect", "warmup-iterations": 100, "iterations": 100, "target-throughput": 0.3, "tags": ["400s-in-range", "from-wildcard", "using-dissect"] },
{ "operation": "400s-in-range", "name": "400s-in-range-from-source-using-index-of", "warmup-iterations": 100, "iterations": 100, "target-throughput": 1, "tags": ["400s-in-range", "from-source", "using-index-of"] },
{ "operation": "400s-in-range", "name": "400s-in-range-from-keyword-using-index-of", "warmup-iterations": 100, "iterations": 100, "target-throughput": 0.3, "tags": ["400s-in-range", "from-keyword", "using-index-of"] },
{ "operation": "400s-in-range", "name": "400s-in-range-from-wildcard-using-index-of", "warmup-iterations": 100, "iterations": 100, "target-throughput": 4, "tags": ["400s-in-range", "from-wildcard", "using-index-of"] },
{%- else %}
{
"operation": "200s-in-range",
"warmup-iterations": 500,
"iterations": 100,
"target-throughput": 25
},
{
"operation": "400s-in-range",
"warmup-iterations": 500,
"iterations": 100,
"target-throughput": 50
},
{%- endif %}
{
"operation": "hourly_agg",
"warmup-iterations": 100,
"iterations": 100,
"target-throughput": 0.2
},
{
"operation": "scroll",
"warmup-iterations": 100,
"iterations": 200,
"#COMMENT": "Throughput is considered per request. So we issue one scroll request per second which will retrieve 25 pages",
"target-throughput": 1
},
{
"operation": "desc_sort_timestamp",
"warmup-iterations": 200,
"iterations": 100,
"target-throughput": 2
},
{
"operation": "asc_sort_timestamp",
"warmup-iterations": 200,
"iterations": 100,
"target-throughput": 20
},
{
"operation": "desc_sort_with_after_timestamp",
"warmup-iterations": 10,
"iterations": 100,
"target-throughput": 1
},
{
"operation": "asc_sort_with_after_timestamp",
"warmup-iterations": 10,
"iterations": 100,
"target-throughput": 0.5
},
{
"operation": "desc_sort_timestamp_can_match_shortcut",
"warmup-iterations": 200,
"iterations": 100,
"target-throughput": 2
},
{
"operation": "desc_sort_timestamp_no_can_match_shortcut",
"warmup-iterations": 200,
"iterations": 100,
"target-throughput": 2
},
{%- if not runtime_fields is defined %}
{
"operation": "sort_keyword_can_match_shortcut",
"warmup-iterations": 200,
"iterations": 100,
"target-throughput": 2
},
{
"operation": "sort_keyword_no_can_match_shortcut",
"warmup-iterations": 200,
"iterations": 100,
"target-throughput": 2
},
{
"operation": "sort_numeric_can_match_shortcut",
"warmup-iterations": 200,
"iterations": 100,
"target-throughput": 2
},
{
"operation": "sort_numeric_no_can_match_shortcut",
"warmup-iterations": 200,
"iterations": 100,
"target-throughput": 2
},
{%- endif %}
{
"name": "force-merge-1-seg",
"operation": {
"operation-type": "force-merge",
"max-num-segments": 1,
"request-timeout": 7200
}
},
{
"name": "refresh-after-force-merge-1-seg",
"operation": "refresh"
},
{
"name": "wait-until-merges-1-seg-finish",
"operation": {
"operation-type": "index-stats",
"index": "_all",
"condition": {
"path": "_all.total.merges.current",
"expected-value": 0
},
"retry-until-success": true,
"include-in-reporting": false
}
},
{
"name": "desc-sort-timestamp-after-force-merge-1-seg",
"operation": "desc_sort_timestamp",
"warmup-iterations": 200,
"iterations": 100,
"target-throughput": 1
},
{
"name": "asc-sort-timestamp-after-force-merge-1-seg",
"operation": "asc_sort_timestamp",
"warmup-iterations": 200,
"iterations": 100,
"target-throughput": 50
},
{
"name": "desc-sort-with-after-timestamp-after-force-merge-1-seg",
"operation": "desc_sort_with_after_timestamp",
"warmup-iterations": 10,
"iterations": 100,
"target-throughput": 1
},
{
"name": "asc-sort-with-after-timestamp-after-force-merge-1-seg",
"operation": "asc_sort_with_after_timestamp",
"warmup-iterations": 10,
"iterations": 100,
"target-throughput": 0.5
}