[INFO] Official Docker images available for Apache ActiveMQ

2023-07-07 Thread Jean-Baptiste Onofré
Hi, With the new Apache ActiveMQ 5.18.2 and 5.17.5 releases, we now publish official docker images. You can find these images directly on Docker Hub: https://hub.docker.com/r/apache/activemq/tags You can pull directly the images with: docker pull apache/activemq:5.18.2 or docker pull

Re: activemq | cluster | metrics

2023-07-07 Thread prateekjai...@gmail.com
Thanks Justin for the feedback. I will keep that in mind. On Fri 7 Jul 2023, 20:15 Justin Bertram, wrote: > The first thing I would recommend is to read the "Performance > Considerations" [1] section of the "Clusters" chapter in the ActiveMQ > Artemis User Manual. If you want to ensure that

Re: activemq | cluster | metrics

2023-07-07 Thread Justin Bertram
The first thing I would recommend is to read the "Performance Considerations" [1] section of the "Clusters" chapter in the ActiveMQ Artemis User Manual. If you want to ensure that performance is close to optimal (i.e. messages are not being moved around the cluster very often) then you can monitor

Re: Strange consumers connections state

2023-07-07 Thread Matt Pavlovich
Hi Ephermeris- Recommendations when running in the cloud is to be sure to enable a lot of self-healing features. Networking (esp in kubernetes) can be inconsistent when compared to local developer desktop. 1. Use failover:( .. ) transport in client urls 2. Use PooledConnectionFactory (esp w/

Strange consumers connections state

2023-07-07 Thread Ephemeris Lappis
Hello. We observe strange messages in our logs about ActiveMQ consumers. 17:33:29.684 WARN [Camel (_context) thread #452 - JmsConsumer[.internal.queue]] Setup of JMS message listener invoker failed for destination '.internal.queue' - trying to recover. Cause: The Consumer is closed

Re: Identifying connections in OpenShift environment for CORE protocol

2023-07-07 Thread Domenico Francesco Bruscino
Hi Artyom, It worked for me on ActiveMQ Artemis 2.29.0 using the artemis CLI, i.e.: ./broker/bin/artemis consumer --destination queue://TEST --user admin --password admin --clientID abc I see the text abc in the "Cliend ID" column. What ActiveMQ Artemis version are you using? Regards, Domenico

Re: activemq | cluster | metrics

2023-07-07 Thread prateekjai...@gmail.com
Hi Justin, I am using a slightly older version of artemis (2.9.0). This is the version which is used under jboss EAP version 7.3. Regards, Prateek Jain -- EXPECTATION : Causes all troubles..

Re: activemq | cluster | metrics

2023-07-07 Thread Justin Bertram
What version of ActiveMQ are you using? Justin On Fri, Jul 7, 2023 at 4:47 AM prateekjai...@gmail.com < prateekjai...@gmail.com> wrote: > Hi All, > > I am working on an application which is right now running a single > instance of activemq. Now, due to increase in load and to improve >

Smallrye reactive messaging's emitter does not NACK messages sent to Artemis broker

2023-07-07 Thread Nicolaescu, Eugeniu
I'm facing an issue when using the AMQP connector and an Apache Artemis broker and I'm not sure if it's an error on my part somehow or one of the two doesn't handle this case properly Problem: I send a message to the broker using an emitter, if the target address does not have a queue the broker

Re: activemq | cluster | metrics

2023-07-07 Thread prateekjai...@gmail.com
Thanks a lot, Erwin! Yes, we do have a JMX based metrics setup. I will compare and see if we are missing anything from a cluster metric perspective. Regards, Prateek Jain -- EXPECTATION : Causes all troubles..

RE: activemq | cluster | metrics

2023-07-07 Thread Dondorp, Erwin
Prateek, Due to the design of the Artemis GUI, all data that you can see there can be retrieved using: * Java JMX * Jolokia (a REST interface on Java JMX) Additionally, you can use a Prometheus plugin to allow data collection. Many other applications (e.g. all java applications) use that, or

activemq | cluster | metrics

2023-07-07 Thread prateekjai...@gmail.com
Hi All, I am working on an application which is right now running a single instance of activemq. Now, due to increase in load and to improve availability; I am testing active/active cluster topology of activemq. I am successfully running a cluster (active/active) now. My question is, what are