8000 APM-84 | Add `spillOverThreshold*` options to Cursor API DocuBlock by Simran-B · Pull Request #17701 · arangodb/arangodb · GitHub
[go: up one dir, main page]

Skip to content

APM-84 | Add spillOverThreshold* options to Cursor API DocuBlock #17701

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 7 commits into from
Jan 9, 2023
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Query spillover startup option: fix typo, add unit
  • Loading branch information
Simran-B committed Nov 30, 2022
commit 46e1432141758da3932b1638b180671b7ae36ce0
5 changes: 3 additions & 2 deletions arangod/RestServer/TemporaryStorageFeature.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -175,8 +175,9 @@ query result in RAM, use a streaming query.)");
options
->addOption(
"--temp.intermediate-results-spillover-threshold-memory-usage",
"The memory usage threshold after which a spillover form RAM to disk "
"happens for intermediate results (threshold per query executor).",
"The memory usage threshold (in bytes) after which a spillover from "
"RAM to disk happens for intermediate results "
"(threshold per query executor).",
new SizeTParameter(&_spillOverThresholdMemoryUsage),
arangodb::options::makeDefaultFlags(
arangodb::options::Flags::Experimental))
Expand Down
0