Re: Kaha store corrupted?

2007-02-16 Thread Rob Davies
Hi Albert, if you get a chance - could you try with the latest from SVN - to see if you still have the issue with Kaha ? cheers, Rob On 17 Feb 2007, at 01:36, Albert Strasheim wrote: Hey Rob Most attempts to reproduce this issue has run me into hangs on UsageManager.waitForSpace. With

Re: Demand Forwarding Bridge issue

2007-02-16 Thread Rob Davies
why is conduitSubscriptions false ? On 17 Feb 2007, at 01:48, naga007 wrote: I have complex application which has a producer and multiple consumers consuming messages from a Queue. The application runs on two different servers connects to a activeMQ broker which has demand forwarding bridge

Re: Kaha store corrupted?

2007-02-16 Thread Rob Davies
ah - ok - there's some tweaks going in to the usage manager at the moment, which should result in behavior hopefully closer to what you want I'll give you a heads up when they're done cheers, Rob On 17 Feb 2007, at 01:36, Albert Strasheim wrote: Hey Rob Most attempts to reproduce this i

Re: I can’t receive more than 2 messages simul taneously with DefaultMessageListenerContainer

2007-02-16 Thread cafe
to add more, the server stop without any exception... -- View this message in context: http://www.nabble.com/I-can%E2%80%99t-receive-more-than-2-messages-simultaneously-with-DefaultMessageListenerContainer-tf3241539s2354.html#a9016908 Sent from the ActiveMQ - User mailing list archive at Nabble.

RE: ActiveMQ memory utilization

2007-02-16 Thread avin98
Thanks for all the help, but it doesnt help me solve the issue. I use a version of AMQ bundled along with Geronimo 1.1 release. Suchitha Koneru (sukoneru) wrote: > > I am using activemq-core-4.0.1.jar . Please change the version and see > if you still find the issue of Messages not getting con

Re: I can’t receive more than 2 messages simul taneously with DefaultMessageListenerContainer

