# 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
        # Re-enable the runtime check once we manage cache better.
        max=200,
        runtime=false,
    ),
    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,
)
