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 21, 2024
1 parent 9b329c3 commit 1df832a
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/scheduled.yml
Original file line number Diff line number Diff line change
Expand Up @@ -413,10 +413,10 @@ jobs:
- name: Checkout Repo
uses: actions/checkout@v4
with:
ref: "${{ inputs.ref || 'main' }}"
ref: "${{ inputs.ref }}"

- name: Install dependencies
run: sudo ./scripts/setup-ubuntu.sh
run: source ./scripts/setup-ubuntu.sh

- name: Download exchange fuzzer
uses: actions/download-artifact@v4
Expand All @@ -440,7 +440,7 @@ jobs:
&& echo -e "\n\Exchange fuzzer run finished successfully."
- name: Archive Exchange production artifacts
if: always()
if: ${{ !cancelled() }}
uses: actions/upload-artifact@v4
with:
name: exchange-fuzzer-failure-artifacts
Expand Down
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 1df832a

Please sign in to comment.