Artemis 2.2.0, last_value_queue not working with AMQP

2017-08-11 Thread vchen1
I was testing the last_value_queue and noticed that it is not working if connected with AMQP. Here is what I have tested: 1.) With port 61616, I followed the example on Artemis github and have the jndi file as:

Re: Network of brokers and destination policies

2017-08-11 Thread Robert Huffman
I'm primarily concerned about running out of space in broker memory. And we're not load-balancing between the applications; they are completely different, but both consume from some of the same topics that the clients publish to. Application 1 can fall behind when processing some of those

Re: Artemis 2.2.0, last_value_queue not working with AMQP

2017-08-11 Thread Justin Bertram
The last-value queue feature isn't yet supported for AMQP clients. Justin On Fri, Aug 11, 2017 at 11:08 AM, vchen1 wrote: > I was testing the last_value_queue and noticed that it is not working if > connected with AMQP. Here is what I have tested: > > 1.) With port 61616,

Re: Network of brokers and destination policies

2017-08-11 Thread Tim Bain
What resources are you concerned about? Are you trying to load-balance the work across the two applications (i.e. you're concerned about CPU and about pre-allocating messages to a particular application), or are you worried about running out of space in the brokers' message stores? Or something

Re: How to execute purge operation on topic?

2017-08-11 Thread Tim Bain
Compare http://activemq.apache.org/maven/5.12.2/apidocs/org/apache/activemq/broker/jmx/TopicViewMBean.html with http://activemq.apache.org/maven/5.12.2/apidocs/org/apache/activemq/broker/jmx/QueueViewMBean.html. There is no purge() method for topics, so what you're requesting can't be done,

Re: ActiveMq composite queues

2017-08-11 Thread mansi
Network connector allows forwarding to another Broker hosted in different environments. Let's say I have one broker A on Azure cloud and another broker B one hosted on my company premises. So in this will network connector, allow forward to from A to B? -- View this message in context:

[Artemis] - Can last value queue be sent to multiple consumers?

2017-08-11 Thread Lionel van den Berg
Hi, I'm currently using activemq and now looking into Artemis. One of the interest features I see is the is the last-value queue option. However what I want to use it for is for regularly updating data and not so regular updating data where the last value is always the only interesting value, but

How to execute purge operation on topic?

2017-08-11 Thread meghaauti
Hi Please suggest how to use REST API for purge operation on topic? -- View this message in context: http://activemq.2283324.n4.nabble.com/How-to-execute-purge-operation-on-topic-tp4729623.html Sent from the ActiveMQ - User

Artemis - message delivery issue for topic with durable and non-durable subscriptions

2017-08-11 Thread nkhasanov
Dear users, I have a strange behaviour of Artemis, which does not deliver messages sometimes. I have Artemis 1.2.0 and clients use STOMP. There is a topic with durable subscription and consumers are permanently connected. From time to time to the same topic connects one non-durable subscriber.

Re: ActiveMq composite queues

2017-08-11 Thread Tim Bain
Yes, as long as you can actually make the connection (i.e. the IP is routeable, firewalls don't block traffic, etc.) and you configure the network connector properly. Network connectors allow messages to be passed among brokers within a Network of Brokers, no matter where the brokers are hosted.