René's URL Explorer Experiment


Title: [BUG] KeepAliveScheduler does not evict sessions after ping failure, causing unbounded CPU growth · Issue #1022 · modelcontextprotocol/java-sdk · GitHub

Open Graph Title: [BUG] KeepAliveScheduler does not evict sessions after ping failure, causing unbounded CPU growth · Issue #1022 · modelcontextprotocol/java-sdk

X Title: [BUG] KeepAliveScheduler does not evict sessions after ping failure, causing unbounded CPU growth · Issue #1022 · modelcontextprotocol/java-sdk

Description: Description When keep-alive-interval is configured on a Streamable HTTP MCP Server, KeepAliveScheduler periodically sends ping messages to all registered McpStreamableServerSession instances. When a session's stream is unavailable (clien...

Open Graph Description: Description When keep-alive-interval is configured on a Streamable HTTP MCP Server, KeepAliveScheduler periodically sends ping messages to all registered McpStreamableServerSession instances. When ...

X Description: Description When keep-alive-interval is configured on a Streamable HTTP MCP Server, KeepAliveScheduler periodically sends ping messages to all registered McpStreamableServerSession instances. When ...

Opengraph URL: https://github.com/modelcontextprotocol/java-sdk/issues/1022

X: @github

direct link

Domain: github.com


Hey, it has json ld scripts:
{"@context":"https://schema.org","@type":"DiscussionForumPosting","headline":"[BUG] KeepAliveScheduler does not evict sessions after ping failure, causing unbounded CPU growth","articleBody":"## Description\n\nWhen `keep-alive-interval` is configured on a Streamable HTTP MCP Server, `KeepAliveScheduler` periodically sends ping messages to all registered `McpStreamableServerSession` instances. When a session's stream is unavailable (client already disconnected), the ping fails and a WARN is logged, but **the session is never removed from the session map**. Over time, dead sessions accumulate indefinitely, causing increasing CPU usage as the scheduler iterates over a growing list of unreachable sessions every interval.\n\n## Environment\n\n- Spring AI: 1.1.4\n- MCP Java SDK: (bundled with Spring AI 1.1.4)\n- Java: JDK 25\n- Server: Tomcat (embedded via Spring Boot 3.4.1)\n- Transport: Streamable HTTP (`spring.ai.mcp.server.protocol=STREAMABLE`)\n\n## Configuration\n\n```yaml\nspring:\n  ai:\n    mcp:\n      server:\n        type: SYNC\n        protocol: STREAMABLE\n        streamable-http:\n          mcp-endpoint: /mcp\n          keep-alive-interval: 30s\n```\n\n## Steps to Reproduce\n\n1. Deploy an MCP Server with Streamable HTTP transport and `keep-alive-interval: 30s`\n2. Have multiple MCP clients connect, call tools, then disconnect (close TCP)\n3. Wait a few minutes and observe logs and CPU usage\n\n## Observed Behavior\n\nLogs fill with repeated warnings every 30 seconds, one per dead session:\n\n```\nWARN [io.modelcontextprotocol.util.KeepAliveScheduler]\nFailed to send keep-alive ping to session McpStreamableServerSession@3656e950: Stream unavailable for session d0a2a5b9-d427-49f6-8f0b-6c37293e2e35\n\nWARN [io.modelcontextprotocol.util.KeepAliveScheduler]\nFailed to send keep-alive ping to session McpStreamableServerSession@917a226: Stream unavailable for session 5e87f163-f127-4793-9fec-cd35b6a59327\n\nWARN [io.modelcontextprotocol.util.KeepAliveScheduler]\nFailed to send keep-alive ping to session McpStreamableServerSession@5795b3a2: Stream unavailable for session ...\n```\n\n- Dead sessions are **never** removed from the internal map\n- CPU usage grows linearly with the number of accumulated dead sessions\n- The `boundedElastic` thread pool is consumed by failed ping attempts\n- Eventually causes CPU alerts and degrades ability to serve new requests\n\nIn our production environment, CPU went from normal to sustained **135%+** within hours of deployment, triggered by ~50 disconnected clients accumulating dead sessions.\n\n## Expected Behavior\n\nWhen a ping fails (stream unavailable), `KeepAliveScheduler` should:\n\n1. Increment a failure counter for that session\n2. After N consecutive failures (e.g., 2-3), call `session.close()` and remove it from the session map\n3. Log the eviction at INFO level\n\n## Impact\n\n- **Severity: High** — causes progressive CPU degradation in production\n- Combined with the CLOSE-WAIT socket leak issue, can render a server completely unusable\n- No recovery without restart — dead sessions accumulate forever\n\n## Workaround\n\nDisable keep-alive entirely:\n\n```yaml\nspring:\n  ai:\n    mcp:\n      server:\n        streamable-http:\n          keep-alive-interval: 0s\n```\n\nThis stops the CPU waste but also removes the ability to detect stale sessions proactively.\n\n## Suggested Fix\n\nIn `KeepAliveScheduler`, after a failed ping:\n\n```java\n// Pseudocode\nvoid sendKeepAlive() {\n    Iterator\u003cMap.Entry\u003cString, McpStreamableServerSession\u003e\u003e it = sessions.entrySet().iterator();\n    while (it.hasNext()) {\n        Map.Entry\u003cString, McpStreamableServerSession\u003e entry = it.next();\n        try {\n            entry.getValue().sendPing();\n            failureCounters.remove(entry.getKey());\n        } catch (Exception e) {\n            int failures = failureCounters.merge(entry.getKey(), 1, Integer::sum);\n            if (failures \u003e= MAX_FAILURES) {\n                entry.getValue().close();\n                it.remove();\n                failureCounters.remove(entry.getKey());\n                log.info(\"Evicted dead session: {}\", entry.getKey());\n            }\n        }\n    }\n}\n```\n","author":{"url":"https://github.com/lxq19991111","@type":"Person","name":"lxq19991111"},"datePublished":"2026-06-11T04:24:42.000Z","interactionStatistic":{"@type":"InteractionCounter","interactionType":"https://schema.org/CommentAction","userInteractionCount":6},"url":"https://github.com/1022/java-sdk/issues/1022"}

