8000 Dedicated crash handler thread. by neunhoef · Pull Request #21826 · arangodb/arangodb · GitHub
[go: up one dir, main page]

Skip to content

Dedicated crash handler thread. #21826

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 30 commits into from
Jul 11, 2025
Merged
Changes from 1 commit
Commits
Show all changes
30 commits
Select commit Hold shift + click to select a range
c1d34c2
First draft and experiment.
neunhoef Jun 27, 2025
a0e27a6
Clean up code.
neunhoef Jun 27, 2025
abc4216
CHANGELOG.
neunhoef Jun 27, 2025
4a0e661
Take out test assertion again.
neunhoef Jun 27, 2025
27fb623
Increase backwards compatibility of the output.
neunhoef Jun 27, 2025
1cc8b35
Shut down crash handler thread when --version is used.
neunhoef Jun 27, 2025
4d39c2c
Merge remote-tracking branch 'origin/devel' into feature/crash-handle…
neunhoef Jun 30, 2025
5b45310
Merge remote-tracking branch 'origin/devel' into feature/crash-handle…
neunhoef Jun 30, 2025
3704b8e
Use atomic wait/notify_all for crash handler thread.
neunhoef Jun 30, 2025
dded8d4
Merge remote-tracking branch 'origin/devel' into feature/crash-handle…
neunhoef Jul 1, 2025
f308917
Explain state transitions.
neunhoef Jul 1, 2025
b5950e6
Cleaner shutdown.
neunhoef Jul 1, 2025
62e81ff
Take out commented out code.
neunhoef Jul 1, 2025
1f33096
clang-format.
neunhoef Jul 1, 2025
70b04f0
First phase of moving stuff to dedicated crash handler thread.
neunhoef Jul 1, 2025
ebf3c43
Rework suggested by reviewer.
neunhoef Jul 2, 2025
fb9813c
Take assertion out.
neunhoef Jul 2, 2025
4b8523d
Remove additional string for backwards compatibilty.
neunhoef Jul 2, 2025
c09a7c6
Add CrashHandler as thread name.
neunhoef Jul 2, 2025
c4d6bea
Thread exceptions.
neunhoef Jul 2, 2025
2a2f45e
Merge remote-tracking branch 'origin/devel' into feature/crash-handle…
neunhoef Jul 4, 2025
17d3f81
Merge remote-tracking branch 'origin/devel' into feature/crash-handle…
neunhoef Jul 4, 2025
58cf61d
Fixes suggested by reviewer.
neunhoef Jul 4, 2025
7ec0d64
Finishing touches suggested by the reviewer.
neunhoef Jul 4 8000 , 2025
065de5e
Merge remote-tracking branch 'origin/devel' into feature/crash-handle…
neunhoef Jul 8, 2025
1da431c
Merge remote-tracking branch 'origin/devel' into feature/crash-handle…
neunhoef Jul 8, 2025
0b9e10c
Merge remote-tracking branch 'origin/devel' into feature/crash-handle…
neunhoef Jul 10, 2025
ff2542f
Fix CHANGELOG.
neunhoef Jul 10, 2025
1c5508d
Update arangod/RestServer/arangod.cpp
neunhoef Jul 10, 2025
c5d4a61
A few more suggestions by reviewer.
neunhoef Jul 11, 2025
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
Merge remote-tracking branch 'origin/devel' into feature/crash-handle…
…r-thread
8000
  • Loading branch information
neunhoef committed Jun 30, 2025
commit 4d39c2c0d5bbc31268957dab901bdd792a27b01a
2 changes: 2 additions & 0 deletions CHANGELOG
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,8 @@ devel
* Move crash handling to a separate thread, this is cleaner and does not
violate rules for signal and termination handlers.

* FE-636: bump crypto-js from 3.3.0 to 4.2.0
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Is this a mistake in resolving conflicts?

Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Yes, it was a merge error. Is corrected.


* Add new API /_admin/server/aql-queries to show recently executed AQL queries.
This is per server and only available on coordinators and single servers.

Expand Down
You are viewing a condensed version of this merge commit. You can view the full changes here.
0