Checkpoint worker; what's it doing?

2017-10-20 Thread Raffi
It's my understanding each kahadb is assigned a checkpoint thread which, every 5s (default), wakes up and does something; what is it doing, and is there any negative impact if the interval is increased to 60s or 120s? We are using persistent messages, jsyk -- Sent from: http://activemq.2283324.n

Re: Can't subscribe to advisories for producer and consumers...

2017-09-29 Thread Raffi
OK, so I discovered ActiveMQPooledConnectionFactor uses pooled, anonymous producers, for which advisories are not generated, which explains my issue. Reference: https://issues.apache.org/jira/browse/AMQ-4176 http://activemq.apache.org/how-do-i-use-jms-efficiently.html -- Sent from: http://act

Can't subscribe to advisories for producer and consumers...

2017-09-28 Thread Raffi
I'm writing a simple topic subscriber for consuming advisory messages: Subscriber receives these messages... topic:ActiveMQ.Advisory.Connection ..but not these: topic:ActiveMQ.Advisory.Consumer.> topic:ActiveMQ.Advisory.Producer.> ...tried adjusting the topic, but none of these worked: topic:Act

Re: Slow consumer acknowledgment timeout

2017-09-26 Thread Raffi
nvm, I got it. read the docs, son. :-) -- Sent from: http://activemq.2283324.n4.nabble.com/ActiveMQ-User-f2341805.html

Kahadb index updates taking too much time on ActiveMQ 5.11

2017-09-26 Thread Raffi
In production with ActiveMQ 5.11 with multi-kahadb per destination on NFSv4 M|S (Linux 7.1), we're seeing the following log messages intermittently during operations: *Slow KahaDB access: Journal append took: 2 ms, Index update took 16901 ms* Also, on startup, we see the following in our kahadb

Re: Slow consumer acknowledgment timeout

2017-09-26 Thread Raffi
Tim, If, by default, the broker has no slow consumer strategy configured, does that also mean the broker will not publish slow consumer advisory messages? Are the strategy and advisory linked together? If not, under what conditions does the broker publish slow consumer advisories? -- Sent from:

Re: javax.jms.JMSException: Cannot send, channel has already failed: tcp://127.0.0.1:61616

2017-09-19 Thread Raffi
We see the same error, sporadically, we feel it's caused by load-balancers momentarily directing JMS clients to slaves on initial connect during a master failover situation, at least that's our best guess. -- Sent from: http://activemq.2283324.n4.nabble.com/ActiveMQ-User-f2341805.html

Re: Stuck messages

2017-09-18 Thread Raffi
Remove "rebalanceClusterClients=true", it distributes connections across brokers, likely exacerbating your problem. Is "duplex="true" enabled from both ends of the connector? If so, enable it from one end only, or, remove it entirely and use static connections between the brokers. -- Sent from:

How to suppress LDAP policy errors for non-existent destinations using SimpleCachedLDAPAuthorizationMap

2017-09-18 Thread Raffi
Trying to understand the cause for the following error getting logged each time the auth plugin syncs with LDAP. We use LDAP server for storing queue/topic permissions, but all destinations are dynamic, so a policy entry may not always have a physical destination counterpart in ActiveMQ; that's our

Statistics plugin in network of brokers

2017-09-05 Thread Raffi
Just wanted to confirm the statistics plugin is one-to-one, that is, one request returns metrics for a single broker, regardless if the request was sent to topic://ActiveMQ.Statistics.Broker, and all brokers belonged to a network. We can't seem to get the latter to work, the goal is to send a singl

Re: JAVA ActiveMQ JMX browse messages on Topic

2017-09-04 Thread Raffi
That's a good point, competing with resources, ty. -- Sent from: http://activemq.2283324.n4.nabble.com/ActiveMQ-User-f2341805.html

Re: Possible to create broker-specific topic subscriber in broker network?

2017-08-30 Thread Raffi
Hi Tim, Yeah, that's what we're thinking too; based on all available options, it's certainly the simplest approach with fewest moving parts. thx -- Sent from: http://activemq.2283324.n4.nabble.com/ActiveMQ-User-f2341805.html

