Questions tagged [activemq-artemis]

Apache ActiveMQ® Artemis is an asynchronous messaging broker, an example of Message Oriented Middleware.

Apache ActiveMQ™ Artemis is a high-performance, open-source, multi-protocol Java-based message broker. It supports industry standard protocols so users get the benefits of client choices across a broad range of langues and platforms. Connectivity from C, C++, Python, .Net, and more is available. It supports AMQP, STOMP, & MQTT. It provides a JMS 2.0 client as well as a client-side JNDI implementation.

Once Apache ActiveMQ™ Artemis reaches a sufficient level of feature parity with the 5.x code-base it will become ActiveMQ 6. Initial migration documentation is available.

1282 questions
2
votes
0 answers

Jboss EAP 6.4 integration with artemis

Trying to integrate jboss eap 6.4 with artemis server(2.17), placed libraries in modules folder & used resource-adapter in standalone.xml, could able to post message to remote artemis server(clustered) but cannot listen with MDB's. Configuration in…
2
votes
1 answer

Differences between Embedded and Native Modes in Artemis

According to official Spring Boot docs of Artemis modes: The supported modes are: embedded (to make explicit that an embedded broker is required and should lead to an error if the broker is not available in the classpath), and native to connect to…
Ray Jasson
  • 422
  • 2
  • 9
  • 23
2
votes
2 answers

ActiveMQ Artemis in Docker shows empty screen

Short version When I run ActiveMQ Artemis in docker I see this basically empty screen: That doesn't look right... I was expecting this, like I get when using the zip file: Regardless of whether I use docker or the zip file, it doesn't matter what…
Peter V. Mørch
  • 13,830
  • 8
  • 69
  • 103
2
votes
2 answers

Sending request reponse message on Artemis using C#

I am trying to implement a request response pattern in C# with the ArtemisNetClient, but having a bit of trouble finding out how to do so in a more generic way in a real solution. I was able to do something like this in two console applications…
Padawan
  • 35
  • 7
2
votes
1 answer

Filter messages by content property

I am using ActiveMQ Artemis 2.17.0. I am trying to filter messages by content property using this field: Sample message content: {test:1} For example I want to serach every message with test equal to 1. How can I do that?
montjet
  • 525
  • 1
  • 4
  • 13
2
votes
3 answers

How to process multiple AMQP messages in parallel with the same @Incoming method

Is it possible to process multiple amqp - messages in parallel with the same method annotated with @Incoming("queue") with quarkus and smallrye-reactive-messaging? To be more precise, I have following class: @ApplicationScoped public class Receiver…
2
votes
1 answer

How to cleanly close embedded ActiveMQ Artemis

I'm a maintainer of the JavaLite open source project. One part of it is called Async, and it is a simplified front-end for the Apache ActiveMQ Artemis broker. It exists in order to make it easier to embed Artemis in memory of the process and also…
ipolevoy
  • 5,432
  • 2
  • 31
  • 46
2
votes
1 answer

JBoss 7 ActiveMQ Integration Resource Adapter Configuration

I am trying to setup an embedded activeMQ with Jboss 7.3.0 and activemq-rar-5.6.0. The embedded broker should be accessible from inside Jboss and also from outside(via tcp from another application) I am facing the following exception when i start…
Ben
  • 137
  • 3
  • 12
2
votes
0 answers

Failed sending message between two nodes in ActiveMQ Artemis

I have configured an Artemis cluster through JGroup protocol using shared store HA policy. When I disable the firewalld service everything works fine including failover and failback. But when I enable the firewalld service messages are failing to…
Apurva
  • 63
  • 1
  • 6
2
votes
1 answer

Artemis master node don't switch back to live after restart

I have Artemis configuration (shared storage) with following ha-policy (for master and slave): Master: true
Wi-Al
  • 225
  • 1
  • 13
2
votes
1 answer

Can Quarkus app connect to multiple JMS broker instances?

Is there any way to connect to multiple instances of ActiveMQ Artemis using JMS from a Quarkus app? I see in the documentation that for both [Qpid JMS - AMQP] and [Artemis JMS] the connection URL in the properties is a String and it's required. Does…
aboudirawas
  • 192
  • 3
  • 21
2
votes
1 answer

ActiveMQ Artemis stopping automatically. localhost is not loading

I have installed ActiveMQ Artemis on my office laptop. I created a broker, and from the broker's bin folder I ran artemis-exe install. Then after that I ran the start command. It shows it has started but, when I check status it shows stopped. I…
Apurv Adarsh
  • 125
  • 1
  • 12
2
votes
0 answers

How to recover Wildfly HEURISTIC_HAZARD transaction?

I'm using Wildfly 14.0.1.Final. Transaction has two resource managers: Oracle Database External ActiveMQ Artemis message broker I can see that WFs recovery subsystem is trying to recover this transaction every 3 mins: [Periodic Recovery] WARN…
Mike
  • 812
  • 9
  • 25
2
votes
1 answer

apache-artemis 2.13.0 - why broker issues AM1212037 connection failure and AMQ214013 Failed to decode packet message in ogs

I have setup the Aretmis in HA configuration (one node as master and another as backup in different VMs) From logs, i see the backup is announced, the configuration is similar to the config When clients connecting to the Broker from multiple VMs, i…
Tim
  • 1,321
  • 1
  • 22
  • 47
2
votes
1 answer

ActiveMQ Artemis - javax.jms.IllegalStateException: AMQ219019: Session is closed

I have two ActiveMQ Artemis brokers running on different machines making a simple cluster. I am using a Java application (very basic) to produce and consume the messages to analyze the behaviour of the cluster. The Java code is as follows: public…
Karan
  • 752
  • 2
  • 13
  • 34