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

Load Testing Camel Routes

2014-07-29 Thread Matt Raible
Hello all, I'm getting ready to put a Camel / CXF / Spring Boot application into production. Before I do, I want to load test and verify it has the same throughput as a the IBM Message Broker system it's replacing. Apparently, the old system can only do 6 concurrent connections because of remot

Re: Load testing for Camel appliation

2014-01-21 Thread Pontus Ullgren
ting: > from("...").to(nextStep)... > from(loadTest).to(nextStep)... > > loadTest: > http4:// and using JMeter > direct:// and using ? > ... > > > Jan > > >> -Ursprüngliche Nachricht- >> Von: bonnahu [mailto:bonn...@gma

AW: Load testing for Camel appliation

2014-01-20 Thread jhm
> -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 co

Load testing for Camel appliation

2014-01-20 Thread bonnahu
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

Re: Load testing

2011-05-03 Thread boday
p://benoday.blogspot.com -- View this message in context: http://camel.465427.n5.nabble.com/Load-testing-tp4369026p4369074.html Sent from the Camel - Users mailing list archive at Nabble.com.

Re: Load testing

2011-05-03 Thread Claus Ibsen
o later than X time before the first message. Mind that mock endpoints store a copy of the exchange in memory, so if you do load testing with 100 of messages it would eat up memory. And cause a degrade in performance. > > -- > ~The best men are men who benefit to others > http://michsa

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
-test.html Muhammad Ichsan wrote: > > Dear All > > I want to load testing my camel so that I know if my configuration - > e.g. concurrentConsumers=10 - can process a 10 messages at one time > concurrently. How to do this? Is there any real example? Thanks > > -- > ~The b

Load testing

2011-05-03 Thread Muhammad Ichsan
Dear All I want to load testing my camel so that I know if my configuration - e.g. concurrentConsumers=10 - can process a 10 messages at one time concurrently. How to do this? Is there any real example? Thanks -- ~The best men are men who benefit to others http://michsan.web.id 一緒に勉強しましょう

Re: exception in load-testing using DataSet component

2009-12-14 Thread Nick Chistyakov
Hello Willem and Clause! Thank you for response. I added: mockEndpoint.await(1, TimeUnit.MINUTES); and the test now runs fine :)) Best of the best regards, Nick On Mon, Dec 14, 2009 at 11:11 AM, Claus Ibsen wrote: > On Mon, Dec 14, 2009 at 9:09 AM, Willem Jiang > wrote: > > Hi, > > > > It l

Re: exception in load-testing using DataSet component

2009-12-14 Thread Claus Ibsen
On Mon, Dec 14, 2009 at 9:09 AM, Willem Jiang wrote: > Hi, > > It looks like the exception is thrown when the camel context is stopping and > your dataset is still sending the data. > > When you call assertMockEndpointsSatisfied(), camel will try to wait for the > message for about 30 second. > >

Re: exception in load-testing using DataSet component

2009-12-14 Thread Willem Jiang
Hi, It looks like the exception is thrown when the camel context is stopping and your dataset is still sending the data. When you call assertMockEndpointsSatisfied(), camel will try to wait for the message for about 30 second. If send a large amount of message, you need to add some sleep ti

exception in load-testing using DataSet component

2009-12-13 Thread Nick Chistyakov
Hello to all, I found several examples that are using DataSet (SimpleDataSet) for load tests. So I wrote that simple test: package com.etna.sandbox; import javax.jms.ConnectionFactory; import javax.naming.Context; import org.apache.activemq.ActiveMQConnectionFactory; import org.apache.camel.bui