diff options
author | Susan LoVerso <sue@mongodb.com> | 2016-04-13 09:31:39 -0400 |
---|---|---|
committer | Susan LoVerso <sue@mongodb.com> | 2016-04-13 09:31:39 -0400 |
commit | a23ff7273096284de28ed4dca7a45dc6c6fb7222 (patch) | |
tree | 0c0af2e41484be42ef2918c6f2da04fa725d76b9 /bench | |
parent | 74d29087fa5e67c44f5340302f0b99dcdb1cc78a (diff) | |
download | mongo-a23ff7273096284de28ed4dca7a45dc6c6fb7222.tar.gz |
WT-2547 Add eviction configs for 1 thread.
Diffstat (limited to 'bench')
-rw-r--r-- | bench/wtperf/runners/evict-btree-1.wtperf | 11 | ||||
-rw-r--r-- | bench/wtperf/runners/evict-lsm-1.wtperf | 12 |
2 files changed, 23 insertions, 0 deletions
diff --git a/bench/wtperf/runners/evict-btree-1.wtperf b/bench/wtperf/runners/evict-btree-1.wtperf new file mode 100644 index 00000000000..24da4dd7902 --- /dev/null +++ b/bench/wtperf/runners/evict-btree-1.wtperf @@ -0,0 +1,11 @@ +# wtperf options file: evict btree configuration +conn_config="cache_size=50M" +table_config="type=file" +icount=10000000 +report_interval=5 +run_time=120 +populate_threads=1 +threads=((count=16,reads=1)) +# Add throughput/latency monitoring +max_latency=2000 +sample_interval=5 diff --git a/bench/wtperf/runners/evict-lsm-1.wtperf b/bench/wtperf/runners/evict-lsm-1.wtperf new file mode 100644 index 00000000000..ad885d98eb7 --- /dev/null +++ b/bench/wtperf/runners/evict-lsm-1.wtperf @@ -0,0 +1,12 @@ +# wtperf options file: evict lsm configuration +conn_config="cache_size=50M,lsm_manager=(worker_thread_max=6)" +table_config="type=lsm,lsm=(chunk_size=2M),os_cache_dirty_max=16MB" +compact=true +icount=10000000 +report_interval=5 +run_time=120 +populate_threads=1 +threads=((count=16,reads=1)) +# Add throughput/latency monitoring +max_latency=2000 +sample_interval=5 |