feat: auto-configure virtual threads for SQS listener containers - #1695
Open
Theprathamshah wants to merge 1 commit into
Open
feat: auto-configure virtual threads for SQS listener containers#1695Theprathamshah 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:36
Theprathamshah
force-pushed
the
feature/1693-sqs-virtual-threads
branch
from
August 30, 2026 20:38
e5cf262 to
575275d
Compare
Contributor
|
@Theprathamshah , thanks for the PR. Let's keep this PR scoped to SQS, and please open a separate one for Kinesis and other integrations. |
Author
|
@tomazfernandes Sure let me create separate PR for kinesis. |
Theprathamshah
force-pushed
the
feature/1693-sqs-virtual-threads
branch
from
August 30, 2026 20:51
575275d to
30f6289
Compare
Author
|
@tomazfernandes I've separated the changes as discussed. This PR focuses exclusively on the SQS listener container auto-configuration (the Kinesis changes are in #1696). Both are ready for review whenever you have time. Thanks! |
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 SQS listener container factories.
SqsAutoConfigurationto detect the standard Spring Boot propertyspring.threads.virtual.enabled.SimpleAsyncTaskExecutor(withvirtualThreads = true) for both the message processing executor (componentsTaskExecutor) and the acknowledgment executor (acknowledgementResultTaskExecutor).💡 Motivation and Context
Closes #1693.
Integrates Spring Boot's global standard
spring.threads.virtual.enabledtoggle directly into Spring Cloud AWS SQS listeners, allowing users to leverage high-throughput non-blocking concurrency (Project Loom) out-of-the-box on Java 21+ stacks.💚 How did you test it?
SqsAutoConfigurationTestverifying SQS containers operate on virtual threads when enabled and fallback to standard platform thread execution when disabled.