Hi,

To add to Jans answer.

JMeter can also handle JMS
http://jmeter.apache.org/usermanual/build-jms-topic-test-plan.html

An alternative to JMeter if your "message channel" is a SOAP or REST
endpoint is to use soapUI (with loadUI).
http://www.soapui.org/

It also has support for JMS though I never tested it my self.

// Pontus

On Tue, Jan 21, 2014 at 7:29 AM, Jan Matèrne (jhm) <apa...@materne.de> wrote:
> I am not aware of special Camel load test tools.
> Testing the whole route depends on the incoming chanel where you want to
> give load on.
>
> If it is from(http://) then you could tools like JMeter.
> Having from(file://) you have to create files faster Camel slurps them.
> Having from(jdbc://) you need a big database table.
> ...
>
> You also could insert a special endpoint for load test.
> Having:
>   from("...").to(nextStep)...
> Inserting:
>   from("...").to(nextStep)...
>   from(loadTest).to(nextStep)...
>
> loadTest:
>   http4:// and using JMeter
>   direct:// and using ?
>   ...
>
>
> Jan
>
>
>> -----Ursprüngliche Nachricht-----
>> Von: bonnahu [mailto:bonn...@gmail.com]
>> Gesendet: Dienstag, 21. Januar 2014 06:22
>> An: users@camel.apache.org
>> Betreff: Load testing for Camel appliation
>>
>> Hi all, currently I am working on a Camel application which has a
>> event-driven consumer listening on a message channel. After message
>> arrives, the processor will parse XML content to retrieve the
>> properties we want. I want to do some load testing for the app, can
>> someone give me some suggestion of tools or apps of performing load
>> testing?
>>
>>
>>
>> --
>> View this message in context: http://camel.465427.n5.nabble.com/Load-
>> testing-for-Camel-appliation-tp5746265.html
>> Sent from the Camel - Users mailing list archive at Nabble.com.
>

Reply via email to