Re: How to send same group of messages to one consumer thread

2020-02-28 Thread Tim Bain
I'm not aware of any mechanism for controlling the assignment of message groups to consumers. I expect it would be possible for you to customize the broker's code to do this, but that's not code that I've looked at recently so I'm not sure how complicated it would be to do. Alternatively, you could

Re: "queuePrefetch" policy doesn't seem to be working properly

2020-02-28 Thread Tim Bain
This is expected behavior. When a message with a JMXGroupId is dispatched to a consumer, that consumer is the sole one that will receive future messages with the same JMXGroupId, until the connection from the consumer to the broker is broken. Here's your sequence of events, with additional comment

Re: Artemis federation over HTTP

2020-02-28 Thread Justin Bertram
> Federation works only over core protocol currently. That's fair enough, but Netty connections using the core protocol can be tunneled over HTTP. See the documentation [1] and this example [2] for more details. Justin [1] http://activemq.apache.org/components/artemis/documentation/latest/confi

RE: Artemis federation over HTTP

2020-02-28 Thread michael.andre.pearce
Federation works only over core protocol currently.Sent from my Samsung Galaxy smartphone. Original message From: sateesh kumar kapu Date: 28/02/2020 23:32 (GMT+00:00) To: users@activemq.apache.org Subject: Artemis federation over HTTP I am trying out federation example that

Re: Artemis federation over HTTP

2020-02-28 Thread Justin Bertram
As I understand it, federation isn't concerned with the details of the underlying network connection as that's abstracted away in the code-base. Therefore, I don't think it's really a question of whether or not federation itself supports HTTP. The question is more about whether or not you've config

Artemis federation over HTTP

2020-02-28 Thread sateesh kumar kapu
I am trying out federation example that is involving brokers on different machines. I am able to establish connection using core protocols via TCP however not able to make same thing with HTTP protocol. According to documentation it is mentioned that broker identifies the HTTP request and handles

How to send same group of messages to one consumer thread

2020-02-28 Thread subbu.kobra
Hi, We are using active mq in our project we have a requirement that group of messages which belongs to one Group should be consumed by one consumer thread. for instance, we have 3 (M1, M2, M3) messages belongs person A and 3 (M4, M5, M6) messages belongs person B. our requirement is: all messag