@@ -192,6 +192,14 @@ def all_profile_variants:
192
192
} as $chainsync_cluster
193
193
|
194
194
##
195
+ ### Definition vocabulary: filtering
196
+ ##
197
+ ({}
198
+ | .analysis.filters = []
199
+ | .analysis.filter_exprs = []
200
+ ) as $no_filtering
201
+ |
202
+ ##
195
203
### Definition vocabulary: timescale
196
204
##
197
205
{ genesis :
@@ -219,22 +227,18 @@ def all_profile_variants:
219
227
|
220
228
({}
221
229
| .node.shutdown_on_block_synced = 1
222
- | .analysis.filters = []
223
230
) as $for_1blk
224
231
|
225
232
({}
226
233
| .node.shutdown_on_block_synced = 3
227
- | .analysis.filters = []
228
234
) as $for_3blk
229
235
|
230
236
({}
231
237
| .node.shutdown_on_block_synced = 15
232
- | .analysis.filters = []
233
238
) as $for_15blk
234
239
|
235
240
({}
236
241
| .node.shutdown_on_block_synced = 30
237
- | .analysis.filters = []
238
242
) as $for_30blk
239
243
|
240
244
##
@@ -277,13 +281,12 @@ def all_profile_variants:
277
281
##
278
282
### Definition vocabulary: scenario
279
283
##
280
- ($mainnet_timescale * $chainsync_cluster *
284
+ ($mainnet_timescale * $chainsync_cluster * $no_filtering * $without_tracer *
281
285
{ desc : "Mainnet chain syncing benchmark"
282
286
, scenario : "chainsync"
283
287
, preset : "mainnet"
284
288
, analysis :
285
289
{ type : "performance"
286
- , filters : []
287
290
}
288
291
}) as $scenario_chainsync
289
292
|
@@ -300,15 +303,15 @@ def all_profile_variants:
300
303
##
301
304
### Definition vocabulary: base variant
302
305
##
303
- ($scenario_fixed_loaded * $doublet * $dataset_empty * $for_1blk *
306
+ ($scenario_fixed_loaded * $doublet * $dataset_empty * $for_1blk * $no_filtering *
304
307
{ desc : "Stop as soon as we've seen a single block"
305
308
}) as $startstop_base
306
309
|
307
- ($scenario_fixed_loaded * $doublet * $dataset_empty * $for_3blk *
310
+ ($scenario_fixed_loaded * $doublet * $dataset_empty * $for_3blk * $no_filtering *
308
311
{ desc : "Miniature dataset, CI-friendly duration, test scale"
309
312
}) as $citest_base
310
313
|
311
- ($scenario_fixed_loaded * $doublet * $dataset_miniature * $for_15blk *
314
+ ($scenario_fixed_loaded * $doublet * $dataset_miniature * $for_15blk * $no_filtering *
312
315
{ desc : "Miniature dataset, CI-friendly duration, bench scale"
313
316
}) as $cibench_base
314
317
|
0 commit comments