Re: ActiveMQ web console better than Artemis?

2019-02-14 Thread artemisn00b
I meant something like this -- Sent from: http://activemq.2283324.n4.nabble.com/ActiveMQ-User-f2341805.html

Re: ActiveMQ web console better than Artemis?

2019-02-14 Thread Clebert Suconic
I thought artemis is pretty good. We accept pull requests thought ;) On Thu, Feb 14, 2019 at 8:15 PM artemisn00b wrote: > Hi, > > I was wondering why activemq's web console is much better, compared to > artemis. Is there a reason to it? > In ActiveMQ, you can view all the Active Durable Topic

Re: Multi master configuration in Artemis?

2019-02-14 Thread Clebert Suconic
There is the capability of symmetric clustering. On the examples look for symmetric-cluster example. On Thu, Feb 14, 2019 at 10:57 PM artemisn00b wrote: > Hi, > > Is ActiveMQ Artemis capable of running a multi-master cluster? If so, is it > capable of load-balancing > messages sent from a sing

Re: Producers get created automatically

2019-02-14 Thread artemisn00b
Thank you so much! I also had a few other queries, so I posted them on different threads. -- Sent from: http://activemq.2283324.n4.nabble.com/ActiveMQ-User-f2341805.html

Re: Producers get created automatically

2019-02-14 Thread Clebert Suconic
The sprint template is not known to keep the consumer alive. I would recommend playing with a simple consumer. The JMS template is good for request response pattern (I’m trying to find a reason to keep it) Sorting is great for a lot of things. But this JMS template will open a consumer and p

Multi master configuration in Artemis?

2019-02-14 Thread artemisn00b
Hi, Is ActiveMQ Artemis capable of running a multi-master cluster? If so, is it capable of load-balancing messages sent from a single connection? Thank you! -- Sent from: http://activemq.2283324.n4.nabble.com/ActiveMQ-User-f2341805.html

ActiveMQ version compatibility with Postgresql

2019-02-14 Thread Rameshbabu
Hi, I am using Activemq 5.15.2 version, Could someone suggest which latest version of Postgresql is compatible to it ? as my DB team is planning to upgrade Postgresql. -- Sent from: http://activemq.2283324.n4.nabble.com/ActiveMQ-User-f2341805.html

Re: JDBC driver with Failover (Master-Slave) MS SQL database

2019-02-14 Thread ramapr00
I have the same issue with ActiveMQ. I have two nodes of AMQ and it is configured to use MS SQL with database cluster. When the database cluster fails over, my AMQ stops working and I need to re-start it manually to fix the issue. Could you please post how did you fix your issue? -- Sent from: h

SQL Server cluster fail over issue with ActiveMQ

2019-02-14 Thread ramapr00
1. We have 2 ActiveMQ Services installed (A, B) on different machines (Amq1, Amq2) which are configured in ActiveMQ Failover configuration- Both relay on a single SQL database. This single database is configured in SQL Failover configuration using 2 Microsoft SQL Servers (Server1, S

Re: Producers get created automatically

2019-02-14 Thread artemisn00b
Awesome. Thank you so much! I realised what was happening - the producer shows up ONLY when it's sending messages. I think I need to find a way to keep it alive, or connected, even when idle. Would you know if that's something I can do? -- Sent from: http://activemq.2283324.n4.nabble.com/Active

ActiveMQ web console better than Artemis?

2019-02-14 Thread artemisn00b
Hi, I was wondering why activemq's web console is much better, compared to artemis. Is there a reason to it? In ActiveMQ, you can view all the Active Durable Topic Subscribers, Offline Durable Topic Subscribers, Active Non-Durable Topic Subscribers, Topics/Queues on separate tabs. I know all of it

Re: Is possible to Artemis to act as a client/publisher and consumer as the same time

2019-02-14 Thread Justin Bertram
Artemis itself can not send messages via MQTT to another broker. It has a "core" bridge which can forward messages to other Artemis instances via the "core" protocol. There is also a JMS bridge that can use arbitrary JMS implementations to consume and send messages between JMS providers. However, t

Is possible to Artemis to act as a client/publisher and consumer as the same time

2019-02-14 Thread Deomisr
Hi, is it possible to Artemis to act as a consumer and forward the message to another broker. for example : Step 1 : client1 publish a mqtt message to artemis step 2: Artemis consume the message Step 3: Atemis send the message to another broker via mqtt. Client1(step1)>Broker Artemis(step 2)

Re: Artemis (AMQ7.2) Symmetric Cluster with Multi-Server - Replication not working

2019-02-14 Thread jraju
Thanks very much clebertsuconic. Yes, my mistake . I had an AWS Image which has the broker created in it, hence this issue. Have now changed the scripts to create the broker while provisioning the actual server instance, so that new Uid gets created every time. Thanks Again!! -- Sent from: htt

Re: Core protocol documentation

2019-02-14 Thread Francesco Nigro
+100 for AMQP suggestion: perf are great! Il giorno gio 14 feb 2019, 10:08 Clebert Suconic ha scritto: > Did you consider AMQP clients for other clients. > > I would recommend using one of the AMQP clients as the performance has been > significantly improved. > > Another option would be openwire

Re: Core protocol documentation

2019-02-14 Thread Clebert Suconic
Did you consider AMQP clients for other clients. I would recommend using one of the AMQP clients as the performance has been significantly improved. Another option would be openwire clients. Although I would suggest AMQP as a better choice. On Wed, Feb 13, 2019 at 6:29 AM Riyafa Abdul Hameed w