summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorZixuan Zhuang <zixuan.zhuang@mongodb.com>2022-06-21 18:19:28 +0000
committerEvergreen Agent <no-reply@evergreen.mongodb.com>2022-06-21 18:51:50 +0000
commit5e8d70c8282df12f1bd4258a3b7540ae718330ac (patch)
treebec1f007860f28ec832a28d8466c24263a98744b
parent153d7c719b079637ce223dc88336caa403942894 (diff)
downloadmongo-5e8d70c8282df12f1bd4258a3b7540ae718330ac.tar.gz
SERVER-67082 Add new build variant for classic engine query microbenchmark
-rw-r--r--etc/perf.yml15
1 files changed, 11 insertions, 4 deletions
diff --git a/etc/perf.yml b/etc/perf.yml
index da53939a056..05cbcbc3c54 100644
--- a/etc/perf.yml
+++ b/etc/perf.yml
@@ -775,7 +775,7 @@ microbenchmark-buildvariants:
_linux-wt-standalone: &linux-wt-standalone
name: linux-wt-standalone
display_name: Standalone Linux inMemory
- batchtime: 240 # 4 hours
+ cron: "0 */4 * * *" # Every 4 hours starting at midnight
modules: *modules
expansions:
# We are explicitly tracking the rhel62 variant compile options from evergreen.yml for
@@ -826,7 +826,7 @@ microbenchmark-buildvariants:
_linux-wt-repl: &linux-wt-repl
name: linux-wt-repl
display_name: 1-Node ReplSet Linux inMemory
- batchtime: 240 # 4 hours
+ cron: "0 */4 * * *" # Every 4 hours starting at midnight
modules: *modules
expansions:
mongod_exec_wrapper: *exec_wrapper
@@ -856,13 +856,20 @@ buildvariants:
- <<: *linux-wt-standalone
name: linux-wt-standalone-all-feature-flags
display_name: Standalone Linux inMemory (all feature flags)
- batchtime: 1440 # 24 hours
+ cron: "0 0 * * *" # Every day starting at 00:00
expansions:
mongodb_setup: microbenchmarks_standalone-all-feature-flags
+ - <<: *linux-wt-standalone
+ name: linux-wt-standalone-classic-query-engine
+ display_name: Standalone Linux inMemory (Classic Query Engine)
+ cron: "0 0 * * 4" # 00:00 on Thursday
+ expansions:
+ mongodb_setup: microbenchmarks_standalone-classic-query-engine
+
- <<: *linux-wt-repl
name: linux-wt-repl-all-feature-flags
display_name: 1-Node ReplSet Linux inMemory (all feature flags)
- batchtime: 1440 # 24 hours
+ cron: "0 0 * * *" # Every day starting at 00:00
expansions:
mongodb_setup: microbenchmarks_replica-all-feature-flags