Skip to content

Commit

Permalink
Bump up memory capacity for ExchangeFuzzer
Browse files Browse the repository at this point in the history
Summary:
facebookincubator#9186 increased the amount of memory the ExchangeFuzzer uses (it
changed the Values operator to copy its Vectors if it's multi-threaded to prevent concurrency issues).

Bumping up the ExchangeFuzzer's memory capacity allows it to continue to succeed.

Reviewed By: kgpai

Differential Revision: D56527484

fbshipit-source-id: 474a53031fe4cf79928b1face2dabc6a85efea26
  • Loading branch information
Kevin Wilfong authored and facebook-github-bot committed Apr 24, 2024
1 parent 0643fa5 commit 6bdab47
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion velox/exec/tests/ExchangeFuzzer.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -526,7 +526,7 @@ int main(int argc, char** argv) {
folly::Init init{&argc, &argv};
memory::MemoryManagerOptions options;
options.useMmapAllocator = true;
options.allocatorCapacity = 8UL << 30;
options.allocatorCapacity = 15UL << 30;
options.useMmapArena = true;
options.mmapArenaCapacityRatio = 1;
memory::MemoryManager::initialize(options);
Expand Down

0 comments on commit 6bdab47

Please sign in to comment.