8000 Introduce callstack splitting to avoid stackoverflows with large AQL queries by mpoeter · Pull Request #14351 · arangodb/arangodb · GitHub
[go: up one dir, main page]

Skip to content

Introduce callstack splitting to avoid stackoverflows with large AQL queries #14351

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 12 commits into from
Jun 30, 2021
Prev Previous commit
Next Next commit
Update arangod/RestServer/QueryRegistryFeature.cpp
Co-authored-by: Jan <jsteemann@users.noreply.github.com>
  • Loading branch information
mpoeter and jsteemann authored Jun 15, 2021
commit 8d08d89c7e61c141de95ef9d74046b367daf7421
3 changes: 2 additions & 1 deletion arangod/RestServer/QueryRegistryFeature.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -307,7 +307,8 @@ options->addOption("--query.max-nodes-per-callstack",
"maximum number execution nodes on the callstack before "
"splitting the remaining nodes into a separate thread",
new UInt64Parameter(&_maxNodesPerCallstack),
arangodb::options::makeDefaultFlags(arangodb::options::Flags::Hidden));
arangodb::options::makeDefaultFlags(arangodb::options::Flags::Hidden))
.setIntroducedIn(30900);

options->addOption("--query.registry-ttl",
"default time-to-live of cursors and query snippets (in "
Expand Down
0