| time |
nick |
message |
00:20 |
<TomJ> |
Is there any way in ActiveMQ to perform load balancing / clustering - that is, to have two or more servers acting as one, where messages sent by a consumer are distributed evenly amongst the servers in the cluster? |
00:20 |
<TomJ> |
I see support for high availability / failover, but not sure if there's a way to have clustering also |
07:02 |
<jstrachan> |
dblevins: coolio :) |
07:51 |
<gnodet> |
jstrachan: is there a way to build the test jar in amq without actually running the tests ? |
08:19 |
<jstrachan> |
mvn test -Dtest=foo |
08:19 |
<jstrachan> |
(with that other flag that damn mvn insists you specify that I forget) |
08:20 |
<jstrachan> |
I've a 'mvnnt' script |
08:20 |
<jstrachan> |
#!/bin/sh |
08:20 |
<jstrachan> |
mvn -Dtest=false -DfailIfNoTests=false clean install |
08:20 |
<jstrachan> |
which builds all test jars but doesn't run any tests |
13:01 |
<chirino_m> |
TomJ: yes.. use networks of brokers |
13:12 |
<TomJ> |
chirino_m: ok, and that does load balancing also? my understanding of that was that it was for failover only, so server1 is used exclusively until it dies, then server2 is used exclusively etc. Is that wrong? |
13:36 |
<chirino_m> |
it is true but they forward messages between each other |
13:36 |
<chirino_m> |
so you can have a producer on broker a and a consumer on broker b.. and the consumer will get the messages from the producer |
13:43 |
<pbarry> |
What is the difference between |
13:43 |
<pbarry> |
What is the difference between activemq messageID and correlationID? |
13:44 |
<pbarry> |
I know correlationID is from JMS specs but, want to make sure I understand the relationship between these 2 |
13:45 |
<jstrachan> |
former set by JMS on each message, latter set by user on any messages (and can be same value on many messages) |
13:45 |
<pbarry> |
thx! |
13:48 |
<Steve> |
Sorry for the re-asking. Please let me know if you would rather i address this via the mailing. I suspect I'm just being an idiot and don't want to create noise |
13:51 |
<jstrachan> |
;) |
13:52 |
<Steve> |
I guess I should actually ask a question! What's the right way to set-up our bridge so that (1) it starts up w/o an active external queue, (2) doesn't block producers if something is wrong with the external queue, and (3) attempts to reconnect periodically to the external queue? |
14:27 |
<TomJ> |
chirino_m: ok great thanks very much, I'll benchmark it |
15:06 |
<jduty> |
how durable is amp for large number of messages? |
15:06 |
<rajdavies> |
very |
15:08 |
<jduty> |
any settings I should change on amqPersistenceAdapter to handle large number of outstanding messages? |
15:10 |
<jduty> |
seems like indexBinSize might be a good one to increase? |
15:10 |
<jduty> |
any advantage to increasing the maxFileLength? |
15:10 |
<rajdavies> |
yep - that would be good - jut putting in auto resize of that |
15:10 |
<jduty> |
how do I do auto-resize? |
15:11 |
<rajdavies> |
you can't yet - just putting that in |
15:11 |
<jduty> |
ahh, so I creased ndexBinSize="2048" |
15:11 |
<jduty> |
any advantage of increasing filelength? |
15:11 |
<rajdavies> |
the best change increasing binsize - to say 10240 |
15:12 |
<rajdavies> |
not really, the file length is 32mb by default |
15:12 |
<jduty> |
what about file length? |
15:12 |
<jduty> |
bigger better? |
15:12 |
<rajdavies> |
the downside is they take longer to clear up when messages get read |
15:13 |
<jduty> |
bigger files? |
15:13 |
<rajdavies> |
ok - if you insist - bigger files! ;) |
15:13 |
<jduty> |
no, I meant is it better to have a few larger amp files, or a bunch of smaller ones? |
15:14 |
<rajdavies> |
better to have a bunch of smaller files - I wouldn't change the default |
18:45 |
<Warden> |
hey all. |
18:46 |
<Warden> |
What happened to the java service wrapper script in the new 5.1 release? |
18:48 |
<Warden> |
ah, I assume it got replaced with activemq-admin? |
18:50 |
<Warden> |
hrm... no... |
19:06 |
<JS> |
I have question regarding discovery |
19:07 |
<JS> |
If I want to turn off discovery of other brokers, all I need to do is comment the <networkConnector> entry? |
19:08 |
<chirino_m> |
Warden: you on linux? |
19:08 |
<chirino_m> |
we messed up the packaging a little. just copy the macosx/activemq to linux-*/ |
19:57 |
<Warden> |
yeah. Okay, thanks. |