-
Notifications
You must be signed in to change notification settings - Fork 129
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: closes pool maintainer on invalidation #784
fix: closes pool maintainer on invalidation #784
Conversation
When the session pool is marked as invalid, we immediately close the pool maintainer in order to keep it from trying to replinish the pool. This way we prevent useless batch create sessions requests.
This fixes the following problem
|
Codecov Report
@@ Coverage Diff @@
## master #784 +/- ##
============================================
+ Coverage 85.01% 85.06% +0.05%
- Complexity 2561 2564 +3
============================================
Files 143 143
Lines 14005 14037 +32
Branches 1337 1344 +7
============================================
+ Hits 11906 11941 +35
+ Misses 1537 1533 -4
- Partials 562 563 +1 Continue to review full report at Codecov.
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Nice catch!
@thiagotnunes I just thought of one small catch with this:
The above is probably also the reason that a number of the tests were cancelled, because they never finished (still waiting for the session pool to close). The solution would be to only conditionally do +1 in step 2 above for the pool maintainer. If it has already been closed because the session pool is invalid, then we should not wait for it to close. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
(Sorry for the flip-flopping, see my previous comment)
@olavloite Thanks for spotting this, will work on the fix. |
When closing the pool, only waits for the pool maintainer to close if it has not been closed before.
Makes sure to close the pool maintainer only if it has not been closed already. Also before returning to the caller, makes sure to mark the closing as complete if there are no pending closures.
@olavloite Fixed the implementation, now we only close the |
google-cloud-spanner/src/main/java/com/google/cloud/spanner/SessionPool.java
Outdated
Show resolved
Hide resolved
Some tests seem to be getting stuck eventually, I think I introduced a bug somewhere. Will mark it as do not merge until I had the time to investigate. |
google-cloud-spanner/src/main/java/com/google/cloud/spanner/SessionPool.java
Outdated
Show resolved
Hide resolved
google-cloud-spanner/src/main/java/com/google/cloud/spanner/SessionPool.java
Outdated
Show resolved
Hide resolved
Verifies that the pool maintainer is not closed before closing it. Also moves the check of pendingClosures into the synchronized block to make sure no stale reads are made.
* fix: closes pool maintainer on invalidation When the session pool is marked as invalid, we immediately close the pool maintainer in order to keep it from trying to replinish the pool. This way we prevent useless batch create sessions requests. * fix: checks for pool maintainer closed status When closing the pool, only waits for the pool maintainer to close if it has not been closed before. * fix: only closes pool maintainer if not closed Makes sure to close the pool maintainer only if it has not been closed already. Also before returning to the caller, makes sure to mark the closing as complete if there are no pending closures. * fix: avoids npe when closing pool maintainer * fix: checks pool maintainer is not closed on close Verifies that the pool maintainer is not closed before closing it. Also moves the check of pendingClosures into the synchronized block to make sure no stale reads are made.
This is an auto-generated regeneration of the .pb.go files by cloud.google.com/go/internal/gapicgen. Once this PR is submitted, genbot will update the corresponding PR to depend on the newer version of go-genproto, and assign reviewers. Whilst this or any regen PR is open in go-genproto, genbot will not create any more regeneration PRs. If all regen PRs are closed, gapicgen will create a new set of regeneration PRs once per night. If you have been assigned to review this PR, please: - Ensure that CI is passing. If it's failing, it requires your manual attention. - Approve and submit this PR if you believe it's ready to ship. That will prompt genbot to assign reviewers to the google-cloud-go PR. Corresponding google-cloud-go PR: googleapis/google-cloud-go#5808 Changes: feat(dialogflow/cx): added support for locking an agent for changes feat: added data format specification for export agent PiperOrigin-RevId: 437848093 Source-Link: googleapis/googleapis@daffb06 chore(gaming): remove unused imports PiperOrigin-RevId: 437796977 Source-Link: googleapis/googleapis@9346947 chore(googleads): update a few Bazel import statements Committer: @aohren PiperOrigin-RevId: 437728534 Source-Link: googleapis/googleapis@e1b5a01 chore: regenerate API index Source-Link: googleapis/googleapis@36e9ea9 feat: Publish BigQuery Analytics Hub API v1beta1 client PiperOrigin-RevId: 437365521 Source-Link: googleapis/googleapis@b08a6a2 chore: regenerate API index Source-Link: googleapis/googleapis@7ee73a3 docs(retail): users can self enroll retail search feature on cloud console docs: suggest search users not to send IP and use hashed user id docs: deprecate request_id in ImportProductsRequest docs: deprecate search dynamic_facet_spec and suggest to config on cloud console docs: keep the API doc up-to-date with recent changes feat: add new AddLocalInventories and RemoveLocalInventories APIs feat: users cannot switch to empty default branch unless force override feat: allow search users to skip validation for invalid boost specs feat: support search personalization feat: search returns applied control ids in the response PiperOrigin-RevId: 437355889 Source-Link: googleapis/googleapis@4d00815 feat(dialogflow/cx): added support for locking an agent for changes feat: added data format specification for export agent PiperOrigin-RevId: 437338899 Source-Link: googleapis/googleapis@94287f4 chore(bazel): colocate Go targets in google/api with same importpath PiperOrigin-RevId: 437269160 Source-Link: googleapis/googleapis@651416f docs: clarified the deprecation of TEMPLATE in intent training phrase type PiperOrigin-RevId: 437265289 Source-Link: googleapis/googleapis@8e6b72f feat(dlp): new Bytes and File types: POWERPOINT and EXCEL PiperOrigin-RevId: 437260831 Source-Link: googleapis/googleapis@3c34a40
🤖 I have created a release *beep* *boop* --- ### [2.6.2](googleapis/java-spanner-jdbc@v2.6.1...v2.6.2) (2022-03-14) ### Dependencies * update dependency com.google.cloud:google-cloud-spanner-bom to v6.21.2 ([googleapis#783](googleapis/java-spanner-jdbc#783)) ([1625ad0](googleapis/java-spanner-jdbc@1625ad0)) --- This PR was generated with [Release Please](https://github.com/googleapis/release-please). See [documentation](https://github.com/googleapis/release-please#release-please).
When the session pool is marked as invalid, we immediately close the pool maintainer in order to keep it from trying to replenish the pool. This way we prevent useless batch create sessions requests.
Fixes #768