Re: JAVA ActiveMQ JMX browse messages on Topic

2017-08-29 Thread Raffi
Is it safe to use JMX-based message browsing for queues when troubleshooting production issues? -- Sent from: http://activemq.2283324.n4.nabble.com/ActiveMQ-User-f2341805.html

Possible to create broker-specific topic subscriber in broker network?

2017-08-29 Thread Raffi
We have a broker network of 12 brokers in a complete graph, so every broker has a separate connection to every other broker. We want to consume and forward some advisories messages from each broker to splunk; the splunk integration is not important, our concern is the subscriber itself. Our current

Slow consumer acknowledgment timeout

2017-08-25 Thread Raffi
ActiveMQ 5.12 When messages are dispatched to a consumer, how long will the broker wait before it considers the consumer "slow" assuming the consumer does not ack the message and the connection remains active? We're not using any slow consumer strategy in the broker, so when I found this I wasn't

Re: Wildcards in composite destinations not working...

2017-06-26 Thread Raffi
Thanks, Tim. We finally gave up and created subscribers to each of the advisory topic names that we needed to log externally. -- View this message in context: http://activemq.2283324.n4.nabble.com/Wildcards-in-composite-destinations-not-working-tp4727353p4727872.html Sent from the ActiveMQ - Us

Wildcards in composite destinations not working...

2017-06-13 Thread Raffi
We're trying to channel all advisory events generated from a standalone broker to a queue, but nothing is ever forwarded to the queue. This appears to only work when the composite topic does NOT use * or >, is this by design?

Re: Network of Brokers - Connected but messages are not received on second broker

2016-12-11 Thread Raffi
Show the client code. -- View this message in context: http://activemq.2283324.n4.nabble.com/Network-of-Brokers-Connected-but-messages-are-not-received-on-second-broker-tp4720116p4720117.html Sent from the ActiveMQ - User mailing list archive at Nabble.com.

Re: How to update activemq.xml config in distributed topology?

2016-05-08 Thread Raffi
Hi Tim, Should have mentioned earlier, we're on RedHat AMQ, and the custom bean for loading new config files would be OSGI. The problem is configuring a dependency on the broker bundle ensuring our custom stuff loads first. I know how to do it with OSGI features, but only if I control packaging th

How to update activemq.xml config in distributed topology?

2016-05-08 Thread Raffi
Looking for advice on how to update activemq.xml in a distributed topology that uses M/S pairs and NoB. Some ideas we're considering... Option A: *Custom Startup Bean* On startup (before activemq.xml is read), a custom class queries GIT/SVN for latest version of broker config files, comparing ver

Re: Why is brokerPath not a message property?

2016-03-24 Thread Raffi
Yup, that's always an option too, :-) thx -- View this message in context: http://activemq.2283324.n4.nabble.com/Why-is-brokerPath-not-a-message-property-tp4709942p4709944.html Sent from the ActiveMQ - User mailing list archive at Nabble.com.

Why is brokerPath not a message property?

2016-03-24 Thread Raffi
We're testing network of brokers using brokerPath to validate which brokers the message visited. Based on our observations, "brokerPath" is not a message property or header, and the only way to access it is casting message to ActiveMQMessage. No need to explain why this is not ideal; is there no al

Re: How to test prefetch size is actually working

2016-03-21 Thread Raffi
Tim, Wow, thank you; my assumption was totally wrong. On the flip side, to ensure my understand of optimizedAcknowlege="true" isn't wrong either, does the client "ack" groups of messages using a single network call instead of individually? (Batch size being 65% of prefetchSize) -- View this me

How to test prefetch size is actually working

2016-03-20 Thread Raffi
Is there a JMX metric for testing prefetch=1 vs prefetch=100? I want to confirm reduced network activity between consumer and broker when using large prefetchSize. DispatchedCounter and DispatchedQueueSize appear to increment/decrement by 1, never consistent with prefetchSize. I'm missing something

How to monitor cluster updates from the client

