basic static connection cluster setup not working

2019-10-18 Thread phil
trying to get a two node cluster going in google cloud for test purposes. For one brief shining moment I some how had it showing "nodes=2 members=2" and the "my-cluster" diagram showed both nodes. But now I've lost the magic. I've tried a bunch of things. Most recently, the simplest syntax that s

Best way to drain queues for maint?

2020-03-05 Thread phil brown
Hi, im new to apache MQ, and trying to figure out best practices for disruptive maintenance. HAproxy has a "drain" setting for its servers. I'm wondering if mqueue has something similar? We have an mqueue that gets hit by a lot of different things. I'm tryhing to figure out the best way to shut it

Re: Best way to drain queues for maint?

2020-03-05 Thread phil brown
It would be good to know for both mqueue and artemis We have both. -- Sent from: http://activemq.2283324.n4.nabble.com/ActiveMQ-User-f2341805.html

Re: Best way to drain queues for maint?

2020-03-05 Thread phil brown
PS: Not only do we have both... but I also am trying to put together a plan to safely upgrade a single-instance mqueue, to artemis. That's actually what triggered my initial question here phil brown wrote > It would be good to know for both mqueue and artemis > We have both. >

Re: Unable to recover data after activemq upgrade

2021-06-04 Thread Phil Ruggera
What does "include all destinations in the 5.3 -> 5.16 direction, to force all messages to be transferred" entail? On Fri, Jun 4, 2021, 5:45 AM Tim Bain wrote: > One option would be to load the 5.3 data file into a new temporary 5.3 > broker and configure it to make a network of brokers with you

Re: Another XA Transaction question

2009-09-07 Thread Phil Pickett
- Original Message - From: sbuster To: users@activemq.apache.org Sent: Mon Sep 07 09:24:16 2009 Subject: Another XA Transaction question I'm using ActiveMQ 5.2 with WebSphere 7.0 and Sun JavaDB 10.x. Pretty standard requirement, I have a message that arrives on a Queue, gets pulled o

Re: Non-persistent deliverymode not effect.

2016-08-02 Thread Phil White
Two years on I saw the same thing, that Spring's JMSTemplate seems to ignore non-persistent delivery configuration, and always sends as persistent. Tracing through JMSTemplate it turns out that deliveryMode, priority, and timeToLive are ignored during send() unless "explicit QOS" is enabled, ie. jm

Re: Non-persistent deliverymode not effect.

2016-08-02 Thread Phil White
It's a fair point, and I've used both approaches in the past, but when you're using the Spring framework for almost everything else then it's natural to also use its messaging abstractions, and in most cases it does simplify JMS usage and configuration. While looking into the persistence problem I

[ARTEMIS] Get name of consumer in an interceptor

2018-04-24 Thread Phil Crowder
I'm trying to get the consumer's user id/ name that is consuming messages on topic queue. I can see a userId on the Message object but it looks like a UUID. Is there a way to map the UUID to the connected consumer? Should I look at something else? Or is there another way to get this information? I

Re: [ARTEMIS] Get name of consumer in an interceptor

2018-04-25 Thread Phil Crowder
called again. Is that what you would expect? It is not what I expected. Phil -- Sent from: http://activemq.2283324.n4.nabble.com/ActiveMQ-User-f2341805.html

Performance tests?

2007-06-08 Thread Phil Goodwin
collecting some performance benchmarks across some different hardware so that we can decide exactly how we want to deploy ActiveMQ. Is activemq-perftest the right tool for the job? Thanks, Phil

Re: Performance tests?

2007-06-11 Thread Phil Goodwin
On 6/11/07 5:15 AM, "James Strachan" <[EMAIL PROTECTED]> wrote: > On 6/9/07, Phil Goodwin <[EMAIL PROTECTED]> wrote: >> Is activemq-perftest still valid as a performance test? Is Jmeter still >> supported? >> ... > > Its a little crufty now. A

Re: Performance tests?

2007-06-11 Thread Phil Goodwin
On 6/11/07 11:21 AM, "James Strachan" <[EMAIL PROTECTED]> wrote: > On 6/11/07, Phil Goodwin <[EMAIL PROTECTED]> wrote: >> I was unable to get a clean Maven build from the 4.1.1 sources for either >> the base build or the performance testing without changing t

Enabling JMX in code snippet

2011-12-12 Thread phil swenson
lhost:61616"); broker.start(); } The jmx service doesn't appear to be working. I can't connect to JMX via JConsole. Ideas? Thanks phil

Re: Enabling JMX in code snippet

2011-12-12 Thread phil swenson
tions Consultant > FuseSource > Web: fusesource.com > Skype/Twitter: mjabali > Blog: http://marcelojabali.blogspot.com > > > > > On Dec 12, 2011, at 8:14 AM, phil swenson wrote: > > I am just getting started with activemq. I was trying to get it going in > code:

Multiple instances with ActiveMQ 5.4.1

2010-10-13 Thread Phil Pickett
. First of all, I'm trying to create and run multiple instances as follows: 1) Create the instances: $ cd /home/phil/apache-activemq-5.4.1 $ bin/activemq create broker1 $ bin/activemq setup ~/.activemqrc-instance-broker1 $ ln -s activemq bin/activemq-instance-broker1 $ bin/activemq create bro

RE: Multiple instances with ActiveMQ 5.4.1

2010-10-14 Thread Phil Pickett
#x27;t opened a Jira on this or the original issue since the scripts are new and I can't tell based on the docs I've read if I'm missing something in the instance configuration with the instance-specfic .activemqrc or activemq script. Phil [p...@fedora11b apache-activemq-5.4

RE: Multiple instances with ActiveMQ 5.4.1

2010-10-14 Thread Phil Pickett
It looks like specifying JMX properties with a unique port in each of the instance's start scripts (i.e., broker1/bin/broker1, broker2/bin/broker2, ...) may resolve this. I also commented out the JMX properties in bin/activemq since I've defined it for the instances. Phil ---

Message bandwidth/overheads - how to reduce?

2011-08-04 Thread Phil White
I'm trying to calculate some approximate messaging bandwidth requirements for a project which is planning to use ActiveMQ. It's a C#/.NET project so I'm starting out with an NMS + Openwire assumption. I have a test application which publishes topic messages. No text, just some properties: IMessa

Re: Message bandwidth/overheads - how to reduce?

2011-08-05 Thread Phil White
Thanks Tim I don't think these additional messages are connection/subscribe related though; I'm pushing 100 messages out of the publisher, one every second, and see the same sequence between each message. Also the 243 packets come immediately after the message, whereas I would have expected keep-a

Re: Message bandwidth/overheads - how to reduce?

2011-08-09 Thread Phil White
Thanks Tim The subscriber URI is now: activemq:tcp://HUSH7:61616?wireFormat.tightEncodingEnabled=true&transport.useLogging=true but I don't see any log files. I must be missing something - do I need to enable something else, or install a logger on the subscriber? On the question of the underlyi