Reputation: 4109
I have aggregation configured in my code:
.aggregate(new BodyAggregationStrategy())
.constant(true)
.completionSize(1000) // Static value
.completionTimeout(300) // Static value
After I have started the Apache Camel context is it possible to change various parameters like completionSize and completionTimeout values?
When context is running a lot of data are transfering throught it and I want to increase some parameters like queue size and so on.
Upvotes: 0
Views: 456
Reputation: 9639
What you could do, is via the CameContext
Upvotes: 2
Reputation: 3374
Have you tried to connect via JMX and see if those parameters can be configured?
Upvotes: 0