2007-02-16 Thread cafe
sorry for the bare explanation. I have a listener (in the server side) who receive request for send files (Streams): public class RequestUpdateListener implements SessionAwareMessageListener { private JmsTemplate jmsTemplate; private String fileUpdateLocation;

Demand Forwarding Bridge issue

2007-02-16 Thread naga007
I have complex application which has a producer and multiple consumers consuming messages from a Queue. The application runs on two different servers connects to a activeMQ broker which has demand forwarding bridge to another activeMQ broker running on a different server. When running a simple loa

Re: Kaha store corrupted?

2007-02-16 Thread Albert Strasheim
Hey Rob Most attempts to reproduce this issue has run me into hangs on UsageManager.waitForSpace. With the code as it is currently it is very hard to reproduce the Kaha problems without running into UsageManager problems. Maybe if we can do something about AMQ-1148 (and the issues that might

Re: I can’t receive more than 2 messages simul taneously with DefaultMessageListenerContainer

2007-02-16 Thread Paul French
You need to give more info since it is not clear what you are trying to do. The Listener Container you have configured will start 50 threads all waiting to consume messages. Give more info and I will be happy to help. cafe wrote: > > I have an app where I’m using spring 2.0 and activeMQ4.1.0.

Sending Async messages to temp queue really slow

2007-02-16 Thread Paul French
I am using the defualt install of activeMQ 4.1.0 I've turned off persistence and increased memory-manager setting to 500MB I've also updated the startup script so that the java heap can increase to 1G of memory if required The messaging layer of my app is simple. The client creates a temp queue o

Re: Kaha store corrupted?

2007-02-16 Thread Rob Davies
I wonder if there's a way you could produce a junit test case - to help narrow down the problem ? cheers, Rob On 15 Feb 2007, at 20:01, Albert Strasheim wrote: I reported the same (or a very similar) issue here: https://issues.apache.org/activemq/browse/AMQ-1082 Maybe you could add some pe

Memory usage increase after client power failure

2007-02-16 Thread eccrowe
Greetings, We are utilizing a client/server (hub/spoke) topic implementation with ActiveMQ-4.0-RC2 and have noticed a repeatable memory usage increase reported by the UsageManager when a "SocketException: Broken pipe" error occurs within the AbstractConnection.Transport. This has been repeatable

Re: message order (with JAVA CODE)

2007-02-16 Thread Iakov
I figured that most people here use Java so I am attaching a java example of message mis-ordering. c++ api uses stomp, java uses openwire - still same problem. it appears that every now and then one message gets ahead of the others. to recap : non-durable topic, one publisher, one subscriber.

Re: message order (again) now in C++

2007-02-16 Thread Iakov
apparently it's a bug. http://issues.apache.org/activemq/browse/AMQ-729 http://issues.apache.org/activemq/browse/AMQ-729 thank u all Iakov wrote: > > Hello, > > I am a new ActiveMQ user and came across an issue. it is my understanding > that the message order in the below setup should be p

Re: 4.1 hang in ActiveMQSession.setClientID

2007-02-16 Thread Jack Humphrey
Don't have much more data at this point, but what is troubling is that regardless of the state of the broker when the hang starts, when we notice the hang the broker is inevitably working fine and accepting connections. To work around this we're going to try putting our code that establishes the c

I can’t receive more than 2 messages simulta neously with DefaultMessageListenerContainer

2007-02-16 Thread cafe
I have an app where I’m using spring 2.0 and activeMQ4.1.0. In this app I need to process many message and send files to another queue, all this simultaneously, so I have configured a DefaultMessageListenerContainer in this way:

Re: Problems with amq and log4j ...

2007-02-16 Thread David Borja
Hi Terys ... I'm got the same problem configuring my log4j.properties with activemq appender, this is my log config: log4j.appender.A1=org.apache.activemq.util.JmsLogAppender log4j.appender.A1.uri=tcp://localhost:61616 i don't know why!!! Thanx! On 2/15/07, teryz <[EMAIL PROTECTED]> wrote:

Re: Need a pattern to solve this problem

2007-02-16 Thread uma_rk
Could you pl point me to a basic configuration setting up store-forward between two peer brokers? Regards, /U -- Original message -- From: "James Strachan" <[EMAIL PROTECTED]> > On 2/16/07, [EMAIL PROTECTED] <[EMAIL PROTECTED]> wrote: > > > > > > I run two Tomc

Re: How Activemq handles a lot of undelivered messages to a durable subscribers

2007-02-16 Thread James Strachan
On 2/16/07, LiXiao2007 <[EMAIL PROTECTED]> wrote: If I have several durable subscribers of a topic and one of them is down, I would like to know if a lot of undelivered messages to that durable subscriber will have big performance impact on the delivery of the messages to other active subscr

How Activemq handles a lot of undelivered messages to a durable subscribers

2007-02-16 Thread LiXiao2007
If I have several durable subscribers of a topic and one of them is down, I would like to know if a lot of undelivered messages to that durable subscriber will have big performance impact on the delivery of the messages to other active subscribers. Thanks! -- View this message in context:

message order (again) now in C++

2007-02-16 Thread Iakov
Hello, I am a new ActiveMQ user and came across an issue. it is my understanding that the message order in the below setup should be preserved: one topic (not a queue) one producer one consumer I am seeing that the order is _not_ preserved. Am i wrong to expect the correct order? in all the mes

Re: Need a pattern to solve this problem

2007-02-16 Thread James Strachan
On 2/16/07, [EMAIL PROTECTED] <[EMAIL PROTECTED]> wrote: I run two Tomcat instances and run an embedded broker in each Tomcat. In each instance of Tomat, there will be a number of consumers and producers. I would like the two brokers to forwards messages to each other so that the two create a v

Need a pattern to solve this problem

2007-02-16 Thread uma_rk
I run two Tomcat instances and run an embedded broker in each Tomcat. In each instance of Tomat, there will be a number of consumers and producers. I would like the two brokers to forwards messages to each other so that the two create a virtual party line of messages where a producer may communi

Re: Topology Question

2007-02-16 Thread James Strachan
On 2/15/07, Rob Bugh <[EMAIL PROTECTED]> wrote: Hello All, Is this the forum to ask How-To questons with regards to deploying ActiveMQ in a given topology? Sure! My topology -- In a nutshell, I have several datacenters that need certain data to be kept in sync. One datacenter

RE: building activemq cpp latest repository code on linux

2007-02-16 Thread Lalit Nagpal
Here is what I did so far when I ran the configure command it gave the following error checking for pthread_create in -lpthread... no configure: error: libpthread not found! I queried for it using rpm -qa | grep libp Here is the output glibc-utils-2.3.2-95.37 glibc-devel-2.3.2-95.37 glibc-commo

Re: Publishing to topic w/ PooledConnectionFactory results in UnsupportedOperationException

2007-02-16 Thread Adam Lewandowski
Any thoughts on this? The code to reproduce the issue is pretty straightforward: ActiveMQTopic topic = new ActiveMQTopic("test"); PooledConnectionFactory pcf = new PooledConnectionFactory(); pcf.setConnectionFactory(new ActiveMQConnectionFactory("

Re: JConsole Problem

2007-02-16 Thread Albert Strasheim
Hello all - Original Message - From: "cronos" <[EMAIL PROTECTED]> To: Sent: Friday, February 16, 2007 1:56 PM Subject: JConsole Problem Hello, We have installed activemq 4.1.0 (binary) on our virtual server running J2SE 5.0 update 8. We have been trying to get jconsole to connec

JConsole Problem

2007-02-16 Thread cronos
Hello, We have installed activemq 4.1.0 (binary) on our virtual server running J2SE 5.0 update 8. We have been trying to get jconsole to connect remotely to monitor the broker without much success. I am looking for somebody with more JMX expertise than i have to sort out the problem for a fee. Pl

Re: Kaha store corrupted?

2007-02-16 Thread drvillo
Hi it seems somehow related but you say your data file was deleted, whereas mine is definitely there. Somehow the DataManagerImpl.fileMap doesn't contain data-kaha-2, even if looking at the code public DataManagerImpl(File dir, final String name){ this.dir=dir; this.name=n