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

Skip to content

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

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
Document allowDirtyReads query options of Cursor API
  • Loading branch information
Simran-B committed Dec 2, 2022
commit 06a7d6da6f6edfc4325e5bc991458aa2475d5ccb
12 changes: 12 additions & 0 deletions Documentation/DocuBlocks/Rest/Cursors/post_api_cursor.md
Original file line number Diff line number Diff line change
Expand Up @@ -226,6 +226,18 @@ results by changing the access rights of users on collections.

This feature is only available in the Enterprise Edition.

@RESTSTRUCT{allowDirtyReads,post_api_cursor_opts,boolean,optional,}
If you set this option to `true` and execute the query against a cluster
deployment, then the Coordinator is allowed to read from any shard replica and
not only from the leader.

You may observe data inconsistencies (dirty reads) when reading from followers,
namely obsolete revisions of documents because changes have not yet been
replicated to the follower, as well as changes to documents before they are
officially committed on the leader.

This feature is only available in the Enterprise Edition.

@RESTDESCRIPTION
The query details include the query string plus optional query options and
bind parameters. These values need to be passed in a JSON representation in
Expand Down
0