route-pattern/_view_fragments/issues/show/:user_id/:repository/:id/issue_layout(.:format)
route-controllervoltron_issues_fragments
route-actionissue_layout
fetch-noncev2:188f81ca-19f7-724e-2c78-aa57473438ec
current-catalog-service-hash81bb79d38c15960b92d99bca9288a9108c7a47b18f2423d0f6438c5b7bcd2114
request-idC820:28C0E5:6DAA5E:8EDFCB:6A5C0934
html-safe-noncee832cf7592a7134c82b3e2e525f9fb449138b3aab41903690434dac1ab9ca7d1
visitor-payloadeyJyZWZlcnJlciI6IiIsInJlcXVlc3RfaWQiOiJDODIwOjI4QzBFNTo2REFBNUU6OEVERkNCOjZBNUMwOTM0IiwidmlzaXRvcl9pZCI6IjY0MTAzNTAyNzAwMTk3OTkzNDgiLCJyZWdpb25fZWRnZSI6ImlhZCIsInJlZ2lvbl9yZW5kZXIiOiJpYWQifQ==
visitor-hmac0ea23f1d2d5bde928b82550e9ce1f31628cc98f53af3a302cf7c1c264fe25465
hovercard-subject-tagissue:4637202780
github-keyboard-shortcutsrepository,issues,copilot
google-site-verificationApib7-x98H0j5cPqHWwSMm6dNU4GmODRoqxLiDzdx9I
octolytics-urlhttps://collector.github.com/github/collect
analytics-location///voltron/issues_fragments/issue_layout
fb:app_id1401488693436528
apple-itunes-appapp-id=1477376905, app-argument=https://github.com/_view_fragments/issues/show/modelcontextprotocol/java-sdk/1022/issue_layout
twitter:imagehttps://opengraph.githubassets.com/22089853800d67873cbfc4484af5667ec6f794a4c7d443e3de6a178b9e0889b7/modelcontextprotocol/java-sdk/issues/1022
twitter:cardsummary_large_image
og:imagehttps://opengraph.githubassets.com/22089853800d67873cbfc4484af5667ec6f794a4c7d443e3de6a178b9e0889b7/modelcontextprotocol/java-sdk/issues/1022
og:image:altDescription When keep-alive-interval is configured on a Streamable HTTP MCP Server, KeepAliveScheduler periodically sends ping messages to all registered McpStreamableServerSession instances. When ...
og:image:width1200
og:image:height600
og:site_nameGitHub
og:typeobject
og:author:usernamelxq19991111
hostnamegithub.com
expected-hostnamegithub.com
None5290d7e14309ad1e76106a9c4237bd1041517e83ea182c8ab756752cb0c6940b
turbo-cache-controlno-preview
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
disable-turbofalse
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/issues/1022#start-of-content
https://github.com/
Sign in https://github.com/login?return_to=https%3A%2F%2Fgithub.com%2Fmodelcontextprotocol%2Fjava-sdk%2Fissues%2F1022
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%2Fissues%2F1022
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%2Fvoltron%2Fissues_fragments%2Fissue_layout&source=header-repo&source_repo=modelcontextprotocol%2Fjava-sdk
Reloadhttps://github.com/modelcontextprotocol/java-sdk/issues/1022
Reloadhttps://github.com/modelcontextprotocol/java-sdk/issues/1022
Reloadhttps://github.com/modelcontextprotocol/java-sdk/issues/1022
Please reload this pagehttps://github.com/modelcontextprotocol/java-sdk/issues/1022
modelcontextprotocol https://github.com/modelcontextprotocol
java-sdkhttps://github.com/modelcontextprotocol/java-sdk
Notifications https://github.com/login?return_to=%2Fmodelcontextprotocol%2Fjava-sdk
Fork 977 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
#1028https://github.com/modelcontextprotocol/java-sdk/pull/1028
[BUG] KeepAliveScheduler does not evict sessions after ping failure, causing unbounded CPU growthhttps://github.com/modelcontextprotocol/java-sdk/issues/1022#top
#1028https://github.com/modelcontextprotocol/java-sdk/pull/1028
https://github.com/lxq19991111
lxq19991111https://github.com/lxq19991111
on Jun 11, 2026https://github.com/modelcontextprotocol/java-sdk/issues/1022#issue-4637202780
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.