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
4
votes
1 answer

Artemis slave node does not go live start in full cluster

I'm trying to run a 6 node Apache Artemis static cluster as 3 live-backup pairs. In order not to lose data during full cluster restart I've also created a mechanism figuring out which of the pair has newer data, and based on that the server…
Newerth
  • 449
  • 2
  • 12
4
votes
0 answers

How to write JUnit test case for JMS client in Spring Boot

I have to write unit test for my producer and consumer in ActiveMQ Artemis. I'm using publish-subscribe model. How do I write the test cases for both? The following is my producer code: @Component public class OrderPublisher { @Autowired …
4
votes
1 answer

ActiveMQ Artemis Thread dump

I have a problem with ActiveMQ Artemis version 2.10.0 which is running on a docker. That's exactly a threading problem (logs below). At some point in the logs, I see this entry: Component org.apache.activemq.artemis.core.io.buffer.TimedBuffer is…
avalus
  • 57
  • 5
4
votes
0 answers

ActiveMQ Artemis failback kills slave in 2-node-HA setup

I am running a 2-node-HA failover ActiveMQ Artemis 2.11.0 cluster using replication in our test environment. Both nodes (and all connecting clients (application servers)) use static configuration of nodes, i.e. no discovery is going on. In one of my…
chammp
  • 822
  • 1
  • 10
  • 20
4
votes
0 answers

AMQP consumer stops receiving on 127th message

PROBLEM: The publisher app continuously publishes AMQP messages to Artemis broker - but, the consumer app stops receiving messages after the 127th. Fwiw - Coincidentally, noticed an excerpt from a Smallrye web page cites: "the default buffer size…
4
votes
1 answer

Right configuration for HA cluster ActiveMQ Artemis

I'm new to ActiveMQ Artemis and ask community to check if I am right in configuration of HA cluster of brokers or may be I should configure them in another way as I haven't found detailed tutorial on my case. All of the brokers run on the same…
Lilia
  • 77
  • 1
  • 7
4
votes
1 answer

SpringBoot with no netty_transport_native_epoll_x86_64 in java.library.path error

I've got a SpringBoot application that uses a library which uses Apache ActiveMQ Artemis for communication. For some reason I've got an error with the following line: java.lang.UnsatisfiedLinkError: no netty_transport_native_epoll_x86_64 in…
Elena
  • 501
  • 1
  • 6
  • 15
4
votes
0 answers

Spring Boot Application not connecting to Apache ActiveMQ Artemis using native configuration

I have a spring-boot application that has to connect to a deployed Apache Apache ActiveMQ Artemis 2.9.0 broker. The broker has the default configuration listening to the 61616 port. I've got a library where I have encapsulated the calls to the…
Elena
  • 501
  • 1
  • 6
  • 15
4
votes
2 answers

Cant access Artemis console

I have just install a new artemis in my new server, able to run the service normally but not able to access from outside. I also have followed this question that seems have the similar issue with me, but seems not able to work. Artemis-2.6.3…
Rudy
  • 7,008
  • 12
  • 50
  • 85
4
votes
2 answers

Apache Artemis - Route messages by addresses with multiple queues

I have this scenario: ADDRESS1: -ADDRESS1.QUEUE1 -ADDRESS1.QUEUE2 ADDRESS2: -ADDRESS2.QUEUE1 -ADDRESS2.QUEUE2 Two addresses with multiple anycast queues. I need to route messages to a specify queue into the address. Example: Messages…
vitorvr
  • 605
  • 1
  • 5
  • 19
4
votes
3 answers

How to send message to queue in ActiveMQ Artemis via GUI

I have Apache ActiveMQ Artemis installed and want to populate a queue via the GUI with a message. I navigate to queues --> Select queue --> operations There is a function…
user4889345
4
votes
1 answer

Apache Artemis: How to move JMS messages to a different queue

The new version of Artemis removed the class JMSQueueControl and all classes associated with it. Our project uses the JMS API to send/receive/listen, as well as manage. We need to manage the queues, including moving messages from one queue to…
ipolevoy
  • 5,432
  • 2
  • 31
  • 46
4
votes
1 answer

How to create durable queue using Artemis JMS Management API

It's a long story but I need to create a durable queue using the Artemis JMS Management API. Currently the code creates a temporary queue as a default: JMSManagementHelper.putOperationInvocation("jms.server", "createQueue", "MyqueueName", null,…
sagneta
  • 1,546
  • 18
  • 26
4
votes
1 answer

How do I schedule message in apache artemis

I need to schedule message in Apache artemis I've tried to send this stomp frame: SEND HDR_SCHEDULED_DELIVERY_TIME:120000 destination:jms.queue.dbQ persistent:true priority:7 session:-1132747381 {"prop":"test"} But it's not working. I've tried…
Meto
  • 420
  • 2
  • 7
  • 17
4
votes
1 answer

Setting up maven to compile (instead of downloading) dependencies

I cloned the git repository of Apache ActiveMQ Artemis project (https://github.com/apache/activemq-artemis) and then typed mvn -Ptests test -pl :integration-tests I was surprised to see log messages like the following ... Downloading:…
user7610
  • 25,267
  • 15
  • 124
  • 150
1
2
3
85 86