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

[bundle] Don't ping DBAL connection if it wasn't opened #414

Merged
merged 1 commit into from
Mar 27, 2018

Conversation

ramunasd
Copy link
Contributor

Issue appears when symfony app has more than one connection defined. $connection->ping() always tries to open connection regardless it was used previously or not.

@makasim
Copy link
Member

makasim commented Mar 27, 2018

The purpose of the extension is to make sure the connection is valid, bypassing the check contradicts the goal of it.

Just disable the extension.

@ramunasd
Copy link
Contributor Author

This extension is cool and very usefull. The problem is that it opens and keeps all connections, even those which are not used in consumer.
Let's say we have 10 dbal configs and 100 workers, then each worker tries to keep all dbal connections alive and total connection count is 1000, but only 100 is required.

@makasim
Copy link
Member

makasim commented Mar 27, 2018

The purpose of the extension is to restore the connection which is timeouted. Is there a way to tell the difference between not used connection\new one and timeouted one?

@ramunasd
Copy link
Contributor Author

Yes, it is easy to check whether connection was opened previously or not. For this purpose DBAL\Connection contains flag $_isConnected which is accessible via ->isConnected().
So, if:

  • isConnected() == true, then it means connection was opened previously and it might be lost due to some reason. Next call to ping() checks it.
  • isConnected() == false, then it means connection was not opened previously, it is closed now and there is no need to perform any additional checks.

By default Doctrine opens connections on demand, so there is no need to ensure that all possible connections are alive.

@makasim
Copy link
Member

makasim commented Mar 27, 2018

@ramunasd thank you for the clarification. It makes sense.

@makasim makasim merged commit 6a3af5c into php-enqueue:master Mar 27, 2018
ASKozienko pushed a commit that referenced this pull request Nov 2, 2018
[bundle] Don't ping DBAL connection if it wasn't opened
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