Skip to content
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

jsonrpc: Stop background (more) rescans gracefully #2434

Merged
merged 3 commits into from
Mar 28, 2025

Conversation

jholdstock
Copy link
Member

@jholdstock jholdstock commented Oct 12, 2024

Use the server waitgroup to ensure background rescans can return on their own terms rather than being forcefully terminated early.

Using the server context instead of context.Background means that the long-lived rescan funcs are able to exit properly when the server is shutdown and its context is closed.

Based on #2435

@jholdstock jholdstock changed the title jsonrpc: Stop background rescans gracefully. jsonrpc: Stop background (more) rescans gracefully Oct 14, 2024
This ensures that the context of in-flight RPC requests is cancelled
when the dcrwallet process context is cancelled.
Use the server waitgroup to ensure background rescans can return on
their own terms rather than being forcefully terminated early.

This is still not an ideal situation because in the case where the
server/wallet is being shut down, RescanFromHeight will return with an
"rpc connection closed" error (or similar) rather than returning because
its provided context was cancelled. However, that is a notable
improvement over the existing situation which could result in an
unhandled panic.
Using the server context instead of context.Background means that the
long-lived rescan funcs are able to exit properly when the server is
shutdown and its context is closed.
@jrick
Copy link
Member

jrick commented Mar 28, 2025

Ah, i think this answers my question from 2435.

You are addressing the requests which may spawn a rescan in the background, not the rescanwallet method.

@@ -2056,7 +2056,8 @@ func (s *Server) importPrivKey(ctx context.Context, icmd any) (any, error) {
s.wg.Add(1)
go func() {
defer s.wg.Done()
_ = w.RescanFromHeight(context.Background(), n, scanFrom)
serverCtx := s.httpServer.BaseContext(nil)
Copy link
Member

Choose a reason for hiding this comment

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

We can use the outer context here instead of calling BaseContext ourselves. It will be canceled when the process begins shutdown.

Copy link
Member

Choose a reason for hiding this comment

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

or well no. let me test that as well. it's possible that this context is canceled after the handler returns....

Copy link
Member Author

Choose a reason for hiding this comment

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

By outer context do you mean the one passed into importPrivKey? That will be cancelled as soon as a response is sent to the RPC client, hence why we want to use the server context instead.

Copy link
Member

Choose a reason for hiding this comment

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

Yep, the rescan immediately exits with that suggested change.

@jrick jrick merged commit e17f572 into decred:master Mar 28, 2025
2 checks passed
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants