Re: Resources for running ActiveMQ in a cluster as Docker containers

2021-03-09 Thread Jean-Baptiste Onofre
Hi, We already have Dockerfile ready if you wana take a look. We will add Dockerfile in the main repo, you will have to provide activemq.xml via env variable to setup your cluster. I guess you mean NetworkOfBrokers when you say cluster, right ? If yes, the discovery can be discussed depending w

Re: Artemis divert from a queue to a topic

2021-03-09 Thread Justin Bertram
FWIW, the example shipped with the broker in examples/features/standard/divert demonstrates diverting messages from a JMS queue to a JMS topic. Does this example work for you? If so, how does it compare with your use-case which doesn't work? Justin On Tue, Mar 9, 2021 at 3:11 PM Justin Bertram

Re: Resources for running ActiveMQ in a cluster as Docker containers

2021-03-09 Thread Matt Pavlovich
Hello Fabrice- Work is underway on this feature— follow this JIRA: https://issues.apache.org/jira/browse/AMQ-8149 Currently, we are targeting the 5.17.0 updates (JDK 11 support) for the first SNAPSHOT build Thanks! Matt Pavlovich > On Mar 9, 2

Re: Artemis divert from a queue to a topic

2021-03-09 Thread Justin Bertram
The default routing-type for a divert is "STRIP" (which means it will remove any existing routing-type from the message during the process of diverting) so that shouldn't be an issue. Do you have a subscriber on my_topic when a message is sent to my_queue? What protocol are you using when sending

Re: Message filters vs. topic hierachies

2021-03-09 Thread Justin Bertram
This looks like a bug. Go ahead and create a Jira and attach your reproducer. Thanks! Justin On Mon, Mar 8, 2021 at 4:30 AM Thorsten Meinl wrote: > So I did some debugging and I believe I have found a bug in Artemis. > I create two topics, "t.*" and "t.123" (all using JMS). I register two > co

Resources for running ActiveMQ in a cluster as Docker containers

2021-03-09 Thread Fabrice Triboix
Hi all, I am looking for resources about running ActiveMQ in Docker containers. I want the ActiveMQ brokers to be run as a cluster. I haven't been able to find some good resources on this, not even an official ActiveMQ Docker image... Any help would be much appreciated. Thank you very much!

Re: Artemis divert from a queue to a topic

2021-03-09 Thread Gary Tully
I *think* you may need to specify the routing type on the divert, coming from a queue it may default to ANY_CAST. use: my_queue my_topic false MULTICAST On Tue, 9 Mar 2021 at 09:49, Petrenko, Vadim wrote: > > Dear Artemis developers, > > I'd like to set up Artemis in suc

Re: Artemis and ActiveMQ 5.x advisory messages

2021-03-09 Thread Gary Tully
This may also be an approach that can work for you, using diverts of the management notifications and redirecting to the advisory topic address, it may not be easy to dynamically change the address but it could work if the addresses in play are constrained. see: org.apache.activemq.artemis.tests.

Artemis divert from a queue to a topic

2021-03-09 Thread Petrenko, Vadim
Dear Artemis developers, I'd like to set up Artemis in such a way that all messages that get sent to a queue will be diverted to a topic, where I can have multiple (durable) subscribers. (my_queue) --divert--> (my_topic) I defined it like this: my_queue my_topic false