summaryrefslogtreecommitdiff
path: root/src/third_party/wiredtiger/test/cppsuite/configs/hs_cleanup_stress.txt
blob: db28136816017ce7a9f4b43c0fbadba5e5e29b85 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
# Run for an hour.
duration_seconds=3600,
# The configuration can produce a large number of updates at once, therefore use 500MB cache size 
# to hold these values.
# 1.5 GB
cache_size_mb=1536,
compression_enabled=true,
statistics_config=
(
    type=all,
    enable_logging=true
),
metrics_monitor=
(
    cache_hs_insert=
    (
        save=true,
    ),
    cc_pages_removed=
    (
        save=true,
    ),
    stat_cache_size=
    (
        # FIXME-WT-9339
        # one day maybe we'll stop blowing out the cache.
        max=200,
        runtime=true,
    ),
    stat_db_size=
    (
        save=true,
    ),
),
timestamp_manager=
(
    enabled=true,
    oldest_lag=1,
    stable_lag=10
),
workload_manager=
(
    checkpoint_config=
    (
        op_rate=60s,
    ),
    populate_config=
    (
        collection_count=100,
        key_count_per_collection=1000,
        key_size=50,
        thread_count=100,
        value_size=1000000
    ),
    read_config=
    (
        op_rate=5ms,
        ops_per_transaction=(max=1000,min=1),
        thread_count=20
    ),
    update_config=
    (
        op_rate=1ms,
        # Be careful to not aim too high with this config, if we fill the dirty cache and
        # all threads are trying to update, they'll get pulled into eviction and will get stuck.
        ops_per_transaction=(max=10,min=0),
        thread_count=100,
        value_size=1000000
    )
),
operation_tracker=
(
    enabled=false,
)