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

Fix: spawn task when opening new connection in acquire. #3516

Open
wants to merge 5 commits into
base: main
Choose a base branch
from

Conversation

joeydewaal
Copy link
Contributor

Does your PR solve an issue?

Fixes #3513,#3315,#3132,#2848

Ive read through the issues and I think this is the solution like proposed in #2848. However I don't think this is done yet. Should the connect_timeout be a part of the public api? Is 30 seconds a good default?

Copy link
Collaborator

@abonander abonander left a comment

Choose a reason for hiding this comment

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

This is a good start, but strictly speaking it doesn't fix #2848 because it doesn't retry the idle queue once it decides to connect. That's the problem there.

Once it passes its permit to the spawned task, it could try to acquire another and race to see which completes first. Since the connection is happening in a background task, the attempt won't be wasted, as it'll just return to the idle queue.

sqlx-core/src/pool/inner.rs Outdated Show resolved Hide resolved
@joeydewaal
Copy link
Contributor Author

joeydewaal commented Sep 21, 2024

Now the pool tries to get an idle connection while opening a new connection. It has a backoff mechanism (taken from connect) but I'm not sure if this is necessary?

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.

Pool should spawn a task when connecting in acquire()
2 participants