RE: Load Testing Camel Routes

2014-07-30 Thread Elvio Caruana (ecaruana)
hub.com/excilys/gatling/wiki/Gatling-2 [2] http://httpd.apache.org/docs/2.2/programs/ab.html Elvio -Original Message- From: Christian Müller [mailto:christian.muel...@gmail.com] Sent: 29 July 2014 21:32 To: users@camel.apache.org Subject: Re: Load Testing Camel Routes Hi Matt! We are using

Re: Load Testing Camel Routes

2014-07-29 Thread Christian Müller
Hi Matt! We are using httpcore-ab [1] to load test our web services. Unfortunately, you cannot change the payload for each test, but it works well for us. [1] http://search.maven.org/#artifactdetails|org.apache.httpcomponents|httpcore-ab|4.3.2|jar Best, Christian - Software Int

Re: Load testing for Camel appliation

2014-01-21 Thread Pontus Ullgren
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 neve

Re: Load testing

2011-05-03 Thread boday
just use a mock result endpoint and assert that the total processing time was within an acceptable range... resultEndpoint.expectedMessageCount(100); long start = System.currentTimeMillis(); //send messages resultEndpoint.assertIsSatisfied(); assertTrue("took too long", (System.currentTimeMill

Re: Load testing

2011-05-03 Thread Claus Ibsen
On Wed, May 4, 2011 at 6:53 AM, Muhammad Ichsan wrote: > On Wed, May 4, 2011 at 11:27 AM, boday wrote: >> here are a few links that might help... >> > > Thanks! > > But, how about time limitation? I need to make sure that when sending > 100 messages in concurrency 20 into a 5s processor, camel ca

Re: Load testing

2011-05-03 Thread Muhammad Ichsan
On Wed, May 4, 2011 at 11:27 AM, boday wrote: > here are a few links that might help... > Thanks! But, how about time limitation? I need to make sure that when sending 100 messages in concurrency 20 into a 5s processor, camel can process 20 messages in 5s. -- ~The best men are men who benefit

Re: Load testing

2011-05-03 Thread boday
here are a few links that might help... http://camel.apache.org/dataset.html http://svn.apache.org/viewvc/camel/trunk/components/camel-jms/src/test/java/org/apache/camel/component/jms/tuning/PerformanceRouteTest.java?view=markup http://benoday.blogspot.com/2011/04/camel-activemq-performance-test