René's URL Explorer Experiment


Title: Evict streamable HTTP sessions after failed keep-alive pings by lxq19991111 · Pull Request #1028 · modelcontextprotocol/java-sdk · GitHub

Open Graph Title: Evict streamable HTTP sessions after failed keep-alive pings by lxq19991111 · Pull Request #1028 · modelcontextprotocol/java-sdk

X Title: Evict streamable HTTP sessions after failed keep-alive pings by lxq19991111 · Pull Request #1028 · modelcontextprotocol/java-sdk

Description: Summary Fixes #1022. Evict dead Streamable HTTP sessions after repeated keep-alive ping failures. When keep-alive-interval is enabled, KeepAliveScheduler currently detects dead sessions by logging failed pings, but the failed sessions remain in the Streamable HTTP provider's session registry. Over time, the scheduler keeps pinging the same unreachable sessions every interval, causing repeated WARN logs and CPU usage that grows with the number of accumulated dead sessions. This PR adds keep-alive success/failure hooks and lets the Streamable HTTP servlet provider evict the logical session after consecutive keep-alive failures. Dependency / Review Order Depends on #1027. #1027 establishes the transport-level lifecycle behavior: servlet async lifecycle events and SSE write failures close only the current HTTP/SSE transport while keeping the logical MCP session registered. This PR builds on that behavior by evicting the logical MCP session only after repeated keep-alive ping failures. After #1027 lands, this PR should be rebased on top of it so the keep-alive eviction behavior does not conflict with transport-level write-failure cleanup. Related Issues and PRs Fixes #1022. Depends on #1027 for servlet async lifecycle cleanup and write-failure semantics. Related to #952 and #972: this PR should not be interpreted as deleting the logical session on a single request-specific write failure. That behavior belongs to #1027 / #972. Related to #920: transient write failures should not immediately orphan a session, so this PR uses a consecutive-failure threshold rather than evicting on the first failure. Changes Add success and failure callbacks to KeepAliveScheduler. Keep the new scheduler callbacks backward compatible by defaulting them to no-op handlers. Track consecutive keep-alive ping failures in HttpServletStreamableServerTransportProvider. Reset the failure count after a successful keep-alive ping. Evict and close a Streamable HTTP session after 3 consecutive keep-alive ping failures. Clear failure counts on session deletion and provider shutdown. Guard failure-count reset and eviction with session identity checks so stale keep-alive results cannot affect a replaced session. Add focused tests for scheduler callbacks and Streamable HTTP keep-alive eviction behavior. Rationale The issue suggested doing the failure counter and session removal directly in KeepAliveScheduler. This PR intentionally keeps KeepAliveScheduler transport-agnostic. KeepAliveScheduler only receives a Supplier>. It does not own the Streamable HTTP provider's session registry, and it cannot safely remove entries from that registry directly. The Streamable HTTP servlet provider owns the sessions map, so it also owns eviction. The scheduler reports ping success or failure through hooks, and the provider decides whether to reset the failure count, keep the session, or evict it. This PR also avoids evicting on the first failure. A single failed ping can be transient, especially around load balancer timeouts, reconnects, request-specific streams, or temporary transport unavailability. Requiring 3 consecutive failures provides a conservative boundary between transient transport failure and a logical session that is no longer reachable. Session TTL is intentionally left out of this PR. TTL may still be useful as a separate defense-in-depth policy, but this PR focuses only on sessions that keep-alive has already identified as repeatedly unreachable. Scope This PR intentionally focuses on: KeepAliveScheduler Streamable HTTP servlet session eviction in HttpServletStreamableServerTransportProvider Out of scope: Servlet async lifecycle cleanup and write-failure retention, handled in #1027 Explicit session TTL Configurable keep-alive failure threshold Session persistence / distributed session storage Last-Event-ID resumability / event store support Deprecated HttpServletSseServerTransportProvider How Has This Been Tested? mvn -pl mcp-core -Dtest=KeepAliveSchedulerTests,HttpServletStreamableServerTransportProviderTests test mvn -pl mcp-core test The added scheduler tests cover: null success/failure callback validation success callback invocation after successful ping failure callback invocation after failed ping callback exceptions do not stop the scheduler The added provider tests cover: first keep-alive failure does not evict the session repeated keep-alive failures evict and close the session successful keep-alive resets the failure count stale failures from an old session instance do not evict a replacement session with the same id Types of changes Bug fix (non-breaking change which fixes an issue) New feature (non-breaking change which adds functionality) Breaking change (fix or feature that would cause existing functionality to change) Documentation update Checklist I have read the MCP Documentation My code follows the repository's style guidelines New and existing tests pass locally I have added appropriate error handling I have added or updated documentation as needed

