Hi,
I have a camel route
from("jetty:http://0.0.0.0:8087/url1").to("activemq:queue:queue1)
and i want to use this to log persistent messages.
How do i achieve multithreaded message producer through this route. Is this multithreaded by default?
Basically, i want to send persistent messages to broker in parallel since many httpclients are sending messages to this jetty endpoint.
Yes this happens out of the box. The jetty consumer is using Jetty under the hood, which is multi threaded. It has a thread pool of about 200+ by default. You can configure this though.