Return-Path: Delivered-To: apmail-geronimo-activemq-commits-archive@www.apache.org Received: (qmail 39194 invoked from network); 30 Oct 2006 20:27:51 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (140.211.11.2) by minotaur.apache.org with SMTP; 30 Oct 2006 20:27:51 -0000 Received: (qmail 82484 invoked by uid 500); 30 Oct 2006 20:28:01 -0000 Delivered-To: apmail-geronimo-activemq-commits-archive@geronimo.apache.org Received: (qmail 82425 invoked by uid 500); 30 Oct 2006 20:28:01 -0000 Mailing-List: contact activemq-commits-help@geronimo.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: activemq-dev@geronimo.apache.org Delivered-To: mailing list activemq-commits@geronimo.apache.org Received: (qmail 82264 invoked by uid 99); 30 Oct 2006 20:28:01 -0000 Received: from herse.apache.org (HELO herse.apache.org) (140.211.11.133) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 30 Oct 2006 12:27:58 -0800 X-ASF-Spam-Status: No, hits=0.6 required=10.0 tests=NO_REAL_NAME X-Spam-Check-By: apache.org Received: from [140.211.11.3] (HELO eris.apache.org) (140.211.11.3) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 30 Oct 2006 12:27:16 -0800 Received: by eris.apache.org (Postfix, from userid 65534) id 270041A991D; Mon, 30 Oct 2006 09:01:52 -0800 (PST) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r469195 - /incubator/activemq/site/networks-of-brokers.html Date: Mon, 30 Oct 2006 17:01:51 -0000 To: activemq-commits@geronimo.apache.org From: chirino@apache.org X-Mailer: svnmailer-1.1.0 Message-Id: <20061030170152.270041A991D@eris.apache.org> X-Virus-Checked: Checked by ClamAV on apache.org Author: chirino Date: Mon Oct 30 09:01:51 2006 New Revision: 469195 URL: http://svn.apache.org/viewvc?view=rev&rev=469195 Log: Latest export from confluence Modified: incubator/activemq/site/networks-of-brokers.html Modified: incubator/activemq/site/networks-of-brokers.html URL: http://svn.apache.org/viewvc/incubator/activemq/site/networks-of-brokers.html?view=diff&rev=469195&r1=469194&r2=469195 ============================================================================== --- incubator/activemq/site/networks-of-brokers.html (original) +++ incubator/activemq/site/networks-of-brokers.html Mon Oct 30 09:01:51 2006 @@ -252,8 +252,7 @@ -
-

To provide massive scalability of a large messaging fabric you typically want to allow many brokers to be connected together into a network so that you can have as many clients as you wish all logically connected together - and running as many message brokers as you need based on your number of clients and network topology.

+

To provide massive scalability of a large messaging fabric you typically want to allow many brokers to be connected together into a network so that you can have as many clients as you wish all logically connected together - and running as many message brokers as you need based on your number of clients and network topology.

If you are using client/server or hub/spoke style topology then the broker you connect to becomes a single point of failure which is another reason for wanting a network (or cluster) of brokers so that you can survive failure of any particular broker, machine or subnet.

@@ -399,11 +398,11 @@

This part of an example configuration for a Broker

<networkConnectors>
-      <networkConnector uri="static://(tcp://localhost:61617)" failover="true">
-         name = bridge
-         dynamicOnly = false
-         conduitSubscriptions = true
-         decreaseNetworkConsumerPriority = false
+      <networkConnector uri="static://(tcp://localhost:61617)" failover="true"
+         name="bridge"
+         dynamicOnly="false"
+         conduitSubscriptions="true"
+         decreaseNetworkConsumerPriority="false">
       	<excludedDestinations>
       		<queue physicalName="exclude.test.foo"/>
       		<topic physicalName="exclude.test.bar"/>
@@ -419,11 +418,11 @@
 For example, if using distributed queues, you may wish to have equivlanent weighting to queue receivers across the network, but only when the receivers are active - e.g.

<networkConnectors>
-      <networkConnector uri="static://(tcp://localhost:61617)" failover="true">
-         name = queues_only
-         dynamicOnly = true
-         conduitSubscriptions = false
-         decreaseNetworkConsumerPriority = false
+      <networkConnector uri="static://(tcp://localhost:61617)" failover="true"
+         name="queues_only"
+         dynamicOnly="true"
+         conduitSubscriptions="false"
+         decreaseNetworkConsumerPriority="false">
       	<excludedDestinations>
       		<topic physicalName=">"/>
       	</excludedDestinations>
@@ -472,8 +471,8 @@