diff options
author | dalyd <david.daly@mongodb.com> | 2017-09-05 16:06:21 -0400 |
---|---|---|
committer | dalyd <david.daly@mongodb.com> | 2017-09-06 09:17:09 -0400 |
commit | 3e8948166541da547ac03f9265ecfa49a63f7685 (patch) | |
tree | d775ece819d4c3177fa4203b4187188c3ab19a59 /etc | |
parent | bb52da4e829a1122ea09d5b16f08ccbffdb42dc7 (diff) | |
download | mongo-3e8948166541da547ac03f9265ecfa49a63f7685.tar.gz |
SERVER-30938: Enable ycsb-wmajority tests in system_perf.yml
Diffstat (limited to 'etc')
-rw-r--r-- | etc/system_perf.yml | 48 |
1 files changed, 48 insertions, 0 deletions
diff --git a/etc/system_perf.yml b/etc/system_perf.yml index 2d959fa7412..0d17e8f2968 100644 --- a/etc/system_perf.yml +++ b/etc/system_perf.yml @@ -362,6 +362,50 @@ tasks: vars: script_flags: --ycsb-throughput-analysis reports +- name: industry_benchmarks_wmajority_WT + depends_on: + - name: compile + variant: linux-standalone + commands: + - func: "prepare environment" + vars: + storageEngine: "wiredTiger" + test: "ycsb-wmajority" + - func: "infrastructure provisioning" + - func: "configure mongodb cluster" + vars: + storageEngine: "wiredTiger" + - func: "run test" + vars: + storageEngine: "wiredTiger" + test: "ycsb-wmajority" + - func: "make test log artifact" + - func: "analyze" + vars: + script_flags: --ycsb-throughput-analysis reports + +- name: industry_benchmarks_wmajority_MMAPv1 + depends_on: + - name: compile + variant: linux-standalone + commands: + - func: "prepare environment" + vars: + storageEngine: "mmapv1" + test: "ycsb-wmajority" + - func: "infrastructure provisioning" + - func: "configure mongodb cluster" + vars: + storageEngine: "mmapv1" + - func: "run test" + vars: + storageEngine: "mmapv1" + test: "ycsb-wmajority" + - func: "make test log artifact" + - func: "analyze" + vars: + script_flags: --ycsb-throughput-analysis reports + - name: core_workloads_WT depends_on: - name: compile @@ -757,6 +801,8 @@ buildvariants: - name: industry_benchmarks_WT - name: core_workloads_WT - name: industry_benchmarks_MMAPv1 + - name: industry_benchmarks_wmajority_WT + - name: industry_benchmarks_wmajority_MMAPv1 - name: core_workloads_MMAPv1 - name: mongos_workloads_WT - name: mongos_workloads_MMAPv1 @@ -780,6 +826,8 @@ buildvariants: - name: industry_benchmarks_WT - name: core_workloads_WT - name: industry_benchmarks_MMAPv1 + - name: industry_benchmarks_wmajority_WT + - name: industry_benchmarks_wmajority_MMAPv1 - name: core_workloads_MMAPv1 - name: secondary_performance_WT - name: secondary_performance_MMAPv1 |