Open Graph Description: Summary Fixes #1022. Evict dead Streamable HTTP sessions after repeated keep-alive ping failures. When keep-alive-interval is enabled, KeepAliveScheduler currently detects dead sessions by logging ...

X Description: Summary Fixes #1022. Evict dead Streamable HTTP sessions after repeated keep-alive ping failures. When keep-alive-interval is enabled, KeepAliveScheduler currently detects dead sessions by logging ...

Opengraph URL: https://github.com/modelcontextprotocol/java-sdk/pull/1028

X: @github

direct link

Domain: github.com

route-pattern/:user_id/:repository/pull/:id/files(.:format)
route-controllerpull_requests
route-actionfiles
fetch-noncev2:ddd460e1-f0c5-ab0d-7c0f-09bfddae83f6
current-catalog-service-hashae870bc5e265a340912cde392f23dad3671a0a881730ffdadd82f2f57d81641b
request-idC68A:15BB49:21EDC4A:2C91D4C:6A5CA783
html-safe-nonce62088586e57f463e7c26e6a49b17806e3717ccddbd763614d4eea083d3a095ae
visitor-payloadeyJyZWZlcnJlciI6IiIsInJlcXVlc3RfaWQiOiJDNjhBOjE1QkI0OToyMUVEQzRBOjJDOTFENEM6NkE1Q0E3ODMiLCJ2aXNpdG9yX2lkIjoiNzQ0OTkwMDAzOTc2NTAxMDMwNyIsInJlZ2lvbl9lZGdlIjoiaWFkIiwicmVnaW9uX3JlbmRlciI6ImlhZCJ9
visitor-hmacc3a96a529e29dfc5009618efac63442de516a0159af0b722e143e34b72d0bc75
hovercard-subject-tagpull_request:3862294167
github-keyboard-shortcutsrepository,pull-request-list,pull-request-conversation,pull-request-files-changed,copilot
google-site-verificationApib7-x98H0j5cPqHWwSMm6dNU4GmODRoqxLiDzdx9I
octolytics-urlhttps://collector.github.com/github/collect
analytics-location///pull_requests/show/files
fb:app_id1401488693436528
apple-itunes-appapp-id=1477376905, app-argument=https://github.com/modelcontextprotocol/java-sdk/pull/1028/files
twitter:imagehttps://avatars.githubusercontent.com/u/268150704?s=400&v=4
twitter:cardsummary_large_image
og:imagehttps://avatars.githubusercontent.com/u/268150704?s=400&v=4
og:image:altSummary Fixes #1022. Evict dead Streamable HTTP sessions after repeated keep-alive ping failures. When keep-alive-interval is enabled, KeepAliveScheduler currently detects dead sessions by logging ...
og:site_nameGitHub
og:typeobject
hostnamegithub.com
expected-hostnamegithub.com
None5290d7e14309ad1e76106a9c4237bd1041517e83ea182c8ab756752cb0c6940b
turbo-cache-controlno-preview
diff-viewunified
go-importgithub.com/modelcontextprotocol/java-sdk git https://github.com/modelcontextprotocol/java-sdk.git
octolytics-dimension-user_id182288589
octolytics-dimension-user_loginmodelcontextprotocol
octolytics-dimension-repository_id919609219
octolytics-dimension-repository_nwomodelcontextprotocol/java-sdk
octolytics-dimension-repository_publictrue
octolytics-dimension-repository_is_forkfalse
octolytics-dimension-repository_network_root_id919609219
octolytics-dimension-repository_network_root_nwomodelcontextprotocol/java-sdk
turbo-body-classeslogged-out env-production page-responsive full-width
disable-turbotrue
browser-stats-urlhttps://api.github.com/_private/browser/stats
browser-errors-urlhttps://api.github.com/_private/browser/errors
release9c975978430e9ad293956f2bbdaf153b1bd84a99
ui-targetfull
theme-color#1e2327
color-schemelight dark

