Thanks
So I've actually done this - I create 150 consumers up front - but I'm
finding I'm having the same problem as when I was dynamically creating
additional consumers. At one point I get into a situation where I have only
1 out of 150 consumers processing a message, yet there are hundreds of
mes
In 5.5.0 with gcInactiveDestinations=true, we've been sending messages via
STOMP with a receipt (proven in the stomp.log).
Just occassionally, the message appears to go missing, as does the queue
itself. The message is set to persist and has an expiry of several days.
Is this an issue that's know
Well Torsten, we use Camel and redelivery always happen at the point of
failure.
Thanks & Regards
Venkatesh Laguduva
On Tue, Oct 11, 2011 at 8:49 PM, Torsten Mielke wrote:
>
> On Oct 11, 2011, at 2:10 PM, Venkatesh Laguduva wrote:
>
> > this time, message was tried from the start of the route in
On Oct 11, 2011, at 2:10 PM, Venkatesh Laguduva wrote:
> this time, message was tried from the start of the route instead of trying
> from the point of failure
Not sure I fully understand you but every message that is retried will be sent
through the entire Camel route again.
Torsten Mielke
Hi,
We use camel and activemq in JBoss server; One of our routes is
transacted as below:
mocked route:
onException(BadException.class)
.maxRedeliveries(-1)
from('jms:queue:source')
.transacted()
.process(
...
if (some condition) {
throw new BadException('test')
}
)
while testing, we had st
> so is there any issue if
> I register, say, 250 consumers in this manner?
No, that should be fine. Some users connect thousands of consumers to one
broker instance.
Make sure the broker JVM has enough heap memory to hold all threads.
> it seems like ActiveMQ
> prefers all consumers to be regi
The inclusion of SLF4J 1.5.11 jar into ActiveMQ 5.5 binaries is creating
problems elsewhere where you are using SLF4J 1.6 because they clash each
other. Can be possible that the user actually satisfy externally, in a
standard way, this dependency to try to avoid these classpath conflicts???.
Cheer
you need to try a 6.5-SNAPSHOT, see:
https://issues.apache.org/jira/browse/AMQ-3374
2011/10/11 lzr :
> Hello all,
>
> From time to time I need to make huge transactions(say 40KB per message and
> 1 messages per transaction) to ActiveMQ, after trying all kinds of the
> configuration mode I fo