8000 Make AQL modification operations asynchronous by goedderz · Pull Request #21068 · arangodb/arangodb · GitHub
[go: up one dir, main page]

Skip to content

Make AQL modification operations asynchronous #21068

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 29 commits into from
Jun 20, 2024
Merged
Changes from 1 commit
Commits
Show all changes
29 commits
Select commit Hold shift + click to select a range
c787f51
Try to avoid synchronous waiting in AQL, and fix transaction lifetime…
goedderz Jun 6, 2024
a610077
Make the Query's resource monitor a shared_ptr
goedderz Jun 11, 2024
e16a0b4
Merge branch 'devel' of github.com:arangodb/arangodb into feature/mak…
goedderz Jun 11, 2024
2bd1475
Revert "Try to avoid synchronous waiting in AQL, and fix transaction …
goedderz Jun 11, 2024
6537d4b
Merge branch 'feature/make-query-resource-monitor-shared' into featur…
goedderz Jun 11, 2024
ee1b40d
Merge branch 'devel' of github.com:arangodb/arangodb into feature/mak…
goedderz Jun 13, 2024
effb1b8
Included review comments
goedderz Jun 13, 2024
b3ca915
Merge branch 'feature/make-query-resource-monitor-shared' of github.c…
goedderz Jun 17, 2024
5096702
Shorten BuilderLeaser lifetimes, and copy vocbase name
goedderz Jun 17, 2024
843f341
Added a maintainer-mode assertion
goedderz Jun 17, 2024
39522be
Serialize DBServer modification operations
goedderz Jun 17, 2024
193dc63
Merge branch 'devel' of github.com:arangodb/arangodb into feature/mak…
goedderz Jun 17, 2024
413fabc
Fixed gtests and CE compilation
goedderz Jun 17, 2024
68556fd
Fixed gtests
goedderz Jun 17, 2024
261fba2
Clean references to SharedAqlItemBlockPtr early enough
goedderz Jun 17, 2024
807fcb6
Fixed CE compilation
goedderz Jun 17, 2024
b821948
Merge branch 'devel' of github.com:arangodb/arangodb into feature/mak…
goedderz Jun 17, 2024
5543ebc
Merge branch 'feature/make-query-resource-monitor-shared' of github.c…
goedderz Jun 17, 2024
fb5beea
Make assertion concurrency-safe
goedderz Jun 17, 2024
afedb52
Unify handling of BuilderLeasers in processors
goedderz Jun 17, 2024
c4e42e5
Make internal gather nodes non-parallel in all cases
goedderz Jun 19, 2024
1b2d37d
Merge branch 'devel' of github.com:arangodb/arangodb into feature/mak…
goedderz Jun 19, 2024
ec9f11b
Update arangod/Transaction/Methods.cpp
goedderz Jun 20, 2024
d999326
Update arangod/Transaction/Methods.cpp
goedderz Jun 20, 2024
8ee9cc7
Merge branch 'devel' of github.com:arangodb/arangodb into feature/mak…
goedderz Jun 20, 2024
d8f6c20
Added CHANGELO 10000 G entry
goedderz Jun 20, 2024
d9bd683
Merge branch 'feature/make-aql-modifications-async' of github.com:ara…
goedderz Jun 20, 2024
d515b99
Avoid SIGSEGV when a database gets deleted mid-transaction
goedderz Jun 20, 2024
af69ed3
Merge branch 'devel' of github.com:arangodb/arangodb into feature/mak…
goedderz Jun 20, 2024
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
Update arangod/Transaction/Methods.cpp
Co-authored-by: Jan <jsteemann@users.noreply.github.com>
  • Loading branch information
goedderz and jsteemann authored Jun 20, 2024
commit ec9f11b778d9988e08722f6c9766fae1878b69e7
2 changes: 1 addition & 1 deletion arangod/Transaction/Methods.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -2266,7 +2266,7 @@ Future<OperationResult> transaction::Methods::documentLocal(
*this, collectionName, value, options);
if (getDocumentProcessorRes.fail()) {
co_return OperationResult(std::move(getDocumentProcessorRes).result(),
options);
std::move(options));
}
fut = getDocumentProcessorRes.get().execute();
}
Expand Down
0