Re: Activemq cluster on Amazon EC2

2016-05-26 Thread Fabio Gomes dos Santos
Use this example: https://github.com/apache/activemq-artemis/tree/master/examples/features/clustered/clustered-jgroups/src/main I have tested with tcp gossip and s3, and I prefer the gossip router. Em 26/05/2016 06:51, "bmo" escreveu: > Hello, > I'm trying to deploy activeMQ cluster over amazon

Re: [Artemis] Clustering and Management interface

2016-05-26 Thread Justin Bertram
The address-settings on the broker where the address is located are applied, not the settings from the broker where the address was created. In my opinion, it wouldn't make sense to apply settings from one broker in a cluster to another as one broker may be on different hardware with different

Activemq cluster on Amazon EC2

2016-05-26 Thread bmo
Hello, I'm trying to deploy activeMQ cluster over amazon vpc in order to create later on a jwebsocket cluster. I know that multicast is not supported over EC2 instances so I followed the following tuto in order to do a discovery with http http://stackoverflow.com/questions/19512297/active-mq-c

Re: Artemis as multiprotocol broker

2016-05-26 Thread Luca Capra
Ok, I will double check on the client side. If you have the time, here the test case The nodejs client code https://gist.github.com/muka/b6374610618978948f39d83e5248ff7e The broker implementation (raptor-broker) is here (branch artemis) https://github.com/muka/raptor/tree/artemis To run it sh

Re: Artemis as multiprotocol broker

2016-05-26 Thread Martyn Taylor
Hi Luca, Only 3.1.1 is supported in Artemis. We've not tested against older versions. Could you ensure you are setting the version properly in your client. Error processing control packet usually means the client is doing something wrong. If you send me your test case / reproducer, I will take

Re: Artemis as multiprotocol broker

2016-05-26 Thread Luca Capra
Hi Martyn, thank you for your feedback! I had in fact two different acceptor on my broker.xml. I'm now using just one now. I've also moved to latest master 1.3-SNAPSHOT from git I noticed I get this exception now on connection via mqtt WARN: Error processing Control Packet, Disconnecting Client2

Re: [Artemis] Clustering and Management interface

2016-05-26 Thread Kristo Kuusküll
Thanks for answer, this fix seems valid. However, I noticed, that when a queue is created in nodeB, an address with the same name is also created in nodeB, but the address will have nodeB default settings instead of the settings in nodeA. Now a question rises, which address settings will be used,

Re: activemq cluster Error creating bean with name 'org.apache.activemq.xbean.XBeanBrokerService#0'

2016-05-26 Thread bmo
Thank you very much for your answer that helped me a lot, I'll try to add the needed dependencies for the mongoDB. For the moment I deactivated my plugin in order to test the activemq cluster first. I have a question which is more related to activemq cluster I'll open a new post for that. Thank yo