Skip to content

Commit

Permalink
Reduce allocator capacity.
Browse files Browse the repository at this point in the history
  • Loading branch information
kgpai committed Mar 19, 2024
1 parent b3c7fef commit 8a2d18f
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 @@ -408,7 +408,7 @@ int main(int argc, char** argv) {
folly::Init init{&argc, &argv};
memory::MemoryManagerOptions options;
options.useMmapAllocator = true;
options.allocatorCapacity = 20UL << 30;
options.allocatorCapacity = 8UL << 30;
options.useMmapArena = true;
options.mmapArenaCapacityRatio = 1;
memory::MemoryManager::initialize(options);
Expand Down

0 comments on commit 8a2d18f

Please sign in to comment.