feat: auto-configure virtual threads for Kinesis listener containers - #1696
Open
Theprathamshah wants to merge 1 commit into
Open
feat: auto-configure virtual threads for Kinesis listener containers#1696Theprathamshah wants to merge 1 commit into
Theprathamshah wants to merge 1 commit into
Conversation
Theprathamshah
requested review from
MatejNedic,
maciejwalkowiak and
tomazfernandes
as code owners
August 30, 2026 20:51
Theprathamshah
force-pushed
the
feature/1693-kinesis-virtual-threads
branch
from
August 30, 2026 20:53
f90d62a to
09221bd
Compare
1 task
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
📢 Type of change
📜 Description
This pull request adds native support for Java 21+ Virtual Threads to Kinesis and KCL message-driven channel adapters.
KinesisMessageDrivenChannelAdapterandKclMessageDrivenChannelAdapterto hook into the globalspring.threads.virtual.enabledproperty.SimpleAsyncTaskExecutorwithvirtualThreads = true(wrapped usingExecutorServiceAdapterforKinesisMessageDrivenChannelAdapterto comply with lifecycle cast/shutdown contracts).💡 Motivation and Context
Relates to #1693.
Integrates Spring Boot's global standard
spring.threads.virtual.enabledtoggle directly into Spring Cloud AWS Kinesis adapters, allowing users to leverage high-throughput non-blocking concurrency (Project Loom) out-of-the-box on Java 21+ stacks.💚 How did you test it?
KinesisVirtualThreadsTestverifyingKinesisMessageDrivenChannelAdapterandKclMessageDrivenChannelAdapterexecute processing tasks on virtual threads under active Loom configs.