CAMEL-23281: fix split/aggregate deadlock with SynchronousExecutorService in transacted routes#22493
Merged
Croway merged 1 commit intoapache:camel-4.18.xfrom Apr 8, 2026
Conversation
…vice in transacted routes Process aggregate completion inline for SynchronousExecutorService instead of going through the reactive queue. The CAMEL-23030 change from scheduleSync to schedule causes a deadlock when the surrounding split is transacted: the nested await/executeFromQueue cycles interact with Pipeline.scheduleMain queue swapping, making pending tasks unreachable.
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.
Backport of #22492 to camel-4.18.x.
Summary
SynchronousExecutorServicewith split + aggregate in transacted routesscheduleSync(task)toschedule(task)forSynchronousExecutorService. The aggregated exchange loses the transacted flag (Exchange.copy()doesn't preserve it), so this new branch is always taken.schedule()queues the completion task, but the surrounding transacted split creates nestedawait → executeFromQueuecycles wherePipeline.scheduleMain()queue swapping makes the task unreachable — deadlock.processor.process(exchange, callback)forSynchronousExecutorService, bypassing the reactive queue entirely.Test plan
SplitAggregateInChoiceSynchronousExecutorTest— 3 tests (non-transacted, transacted, transacted+choice)SplitAggregateSynchronousExecutorStackOverflowIssueTest— CAMEL-23030 regression guard passes