Skip to content

Commit

Permalink
Enable wal_compression in crash_tests (#10141)
Browse files Browse the repository at this point in the history
Summary:
Same as title

Pull Request resolved: #10141

Test Plan:
```
export CRASH_TEST_EXT_ARGS=" --wal_compression=zstd"
 make crash_test -j
```

Reviewed By: riversand963

Differential Revision: D37042810

Pulled By: akankshamahajan15

fbshipit-source-id: 53f0793d78241f1b5c954dcc808cb4c0a3e9172a
  • Loading branch information
akankshamahajan15 authored and facebook-github-bot committed Jun 9, 2022
1 parent f85b31a commit ecfd4ae
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions tools/db_crashtest.py
Original file line number Diff line number Diff line change
Expand Up @@ -174,9 +174,7 @@
"detect_filter_construct_corruption": lambda: random.choice([0, 1]),
"adaptive_readahead": lambda: random.choice([0, 1]),
"async_io": lambda: random.choice([0, 1]),
# Temporarily disable wal compression because it causes backup/checkpoint to miss
# compressed WAL files.
"wal_compression": "none",
"wal_compression": lambda: random.choice(["none", "zstd"]),
"verify_sst_unique_id_in_manifest": 1, # always do unique_id verification
"secondary_cache_uri": "",
}
Expand Down

0 comments on commit ecfd4ae

Please sign in to comment.