2016-03-06 Thread Raffi
I'm testing JMS applications in a NoB cluster to validate client are receiving updates as brokers join/leave the cluster; our openwire connector config: The client connection URL is below; this is just a virtual IP that proxies to a router and finds the nearest broker (all of this wo

RE: Using topics for publishing broker metrics

2015-12-17 Thread Basmajian, Raffi
be simpler to publish to a failover URL containing all the brokers rather than starting an embedded broker whose sole purpose is to publish stats? It seems like your proposed approach adds unnecessary complexity. Tim On Dec 16, 2015 3:59 PM, "Raffi" wrote: > Wanted to run this by the commu

Using topics for publishing broker metrics

2015-12-16 Thread Raffi
Wanted to run this by the community for some advice. We have 20 brokers in total (10 master/slave pairs). Operational tooling is an issue, we need something simple to address short term needs. So our goal is to create a web page showing unified operational view for the entire cluster. Simple metri

RE: NoB and Load Balancing

2015-12-09 Thread Basmajian, Raffi
Dsubject=foo.bar On 12/9/15 4:19 PM, Basmajian, Raffi wrote: > Show the client-side configuration you're using. > > -Original Message- > From: Rallavagu [mailto:rallav...@gmail.com] > Sent: Wednesday, December 09, 2015 7:04 PM > To: users@activemq.apache.org > Subjec

RE: NoB and Load Balancing

2015-12-09 Thread Basmajian, Raffi
Show the client-side configuration you're using. -Original Message- From: Rallavagu [mailto:rallav...@gmail.com] Sent: Wednesday, December 09, 2015 7:04 PM To: users@activemq.apache.org Subject: NoB and Load Balancing [ EXTERNAL ] ActiveMQ 5.12.1 Setup Network of Brokers between two clu

RE: 5.12.1 Master/Slave behavior

2015-12-03 Thread Basmajian, Raffi
Yes, that is expected behavior. Slaves do not service normal requests, the transport connectors are not enabled, -Original Message- From: Rallavagu [mailto:rallav...@gmail.com] Sent: Thursday, December 03, 2015 1:57 PM To: users@activemq.apache.org Subject: 5.12.1 Master/Slave behavior

RE: ActiveMQ web console

2015-12-03 Thread Basmajian, Raffi
from the screen shots, but this tool does not appear to provide such feature, does it? 2) Is stomp.js stable? I understand it's no longer supported. Raffi -Original Message- From: A.Marchand [mailto:a.march...@progeri.com] Sent: Wednesday, December 02, 2015 2:55 AM To: users@activem

RE: ActiveMQ deployment

2015-12-02 Thread Basmajian, Raffi
jolokia REST docs here: https://jolokia.org/reference/html/protocol.html -Original Message- From: Rallavagu [mailto:rallav...@gmail.com] Sent: Wednesday, December 02, 2015 3:38 PM To: users@activemq.apache.org Subject: Re: ActiveMQ deployment [ EXTERNAL ] Raffi, BTW, I am unable to get any res

RE: ActiveMQ deployment