Links:

Skip to contenthttps://github.com/modelcontextprotocol/java-sdk/pull/1028/files#start-of-content
https://github.com/
Sign in https://github.com/login?return_to=https%3A%2F%2Fgithub.com%2Fmodelcontextprotocol%2Fjava-sdk%2Fpull%2F1028%2Ffiles
GitHub CopilotWrite better code with AIhttps://github.com/features/copilot
GitHub Copilot appDirect agents from issue to mergehttps://github.com/features/ai/github-app
MCP RegistryNewIntegrate external toolshttps://github.com/mcp
ActionsAutomate any workflowhttps://github.com/features/actions
CodespacesInstant dev environmentshttps://github.com/features/codespaces
IssuesPlan and track workhttps://github.com/features/issues
Code ReviewManage code changeshttps://github.com/features/code-review
GitHub Advanced SecurityFind and fix vulnerabilitieshttps://github.com/security/advanced-security
Code securitySecure your code as you buildhttps://github.com/security/advanced-security/code-security
Secret protectionStop leaks before they starthttps://github.com/security/advanced-security/secret-protection
Why GitHubhttps://github.com/why-github
Documentationhttps://docs.github.com
Bloghttps://github.blog
Changeloghttps://github.blog/changelog
Marketplacehttps://github.com/marketplace
View all featureshttps://github.com/features
Enterpriseshttps://github.com/enterprise
Small and medium teamshttps://github.com/team
Startupshttps://github.com/enterprise/startups
Nonprofitshttps://github.com/solutions/industry/nonprofits
App Modernizationhttps://github.com/solutions/use-case/app-modernization
DevSecOpshttps://github.com/solutions/use-case/devsecops
DevOpshttps://github.com/solutions/use-case/devops
CI/CDhttps://github.com/solutions/use-case/ci-cd
View all use caseshttps://github.com/solutions/use-case
Healthcarehttps://github.com/solutions/industry/healthcare
Financial serviceshttps://github.com/solutions/industry/financial-services
Manufacturinghttps://github.com/solutions/industry/manufacturing
Governmenthttps://github.com/solutions/industry/government
View all industrieshttps://github.com/solutions/industry
View all solutionshttps://github.com/solutions
AIhttps://github.com/resources/articles?topic=ai
Software Developmenthttps://github.com/resources/articles?topic=software-development
DevOpshttps://github.com/resources/articles?topic=devops
Securityhttps://github.com/resources/articles?topic=security
View all topicshttps://github.com/resources/articles
Customer storieshttps://github.com/customer-stories
Events & webinarshttps://github.com/resources/events
Ebooks & reportshttps://github.com/resources/whitepapers
Business insightshttps://github.com/solutions/executive-insights
GitHub Skillshttps://skills.github.com
Documentationhttps://docs.github.com
Customer supporthttps://support.github.com
Community forumhttps://github.com/orgs/community/discussions
Trust centerhttps://github.com/trust-center
Partnershttps://github.com/partners
View all resourceshttps://github.com/resources
GitHub SponsorsFund open source developershttps://github.com/open-source/sponsors
Security Labhttps://securitylab.github.com
Maintainer Communityhttps://maintainers.github.com
Acceleratorhttps://github.com/open-source/accelerator
GitHub Starshttps://stars.github.com
Archive Programhttps://archiveprogram.github.com
Topicshttps://github.com/topics
Trendinghttps://github.com/trending
Collectionshttps://github.com/collections
Enterprise platformAI-powered developer platformhttps://github.com/enterprise
GitHub Advanced SecurityEnterprise-grade security featureshttps://github.com/security/advanced-security
Copilot for BusinessEnterprise-grade AI featureshttps://github.com/features/copilot/copilot-business
Premium SupportEnterprise-grade 24/7 supporthttps://github.com/enterprise/premium-support
Pricinghttps://github.com/pricing
Search syntax tipshttps://docs.github.com/search-github/github-code-search/understanding-github-code-search-syntax
documentationhttps://docs.github.com/search-github/github-code-search/understanding-github-code-search-syntax
Sign in https://github.com/login?return_to=https%3A%2F%2Fgithub.com%2Fmodelcontextprotocol%2Fjava-sdk%2Fpull%2F1028%2Ffiles
Sign up https://github.com/signup?ref_cta=Sign+up&ref_loc=header+logged+out&ref_page=%2F%3Cuser-name%3E%2F%3Crepo-name%3E%2Fpull_requests%2Fshow%2Ffiles&source=header-repo&source_repo=modelcontextprotocol%2Fjava-sdk
Reloadhttps://github.com/modelcontextprotocol/java-sdk/pull/1028/files
Reloadhttps://github.com/modelcontextprotocol/java-sdk/pull/1028/files
Reloadhttps://github.com/modelcontextprotocol/java-sdk/pull/1028/files
Please reload this pagehttps://github.com/modelcontextprotocol/java-sdk/pull/1028/files
modelcontextprotocol https://github.com/modelcontextprotocol
java-sdkhttps://github.com/modelcontextprotocol/java-sdk
Notifications https://github.com/login?return_to=%2Fmodelcontextprotocol%2Fjava-sdk
Fork 978 https://github.com/login?return_to=%2Fmodelcontextprotocol%2Fjava-sdk
Star 3.6k https://github.com/login?return_to=%2Fmodelcontextprotocol%2Fjava-sdk
Code https://github.com/modelcontextprotocol/java-sdk
Issues 134 https://github.com/modelcontextprotocol/java-sdk/issues
Pull requests 147 https://github.com/modelcontextprotocol/java-sdk/pulls
Discussions https://github.com/modelcontextprotocol/java-sdk/discussions
Actions https://github.com/modelcontextprotocol/java-sdk/actions
Projects https://github.com/modelcontextprotocol/java-sdk/projects
Models https://github.com/modelcontextprotocol/java-sdk/models
Security and quality 2 https://github.com/modelcontextprotocol/java-sdk/security
Insights https://github.com/modelcontextprotocol/java-sdk/pulse
Code https://github.com/modelcontextprotocol/java-sdk
Issues https://github.com/modelcontextprotocol/java-sdk/issues
Pull requests https://github.com/modelcontextprotocol/java-sdk/pulls
Discussions https://github.com/modelcontextprotocol/java-sdk/discussions
Actions https://github.com/modelcontextprotocol/java-sdk/actions
Projects https://github.com/modelcontextprotocol/java-sdk/projects
Models https://github.com/modelcontextprotocol/java-sdk/models
Security and quality https://github.com/modelcontextprotocol/java-sdk/security
Insights https://github.com/modelcontextprotocol/java-sdk/pulse
Sign up for GitHub https://github.com/signup?return_to=%2Fmodelcontextprotocol%2Fjava-sdk%2Fissues%2Fnew%2Fchoose
terms of servicehttps://docs.github.com/terms
privacy statementhttps://docs.github.com/privacy
Sign inhttps://github.com/login?return_to=%2Fmodelcontextprotocol%2Fjava-sdk%2Fissues%2Fnew%2Fchoose
lxq19991111https://github.com/lxq19991111
modelcontextprotocol:mainhttps://github.com/modelcontextprotocol/java-sdk/tree/main
lxq19991111:fix/keepalive-dead-session-eviction-cleanhttps://github.com/lxq19991111/java-sdk/tree/fix/keepalive-dead-session-eviction-clean
Conversation 2 https://github.com/modelcontextprotocol/java-sdk/pull/1028
Commits 1 https://github.com/modelcontextprotocol/java-sdk/pull/1028/commits
Checks 0 https://github.com/modelcontextprotocol/java-sdk/pull/1028/checks
Files changed https://github.com/modelcontextprotocol/java-sdk/pull/1028/files
Please reload this pagehttps://github.com/modelcontextprotocol/java-sdk/pull/1028/files
Evict streamable HTTP sessions after failed keep-alive pings https://github.com/modelcontextprotocol/java-sdk/pull/1028/files#top
Show all changes 1 commit https://github.com/modelcontextprotocol/java-sdk/pull/1028/files
2552098 Evict streamable HTTP sessions after failed keep-alive pings lxq19991111 Jun 14, 2026 https://github.com/modelcontextprotocol/java-sdk/pull/1028/commits/2552098d61e80d05aa9075ee318603f1846bfdc6
Clear filters https://github.com/modelcontextprotocol/java-sdk/pull/1028/files
Please reload this pagehttps://github.com/modelcontextprotocol/java-sdk/pull/1028/files
Please reload this pagehttps://github.com/modelcontextprotocol/java-sdk/pull/1028/files
HttpServletStreamableServerTransportProvider.java https://github.com/modelcontextprotocol/java-sdk/pull/1028/files#diff-412456de564a90c70920887a33ecdabccee9280519e32c8ae55815539f566ebc
KeepAliveScheduler.java https://github.com/modelcontextprotocol/java-sdk/pull/1028/files#diff-ba9f8c38dc59a227ee492f7739cb16c46f4fea1534944ab43196b4979d405780
HttpServletStreamableServerTransportProviderTests.java https://github.com/modelcontextprotocol/java-sdk/pull/1028/files#diff-62edebe3839f06038a5665ac6c940131e6471f8c4e11b88a61ee1e14050a817c
KeepAliveSchedulerTests.java https://github.com/modelcontextprotocol/java-sdk/pull/1028/files#diff-77828518b2e78230afcca86278607f50cbde518ecfef8743470d1d60878604ca
...o/modelcontextprotocol/server/transport/HttpServletStreamableServerTransportProvider.javahttps://github.com/modelcontextprotocol/java-sdk/pull/1028/files#diff-412456de564a90c70920887a33ecdabccee9280519e32c8ae55815539f566ebc
View file https://github.com/modelcontextprotocol/java-sdk/blob/2552098d61e80d05aa9075ee318603f1846bfdc6/mcp-core/src/main/java/io/modelcontextprotocol/server/transport/HttpServletStreamableServerTransportProvider.java
Open in desktop https://desktop.github.com
https://github.co/hiddenchars
https://github.com/modelcontextprotocol/java-sdk/pull/1028/{{ revealButtonHref }}
https://github.com/modelcontextprotocol/java-sdk/pull/1028/files#diff-412456de564a90c70920887a33ecdabccee9280519e32c8ae55815539f566ebc
https://github.com/modelcontextprotocol/java-sdk/pull/1028/files#diff-412456de564a90c70920887a33ecdabccee9280519e32c8ae55815539f566ebc
https://github.com/modelcontextprotocol/java-sdk/pull/1028/files#diff-412456de564a90c70920887a33ecdabccee9280519e32c8ae55815539f566ebc
https://github.com/modelcontextprotocol/java-sdk/pull/1028/files#diff-412456de564a90c70920887a33ecdabccee9280519e32c8ae55815539f566ebc
https://github.com/modelcontextprotocol/java-sdk/pull/1028/files#diff-412456de564a90c70920887a33ecdabccee9280519e32c8ae55815539f566ebc
https://github.com/modelcontextprotocol/java-sdk/pull/1028/files#diff-412456de564a90c70920887a33ecdabccee9280519e32c8ae55815539f566ebc
https://github.com/modelcontextprotocol/java-sdk/pull/1028/files#diff-412456de564a90c70920887a33ecdabccee9280519e32c8ae55815539f566ebc
https://github.com/modelcontextprotocol/java-sdk/pull/1028/files#diff-412456de564a90c70920887a33ecdabccee9280519e32c8ae55815539f566ebc
https://github.com/modelcontextprotocol/java-sdk/pull/1028/files#diff-412456de564a90c70920887a33ecdabccee9280519e32c8ae55815539f566ebc
https://github.com/modelcontextprotocol/java-sdk/pull/1028/files#diff-412456de564a90c70920887a33ecdabccee9280519e32c8ae55815539f566ebc
https://github.com/modelcontextprotocol/java-sdk/pull/1028/files#diff-412456de564a90c70920887a33ecdabccee9280519e32c8ae55815539f566ebc
https://github.com/modelcontextprotocol/java-sdk/pull/1028/files#diff-412456de564a90c70920887a33ecdabccee9280519e32c8ae55815539f566ebc
https://github.com/modelcontextprotocol/java-sdk/pull/1028/files#diff-412456de564a90c70920887a33ecdabccee9280519e32c8ae55815539f566ebc
https://github.com/modelcontextprotocol/java-sdk/pull/1028/files#diff-412456de564a90c70920887a33ecdabccee9280519e32c8ae55815539f566ebc
https://github.com/modelcontextprotocol/java-sdk/pull/1028/files#diff-412456de564a90c70920887a33ecdabccee9280519e32c8ae55815539f566ebc
https://github.com/modelcontextprotocol/java-sdk/pull/1028/files#diff-412456de564a90c70920887a33ecdabccee9280519e32c8ae55815539f566ebc
mcp-core/src/main/java/io/modelcontextprotocol/util/KeepAliveScheduler.javahttps://github.com/modelcontextprotocol/java-sdk/pull/1028/files#diff-ba9f8c38dc59a227ee492f7739cb16c46f4fea1534944ab43196b4979d405780
View file https://github.com/modelcontextprotocol/java-sdk/blob/2552098d61e80d05aa9075ee318603f1846bfdc6/mcp-core/src/main/java/io/modelcontextprotocol/util/KeepAliveScheduler.java
Open in desktop https://desktop.github.com
https://github.co/hiddenchars
https://github.com/modelcontextprotocol/java-sdk/pull/1028/{{ revealButtonHref }}
https://github.com/modelcontextprotocol/java-sdk/pull/1028/files#diff-ba9f8c38dc59a227ee492f7739cb16c46f4fea1534944ab43196b4979d405780
https://github.com/modelcontextprotocol/java-sdk/pull/1028/files#diff-ba9f8c38dc59a227ee492f7739cb16c46f4fea1534944ab43196b4979d405780
https://github.com/modelcontextprotocol/java-sdk/pull/1028/files#diff-ba9f8c38dc59a227ee492f7739cb16c46f4fea1534944ab43196b4979d405780
https://github.com/modelcontextprotocol/java-sdk/pull/1028/files#diff-ba9f8c38dc59a227ee492f7739cb16c46f4fea1534944ab43196b4979d405780
https://github.com/modelcontextprotocol/java-sdk/pull/1028/files#diff-ba9f8c38dc59a227ee492f7739cb16c46f4fea1534944ab43196b4979d405780
https://github.com/modelcontextprotocol/java-sdk/pull/1028/files#diff-ba9f8c38dc59a227ee492f7739cb16c46f4fea1534944ab43196b4979d405780
https://github.com/modelcontextprotocol/java-sdk/pull/1028/files#diff-ba9f8c38dc59a227ee492f7739cb16c46f4fea1534944ab43196b4979d405780
https://github.com/modelcontextprotocol/java-sdk/pull/1028/files#diff-ba9f8c38dc59a227ee492f7739cb16c46f4fea1534944ab43196b4979d405780
https://github.com/modelcontextprotocol/java-sdk/pull/1028/files#diff-ba9f8c38dc59a227ee492f7739cb16c46f4fea1534944ab43196b4979d405780
https://github.com/modelcontextprotocol/java-sdk/pull/1028/files#diff-ba9f8c38dc59a227ee492f7739cb16c46f4fea1534944ab43196b4979d405780
https://github.com/modelcontextprotocol/java-sdk/pull/1028/files#diff-ba9f8c38dc59a227ee492f7739cb16c46f4fea1534944ab43196b4979d405780
...elcontextprotocol/server/transport/HttpServletStreamableServerTransportProviderTests.javahttps://github.com/modelcontextprotocol/java-sdk/pull/1028/files#diff-62edebe3839f06038a5665ac6c940131e6471f8c4e11b88a61ee1e14050a817c
View file https://github.com/modelcontextprotocol/java-sdk/blob/2552098d61e80d05aa9075ee318603f1846bfdc6/mcp-core/src/test/java/io/modelcontextprotocol/server/transport/HttpServletStreamableServerTransportProviderTests.java
Open in desktop https://desktop.github.com
https://github.co/hiddenchars
https://github.com/modelcontextprotocol/java-sdk/pull/1028/{{ revealButtonHref }}
Please reload this pagehttps://github.com/modelcontextprotocol/java-sdk/pull/1028/files
https://github.com
Termshttps://docs.github.com/site-policy/github-terms/github-terms-of-service
Privacyhttps://docs.github.com/site-policy/privacy-policies/github-privacy-statement
Securityhttps://github.com/security
Statushttps://www.githubstatus.com/
Communityhttps://github.community/
Docshttps://docs.github.com/
Contacthttps://support.github.com?tags=dotcom-footer

Viewport: width=device-width


URLs of crawlers that visited me.