0
0
mirror of https://github.com/mongodb/mongo.git synced 2024-11-30 00:56:44 +01:00

SERVER-19475: Decrease Mongo-perf evergreen batch time, and add 1-Node MMAP

This commit is contained in:
dalyd 2015-07-17 11:24:35 -04:00
parent c9eebd803e
commit f415198fef

View File

@ -186,11 +186,11 @@ tasks:
buildvariants:
- name: linux-wt-standalone
display_name: Linux WT Standalone
batchtime: 180 # 3 hours
batchtime: 90 # 1.5 hours
expansions:
compile_flags: -j$(grep -c ^processor /proc/cpuinfo) CC=/opt/mongodbtoolchain/bin/gcc CXX=/opt/mongodbtoolchain/bin/g++ --release
mongod_exec_wrapper: "numactl --physcpubind=4,5,6,7 -i 1"
perf_exec_wrapper: "numactl --physcpubind=1,2,3 -i 0"
compile_flags: &compile_flags -j$(grep -c ^processor /proc/cpuinfo) CC=/opt/mongodbtoolchain/bin/gcc CXX=/opt/mongodbtoolchain/bin/g++ --release
mongod_exec_wrapper: &exec_wrapper "numactl --physcpubind=4,5,6,7 -i 1"
perf_exec_wrapper: &perf_wrapper "numactl --physcpubind=1,2,3 -i 0"
mongod_flags: "--storageEngine=wiredTiger --logpath ./mongod.log --fork --syncdelay 0 --nojournal --setParameter ttlMonitorEnabled=false --wiredTigerCacheSizeGB 16"
run_on:
@ -208,11 +208,11 @@ buildvariants:
- name: linux-mmap-standalone
display_name: Linux MMAPv1 Standalone
batchtime: 180 # 3 hours
batchtime: 90 # 1.5 hours
expansions:
compile_flags: -j$(grep -c ^processor /proc/cpuinfo) CC=/opt/mongodbtoolchain/bin/gcc CXX=/opt/mongodbtoolchain/bin/g++ --release
mongod_exec_wrapper: "numactl --physcpubind=4,5,6,7 -i 1"
perf_exec_wrapper: "numactl --physcpubind=1,2,3 -i 0"
compile_flags: *compile_flags
mongod_exec_wrapper: *exec_wrapper
perf_exec_wrapper: *perf_wrapper
mongod_flags: "--storageEngine=mmapv1 --logpath ./mongod.log --fork --syncdelay 0 --nojournal --setParameter ttlMonitorEnabled=false"
run_on:
@ -230,11 +230,11 @@ buildvariants:
- name: linux-wt-repl
display_name: Linux WT 1-Node ReplSet
batchtime: 4320 # 3 day
batchtime: 360 # 6 hours
expansions:
compile_flags: -j$(grep -c ^processor /proc/cpuinfo) CC=/opt/mongodbtoolchain/bin/gcc CXX=/opt/mongodbtoolchain/bin/g++ --release
mongod_exec_wrapper: "numactl --physcpubind=4,5,6,7 -i 1"
perf_exec_wrapper: "numactl --physcpubind=1,2,3 -i 0"
compile_flags: *compile_flags
mongod_exec_wrapper: *exec_wrapper
perf_exec_wrapper: *perf_wrapper
mongod_flags: "--replSet=test --storageEngine=wiredTiger --logpath ./mongod.log --fork --syncdelay 0 --nojournal --setParameter ttlMonitorEnabled=false --wiredTigerCacheSizeGB 16 --oplogSize 100000"
run_on:
@ -247,3 +247,23 @@ buildvariants:
- name: insert
- name: misc
- name: singleThreaded
- name: linux-mmap-repl
display_name: Linux MMapv1 1-Node ReplSet
batchtime: 360 # 6 hours
expansions:
compile_flags: *compile_flags
mongod_exec_wrapper: *exec_wrapper
perf_exec_wrapper: *perf_wrapper
mongod_flags: "--replSet=test --storageEngine=mmapv1 --logpath ./mongod.log --fork --syncdelay 0 --nojournal --setParameter ttlMonitorEnabled=false --oplogSize 100000"
run_on:
- "centos6-perf"
tasks:
- name: compile
distros:
- rhel55
- name: update
- name: insert
- name: misc
- name: singleThreaded