2015-12-02 Thread Basmajian, Raffi
hosts; the advantage of using LB/wide-IP is avoiding all this complexity at the client level. Hope that helps Raffi -Original Message- From: Rallavagu [mailto:rallav...@gmail.com] Sent: Wednesday, December 02, 2015 1:34 PM To: users@activemq.apache.org Subject: Re: ActiveMQ deployment [ EXTERNA

RE: Stress & Load Testing

2015-12-02 Thread Basmajian, Raffi
you not have a problem to use Scala. Gatling provide a JMS extension which support ActiveMQ. But I never tested it. http://gatling.io/docs/2.1.1/jms.html Michael 2015-12-02 15:41 GMT+01:00 Basmajian, Raffi : > I'm looking for test harnesses to perform soak, stress, performance, > a

Stress & Load Testing

2015-12-02 Thread Basmajian, Raffi
I'm looking for test harnesses to perform soak, stress, performance, and load testing on ActiveMQ. Found some stuff for Artemis, not ActiveMQ, Raffi This e-mail transmission may contain information that is proprietary, privileged and/or confidential and is intended exclusively for the per

RE: ActiveMQ deployment

2015-12-01 Thread Basmajian, Raffi
only, not stomp, ws, amqp: Full reference here http://activemq.apache.org/failover-transport-reference.html Hope that helps Raffi -Original Message- From: Rallavagu [mailto:rallav...@gmail.com] Sent: Tuesday, December 01, 2015 7:33 PM To: users@activemq.apache.org Subject

RE: ActiveMQ deployment

2015-12-01 Thread Basmajian, Raffi
ewer replicated LevelDB store. There are some stability issues with replicated LevelDB (w/ the code handling the zookeeper connection). Do you use an older configuration to handle M/S? Jim On Tue, Dec 1, 2015 at 4:24 PM Basmajian, Raffi wrote: > That's exactly the configuration we're

RE: ActiveMQ deployment

2015-12-01 Thread Basmajian, Raffi
t config, but leverage ActiveMQ cluster aware clients library to manage connection failovers. Hope that helps, Raffi -Original Message- From: Rallavagu [mailto:rallav...@gmail.com] Sent: Tuesday, December 01, 2015 2:57 PM To: users@activemq.apache.org Subject: Re: ActiveMQ deployment [ EX

RE: ActiveMQ deployment

2015-12-01 Thread Basmajian, Raffi
NoB forwards messages based on consumer demand, not for achieving failover. You can get failover on the client using standalone brokers, just use failover:() protocol from client. Master/Slave is true failover. -Original Message- From: Rallavagu [mailto:rallav...@gmail.com] Sent: Tuesday

Stress & Load Testing Tools

2015-11-30 Thread Basmajian, Raffi
I'm looking for test harnesses to produce various types of load for soak, stress, and performance testing. Quick google search revealed some stuff for Artemis, but not ActiveMQ; is there nothing in the project that addresses this need? Raffi This e-mail transmission may contain inform

ActiveMQ Soak Test

2015-11-27 Thread Basmajian, Raffi
Looking for soak test harness, is one available in the code base? Did a quick search, found one for Artemis, but need ActiveMQ Raffi This e-mail transmission may contain information that is proprietary, privileged and/or confidential and is intended exclusively for the person(s) to whom it is

RE: ActiveMQ Brokers starts the reindex of the KahaDB on every startup

2015-11-18 Thread Basmajian, Raffi
Tim, we need an app for that :-) Raffi -Original Message- From: tbai...@gmail.com [mailto:tbai...@gmail.com] On Behalf Of Tim Bain Sent: Wednesday, November 18, 2015 10:27 AM To: ActiveMQ Users Subject: Re: ActiveMQ Brokers starts the reindex of the KahaDB on every startup [ EXTERNAL

RE: Network of brokers problems

2015-11-18 Thread Basmajian, Raffi
OK, understood. I haven't used composite queues so I won't be able to assist on this question, though I'm sure veterans will chime in with their thoughts. Good luck -Original Message- From: magnusT [mailto:magnus.thylan...@greenhatpeople.com] Sent: Wednesday, November 18, 2015 7:29 AM

RE: Network of brokers problems

2015-11-18 Thread Basmajian, Raffi
What are you trying to achieve? You mentioned "replication" and "forwarding" interchangeably, which is confusing. Message replication is a function of the persistence adapter, not network of brokers. Sent from my Verizon Wireless 4G LTE smartphone Original message From: mag

RE: QueueBrowers in clustered topologies

2015-11-15 Thread Basmajian, Raffi
Thanks, Tim. Raffi -Original Message- From: tbai...@gmail.com [mailto:tbai...@gmail.com] On Behalf Of Tim Bain Sent: Sunday, November 15, 2015 3:16 AM To: ActiveMQ Users Subject: Re: QueueBrowers in clustered topologies [ EXTERNAL ] When you browse a queue, you are only browsing the

QueueBrowers in clustered topologies

2015-11-14 Thread Basmajian, Raffi
When using network of brokers, does QueueBrowser show messages from a single broker, or an aggregate of messages from all brokers assuming messages for a given queue reside on more than one broker? This e-mail transmission may contain information that is proprietary, privileged and/or confident

RE: JMX : how to browse queues

2015-11-13 Thread Basmajian, Raffi
Francois, The answer is in that documentation, either list or wildcard will work, -Original Message- From: fliot [mailto:franc...@liot.org] Sent: Friday, November 13, 2015 1:53 PM To: users@activemq.apache.org Subject: RE: JMX : how to browse queues [ EXTERNAL ] Thanks for you respon

RE: JMX : how to browse queues

2015-11-13 Thread Basmajian, Raffi
Hi Francois, If you're using REST-to-JMX api from Jolokia, this is what you need: https://jolokia.org/reference/html/protocol.html Best, Raffi -Original Message- From: fliot [mailto:franc...@liot.org] Sent: Friday, November 13, 2015 12:43 PM To: users@activemq.apache.org Subject

RE: JMX connections creating high cpu and GC

2015-11-11 Thread Basmajian, Raffi
lternative. Raffi -Original Message- From: tbai...@gmail.com [mailto:tbai...@gmail.com] On Behalf Of Tim Bain Sent: Wednesday, November 11, 2015 8:41 AM To: ActiveMQ Users Cc: asha...@vizuri.com; Kent Eudy Subject: RE: JMX connections creating high cpu and GC [ EXTERNAL ] The only way I can t

RE: JMX connections creating high cpu and GC

2015-11-11 Thread Basmajian, Raffi
ualVM? On Nov 10, 2015 4:09 PM, "Basmajian, Raffi" wrote: > I'm throwing a hail mary on this one, > > We've set up a broker cluster on A-MQ 5.11 (Fuse 6.2). > Six master/slave pairs, full graph topology network of brokers; 12 brokers > total. > The cluster

JMX connections creating high cpu and GC

2015-11-10 Thread Basmajian, Raffi
I'm throwing a hail mary on this one, We've set up a broker cluster on A-MQ 5.11 (Fuse 6.2). Six master/slave pairs, full graph topology network of brokers; 12 brokers total. The cluster is brand new, no message activity; network connectors are active and working properly. Java 8, RHEL 7.1, 1gb/

Publish JMX Metrics on Topics

2015-11-06 Thread Basmajian, Raffi
Is there anything in ActiveMQ that can auto publish JMX metrics to topics, perhaps named after the Mbean/attribute itself? We want to build a simple web console that receives only a few JMX metrics, but we don't want to poll, would rather push metrics over ws/stomp. Raffi This e

RE: Force slave mode for testing

2015-11-05 Thread Basmajian, Raffi
Nov 5, 2015 8:53 AM, "Basmajian, Raffi" wrote: > Is it possible to force a broker to start as a slave, for testing? > > This e-mail transmission may contain information that is proprietary, > privileged and/or confidential and is intended exclusively for the > person

Force slave mode for testing

2015-11-05 Thread Basmajian, Raffi
Is it possible to force a broker to start as a slave, for testing? This e-mail transmission may contain information that is proprietary, privileged and/or confidential and is intended exclusively for the person(s) to whom it is addressed. Any use, copying, retention or disclosure by any person

RE: Get ActiveMQ broker version programmatically

2015-11-02 Thread Basmajian, Raffi
- From: Basmajian, Raffi [mailto:rbasmaj...@ofiglobal.com] Sent: Monday, November 02, 2015 9:34 AM To: users@activemq.apache.org Subject: RE: Get ActiveMQ broker version programmatically [ EXTERNAL ] You can do it via JMX, Attribute - BrokerVersion MBean - org.apache.activemq:type=Broker,

RE: Get ActiveMQ broker version programmatically

2015-11-02 Thread Basmajian, Raffi
You can do it via JMX, Attribute - BrokerVersion MBean - org.apache.activemq:type=Broker,brokerName= -Original Message- From: Jan Gargulák [mailto:jan.gargu...@trixi.cz] Sent: Monday, November 02, 2015 9:15 AM To: users@activemq.apache.org Subject: Get ActiveMQ broker version programma

RE: Critical metrics to monitor over JMX?

2015-11-02 Thread Basmajian, Raffi
ual use, I don't see it being a practical solution for collection in this case. (unless I'm missing something?) JB, Got a link for this? Karaf Decanter for the ActiveMQ view Raffi -Original Message- From: tbai...@gmail.com [mailto:tbai...@gmail.com] On Behalf Of Tim Bain Sent:

Critical metrics to monitor over JMX?

2015-11-01 Thread Basmajian, Raffi
sessions a broker creates? If so, where are these limits defined? Raffi This e-mail transmission may contain information that is proprietary, privileged and/or confidential and is intended exclusively for the person(s) to whom it is addressed. Any use, copying, retention or disclosure by

Disable network connector on startup

2015-10-29 Thread Basmajian, Raffi
Is it possible to configure a network connector such that on startup it is disabled, but may be activated later via JMX or updated config? Raffi This e-mail transmission may contain information that is proprietary, privileged and/or confidential and is intended exclusively for the person(s

RE: GC Overhead limit exceeded?

2015-10-22 Thread Basmajian, Raffi
y with the performance you're seeing. Tim On Wed, Oct 21, 2015 at 9:14 AM, Basmajian, Raffi wrote: > Tim, > > Can you share the G1 settings you used? > > Raffi > > -Original Message- > From: tbai...@gmail.com [mailto:tbai...@gmail.com] On Behalf Of Tim Bain

RE: GC Overhead limit exceeded?

2015-10-21 Thread Basmajian, Raffi
Tim, Can you share the G1 settings you used? Raffi -Original Message- From: tbai...@gmail.com [mailto:tbai...@gmail.com] On Behalf Of Tim Bain Sent: Wednesday, October 21, 2015 10:41 AM To: ActiveMQ Users Subject: Re: GC Overhead limit exceeded? [ EXTERNAL ] Before you can tune for

RE: GC Overhead limit exceeded?

2015-10-20 Thread Basmajian, Raffi
min as 1024? Regards, Barry -Original Message- From: Basmajian, Raffi [mailto:rbasmaj...@ofiglobal.com] Sent: Tuesday, October 20, 2015 1:18 PM To: users@activemq.apache.org Subject: RE: GC Overhead limit exceeded? Max memory is only 1Gb? Not knowing anything about your use cases or

RE: GC Overhead limit exceeded?

2015-10-20 Thread Basmajian, Raffi
Max memory is only 1Gb? Not knowing anything about your use cases or volumes, 1Gb is low, try increasing to 2Gb, so how far that gets you. Btw, on Java 8, "PERM" settings related to PermGen memory space are ignored; that space was removed, replaced with Meta space, use -XX:MaxMetaspaceSize to c

RE: GC Overhead limit exceeded?

2015-10-20 Thread Basmajian, Raffi
Are you referring to the G1 collector? I know it's completely subjective, but I'd be curious to know what settings (in general) work well for moderate volume. Raffi -Original Message- From: burtonator2...@gmail.com [mailto:burtonator2...@gmail.com] On Behalf Of Kevin B

Composite destinations and client support

2015-10-09 Thread Basmajian, Raffi
Are composite destinations supported for all types of clients, not just JMS/Java? For example, is it possible for HTTP client to send a message to three queues at once? curl -d "body=message" http://mqhost/api/message/TEST1,TEST2,TEST3?type=queue This e-mail transmission may contain informati

RE: Can we achive message priority with parallel processing with single Queue

2015-10-08 Thread Basmajian, Raffi
Have you looked at Message Groups? http://activemq.apache.org/message-groups.html -Original Message- From: skrish018c [mailto:sunil_kris...@cable.comcast.com] Sent: Thursday, October 08, 2015 8:03 AM To: users@activemq.apache.org Subject: Can we achive message priority with parallel pro

Securing queues/topics with custom ACLs

2015-10-06 Thread Basmajian, Raffi
operations for restricting access to destinations, but these are too limiting for our needs. Can we achieve fine-grained access as depicted above, or does this require a custom LDAP module? Raffi This e-mail transmission may contain information that is proprietary, privileged and/or confidential

RE: Transports available for networkConnectors

2015-10-05 Thread Basmajian, Raffi
f. Brokers configured in NoB, on the other hand, talk the same language, so there's no technical gap to bridge and thus no need to transform from one message format to another. Is that a correct assessment or am I missing something? Raffi -Original Message- From: Chri

RE: Network of Brokers - Putting/Getting from a queue

2015-10-04 Thread Basmajian, Raffi
I'm not 100% sure if duplex works with SSL. Glad you're making progress :-) Raffi -Original Message- From: barry.barn...@wellsfargo.com [mailto:barry.barn...@wellsfargo.com] Sent: Sunday, October 04, 2015 10:06 PM To: users@activemq.apache.org Subject: RE: Network of Brokers

RE: Network of Brokers - Putting/Getting from a queue

2015-10-04 Thread Basmajian, Raffi
Barry, If you're using SSL, do something like this: http://ggl-consulting.blogspot.com/2015/03/broker-to-broker-network-connector-with.html Best Raffi -Original Message- From: barry.barn...@wellsfargo.com [mailto:barry.barn...@wellsfargo.com] Sent: Sunday, Octob

REST API in 5.11

2015-10-03 Thread Basmajian, Raffi
Is the REST api enabled in ActiveMQ 5.11? I'm using Fuse 6.2, which has ActiveMQ 5.11, but I can't seem to get anything working with sending or receiving messages over HTTP, all I get is 404: http://localhost:8181/api/message http://localhost:8181/api/jolokia wget --http-user=fuse --http-passwor

RE: Network of Brokers - Putting/Getting from a queue

2015-10-01 Thread Basmajian, Raffi
n? Regards, Barry -Original Message----- From: Basmajian, Raffi [mailto:rbasmaj...@ofiglobal.com] Sent: Wednesday, September 30, 2015 3:07 PM To: users@activemq.apache.org Subject: RE: Network of Brokers - Putting/Getting from a queue Barry, No, not from the client perspective, there is no special d

RE: Network of Brokers - Putting/Getting from a queue

2015-09-30 Thread Basmajian, Raffi
Barry, No, not from the client perspective, there is no special designation. Provided config permits message flow between A and B, messages should flow in the direction of the connector config. Raffi -Original Message- From: barry.barn...@wellsfargo.com [mailto:barry.barn

RE: ActiveMQ Network of Brokers plus HA for messages

2015-09-29 Thread Basmajian, Raffi
Tim, To be clear, NoB and M/S are mutually exclusive within the same master/slave group, but the same does not hold true for "cluster" given its ambiguity. Raffi -Original Message- From: tbai...@gmail.com [mailto:tbai...@gmail.com] On Behalf Of Tim Bain Sent: Tuesday, Se

Failover support in 5.11

2015-09-25 Thread Basmajian, Raffi
Looking to confirming transports that support client failover in 5.11/A-MQ 6.2 Based on documentation, we found the following; are we missing anything? Openwire Openwire.net AMQP JMS This e-mail transmission may contain information that is proprietary, privileged and/or confidential and is inten

RE: Datacenter failover and randomizing connections

2015-09-24 Thread Basmajian, Raffi
lover:(tcp://ny1,tcp://ny2,tcp://chi1,tcp://chi2) randomize=true priorityBackup=true priorityURIs=tcp://ny1,tcp://ny2 Thanks, Tim, very helpful! Best, Raffi -Original Message- From: Timothy Bish [mailto:tabish...@gmail.com] Sent: Thursday, September 24, 2015 5:57 PM To: users@activemq.

RE: Datacenter failover and randomizing connections

2015-09-24 Thread Basmajian, Raffi
Tim, We missed that one! Looks promising, though the only gripe I have with that approach is duplication of data, creating maintenance overhead and higher likelihood of misconfigurations. I assume the nested option I suggested is not supported? Raffi -Original Message- From: Timothy

Datacenter failover and randomizing connections

2015-09-24 Thread Basmajian, Raffi
o brokers in NY are available. failover:( failover:(tcp://ny1,tcp://ny2), failover:(tcp://chi1,tcp://chi2))?randomize=false&priorityBackup=true We're exploring DNS and F5 options as well, but we want to leverage the software as much as possible before configuring infrastructure. Tha