Re: Artemis REST API

2023-03-23 Thread Lachezar Dobrev
You can navigate the Artemis web console, and in the list of 'Operations' you can use the three-dots menu to 'Copy Jolokia URL'. For an example the countMessages() method on the DQL can be called with:

Re: Transport Connection - java.io.EOFException

2019-10-02 Thread Lachezar Dobrev
Do you know what that IP is? We have similar messages for multiple services that result in an admin setting up port monitor (nagios, etc.) without the protocol specifics. Similar messages typically show up when the service is being used by a client that does not support the protocol, and

Re: OS wise setup

2018-05-22 Thread Lachezar Dobrev
The OS specific differences are mostly the start/stop scripts and the service installation tools. One *could* merge the "bin" directories from both and provide a combined distribution. P.S. It seems there are end-of-line differences in text files, which should be noted. P.S. There seems

Re: ActiveMQ Cluster in Docker Swarm

2017-09-28 Thread Lachezar Dobrev
Hm. I have had experience with running (embedded) Artemis (in Springframework) in a Docker Swarm. Most of what I had tried failed. The main reason was that the virtual network adapters that are available (sans any commercial and third-party ones) do not support broadcast/multicast so dynamic

ActiveMQ or Artemis in a Docker Swarm?

2017-04-27 Thread Lachezar Dobrev
Hello all. I'm just beginning with Docker Swarm and am wondering the following: I have an application (.war for Tomcat, based on Springframework) that has an embedded Artemis to allow communication between Web Socket handlers. The application is like a multi-user chat, and uses a Topic to

Re: Persistent messages and postgres backend

2016-10-25 Thread Lachezar Dobrev
> Von: tbai...@gmail.com [mailto:tbai...@gmail.com] Im Auftrag von Tim Bain > Gesendet: Montag, 24. Oktober 2016 14:36 > An: ActiveMQ Users > Betreff: Re: Persistent messages and postgres backend > > I would expect the index to need to be on ID, CONTAINER for it to be used > in

Re: Persistent messages and postgres backend

2016-10-24 Thread Lachezar Dobrev
if there are lots of processes that have waiting = true, that might mean that there are locking issues. 2016-10-24 12:48 GMT+03:00 <ulrich.her...@t-systems.com>: > Thank you for your answer - we have tried this before with no success. > > Uli > > -Ursprüngliche Nachricht

Re: Persistent messages and postgres backend

2016-10-24 Thread Lachezar Dobrev
You might want to add an INDEX on CONTAINER column in ACTIVEMQ_MSGS table: CREATE INDEX ACTIVEMQ_MSGS_CONTAINER_INDEX ON ACTIVEMQ_MSGS(CONTAINER); 2016-10-24 12:14 GMT+03:00 : > Hi all, > > we need persistent messages with a postgres backend. > > We did some

Re: Duplicating messages published to a Topic to a Queue

2016-10-13 Thread Lachezar Dobrev
duplicate-detection.htm > https://activemq.apache.org/artemis/docs/1.4.0/diverts.html > > Cheers > Martyn > > > > On Mon, Oct 3, 2016 at 2:54 PM, Lachezar Dobrev <l.dob...@gmail.com> > wrote: > > > Hello all, > > > > I have a design prob

Duplicating messages published to a Topic to a Queue

2016-10-03 Thread Lachezar Dobrev
Hello all, I have a design problem: a topic is clustered in a network of brokers to allow multiple nodes to handle events occurring in other nodes: i.e. a user logs in on one node, but all nodes *might* need to know that. A new requirement has surfaced, that copies of these messages need to

Messaging listener for local messages only

2016-09-29 Thread Lachezar Dobrev
I have a multi-node (static) network of embedded Artemis JMS brokers. I'm wondering if there is a way to register a JMS listener to a topic, but somehow distinguish between messages sent via the local broker and those that come from different nodes in the 'cluster'? I'd like to make sure,

Reliable, persistent, scheduled or delayed queue processing in cluster

2016-02-08 Thread Lachezar Dobrev
Hello users, For a project I'm currently working on we decided to use a cluster of application instances with embedded Artemis services connected via explicit tunnels. A requirement for the application functions expects us to be able to handle certain events (from user interface layer), and

Re: Cluster/Federated Artemis problems

2016-01-26 Thread Lachezar Dobrev
lved. Thanks! > > > Justin > > [1] http://activemq.apache.org/artemis/docs/1.1.0/clusters.html (see the > "Configuring Cluster Connections" section) > [2] http://activemq.apache.org/artemis/docs/1.1.0/jms-core-mapping.html > [3] https://issues.apache.org/jira/browse/ART

Re: Cluster/Federated Artemis problems

2016-01-26 Thread Lachezar Dobrev
Passed. I was having "minor" arguments with checkstyle. 2016-01-26 13:14 GMT+02:00 Lachezar Dobrev <l.dob...@gmail.com>: > ​ Well, not that you have explained this it is really "Obvious". > I'm using Artemis as JMS client+server​, and internals are a

Re: Cluster/Federated Artemis problems

2016-01-26 Thread Lachezar Dobrev
heckstyle activated, you have to > build with the dev profile: > > mvn -Pdev install (etc). > > > > On Tue, Jan 26, 2016 at 6:14 AM, Lachezar Dobrev <l.dob...@gmail.com> > wrote: > > Well, not that you have explained this it is really "Obvious". >

Re: Cluster/Federated Artemis problems

2016-01-25 Thread Lachezar Dobrev
be best served by being on Artemis 1.2 which we > recently released. > > > Justin > > [1] http://activemq.apache.org/artemis/docs/1.1.0/clusters.html (see the > "Discovery using static Connectors" section) > > - Original Message - > From: "Lachezar Dobrev"

Cluster/Federated Artemis problems

2016-01-25 Thread Lachezar Dobrev
Hello group members. I'm having problems with clustering/federating an application's Artemis embedded server. The application is a .WAR with Springframework 4 and Embedded Artemis 1.1.0 (from Spring). Multiple instances of the application are expected to be deployed in multiple spots.