[jboss-cvs] JBossAS SVN: r109972 - in branches/JBPAPP_5_1_0_Final_HornetQ_2_2/hornetq-int/src/resources: hornetq-backup1 and 1 other directory.

jboss-cvs-commits at lists.jboss.org jboss-cvs-commits at lists.jboss.org
Thu Dec 16 11:08:29 EST 2010


Author: ataylor
Date: 2010-12-16 11:08:28 -0500 (Thu, 16 Dec 2010)
New Revision: 109972

Added:
   branches/JBPAPP_5_1_0_Final_HornetQ_2_2/hornetq-int/src/resources/hornetq-backup1/
   branches/JBPAPP_5_1_0_Final_HornetQ_2_2/hornetq-int/src/resources/hornetq-backup1/hornetq-configuration.xml
   branches/JBPAPP_5_1_0_Final_HornetQ_2_2/hornetq-int/src/resources/hornetq-backup1/hornetq-jboss-beans.xml
Log:
added backup config for hornetq

Added: branches/JBPAPP_5_1_0_Final_HornetQ_2_2/hornetq-int/src/resources/hornetq-backup1/hornetq-configuration.xml
===================================================================
--- branches/JBPAPP_5_1_0_Final_HornetQ_2_2/hornetq-int/src/resources/hornetq-backup1/hornetq-configuration.xml	                        (rev 0)
+++ branches/JBPAPP_5_1_0_Final_HornetQ_2_2/hornetq-int/src/resources/hornetq-backup1/hornetq-configuration.xml	2010-12-16 16:08:28 UTC (rev 109972)
@@ -0,0 +1,135 @@
+<!--
+  ~ Copyright 2009 Red Hat, Inc.
+  ~  Red Hat licenses this file to you under the Apache License, version
+  ~  2.0 (the "License"); you may not use this file except in compliance
+  ~  with the License.  You may obtain a copy of the License at
+  ~     http://www.apache.org/licenses/LICENSE-2.0
+  ~  Unless required by applicable law or agreed to in writing, software
+  ~  distributed under the License is distributed on an "AS IS" BASIS,
+  ~  WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
+  ~  implied.  See the License for the specific language governing
+  ~  permissions and limitations under the License.
+  -->
+
+<configuration xmlns="urn:hornetq"
+               xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
+               xsi:schemaLocation="urn:hornetq /schema/hornetq-configuration.xsd">
+
+   <jmx-domain>org.hornetq.backup1</jmx-domain>
+
+   <clustered>true</clustered>
+
+   <backup>true</backup>
+
+   <shared-store>true</shared-store>
+
+   <allow-failback>true</allow-failback>
+
+   <log-delegate-factory-class-name>org.hornetq.integration.logging.Log4jLogDelegateFactory</log-delegate-factory-class-name>
+   
+   <bindings-directory>${jboss.server.data.dir}/hornetq-backup/bindings</bindings-directory>
+
+   <journal-directory>${jboss.server.data.dir}/hornetq-backup/journal</journal-directory>
+   
+   <journal-min-files>10</journal-min-files>
+
+   <large-messages-directory>${jboss.server.data.dir}/hornetq-backup/largemessages</large-messages-directory>
+
+   <paging-directory>${jboss.server.data.dir}/hornetq/paging</paging-directory>
+
+   <connectors>
+      <connector name="netty-connector">
+         <factory-class>org.hornetq.core.remoting.impl.netty.NettyConnectorFactory</factory-class>
+         <param key="host"  value="${jboss.bind.address:localhost}"/>
+         <param key="port"  value="${hornetq.remoting.netty.port:5446}"/>
+      </connector>
+
+      <!--The connetor to the live node that corresponds to this backup-->
+      <connector name="my-live-connector">
+         <factory-class>org.hornetq.core.remoting.impl.netty.NettyConnectorFactory</factory-class>
+         <param key="host"  value="my-live-host"/>
+         <param key="port"  value="${hornetq.remoting.netty.port:5445}"/>
+      </connector>
+
+       <!--invm connector added by th elive server on this node, used by the bridges-->
+      <connector name="in-vm">
+         <factory-class>org.hornetq.core.remoting.impl.invm.InVMConnectorFactory</factory-class>
+         <param key="server-id" value="${hornetq.server-id:0}"/>
+      </connector>
+
+   </connectors>
+
+   <acceptors>   
+      <acceptor name="netty">
+         <factory-class>org.hornetq.core.remoting.impl.netty.NettyAcceptorFactory</factory-class>
+         <param key="host"  value="${jboss.bind.address:localhost}"/>
+         <param key="port"  value="${hornetq.remoting.netty.port:5446}"/>
+      </acceptor>
+   </acceptors>
+
+    <broadcast-groups>
+        <broadcast-group name="bg-group1">
+            <group-address>231.7.7.7</group-address>
+            <group-port>9876</group-port>
+            <broadcast-period>1000</broadcast-period>
+            <connector-ref>netty-connector</connector-ref>
+        </broadcast-group>
+    </broadcast-groups>
+
+    <discovery-groups>
+        <discovery-group name="dg-group1">
+            <group-address>231.7.7.7</group-address>
+            <group-port>9876</group-port>
+            <refresh-timeout>60000</refresh-timeout>
+        </discovery-group>
+    </discovery-groups>
+
+    <cluster-connections>
+        <cluster-connection name="my-cluster">
+            <address>jms</address>
+            <connector-ref>netty-connector</connector-ref>
+            <discovery-group-ref discovery-group-name="dg-group1"/>
+        </cluster-connection>
+    </cluster-connections>
+
+     <!-- We need to create a core queue for the JMS queue explicitly because the bridge will be deployed
+   before the JMS queue is deployed, so the first time, it otherwise won't find the queue -->
+   <queues>
+      <queue name="jms.queue.testQueue">
+         <address>jms.queue.testQueue</address>
+      </queue>
+  </queues>
+   <!-- We set-up a bridge that forwards from a the queue on this node to the same address on the live node. -->
+   <bridges>
+      <bridge name="testQueueBridge">
+          <queue-name>jms.queue.testQueue</queue-name>
+          <forwarding-address>jms.queue.testQueue</forwarding-address>
+          <reconnect-attempts>-1</reconnect-attempts>
+          <static-connectors>
+             <connector-ref>in-vm</connector-ref>
+          </static-connectors>
+       </bridge>
+   </bridges>
+
+   <security-settings>
+      <security-setting match="#">
+         <permission type="createNonDurableQueue" roles="guest"/>
+         <permission type="deleteNonDurableQueue" roles="guest"/>
+         <permission type="consume" roles="guest"/>
+         <permission type="send" roles="guest"/>
+      </security-setting>
+   </security-settings>
+
+   <address-settings>
+      <!--default for catch all-->
+      <address-setting match="#">
+         <dead-letter-address>jms.queue.DLQ</dead-letter-address>
+         <expiry-address>jms.queue.ExpiryQueue</expiry-address>
+         <redelivery-delay>0</redelivery-delay>
+         <max-size-bytes>10485760</max-size-bytes>       
+         <message-counter-history-day-limit>10</message-counter-history-day-limit>
+         <address-full-policy>BLOCK</address-full-policy>
+      </address-setting>
+   </address-settings>
+
+</configuration>

Added: branches/JBPAPP_5_1_0_Final_HornetQ_2_2/hornetq-int/src/resources/hornetq-backup1/hornetq-jboss-beans.xml
===================================================================
--- branches/JBPAPP_5_1_0_Final_HornetQ_2_2/hornetq-int/src/resources/hornetq-backup1/hornetq-jboss-beans.xml	                        (rev 0)
+++ branches/JBPAPP_5_1_0_Final_HornetQ_2_2/hornetq-int/src/resources/hornetq-backup1/hornetq-jboss-beans.xml	2010-12-16 16:08:28 UTC (rev 109972)
@@ -0,0 +1,39 @@
+<?xml version="1.0" encoding="UTF-8"?>
+
+<deployment xmlns="urn:jboss:bean-deployer:2.0">
+
+   <!-- The core configuration -->
+   <bean name="BackupConfiguration" class="org.hornetq.core.config.impl.FileConfiguration">
+      <property name="configurationUrl">${jboss.server.home.url}/deploy/hornetq-backup1/hornetq-configuration.xml</property>
+   </bean>
+
+
+	<!-- The core server -->
+   <bean name="BackupHornetQServer" class="org.hornetq.core.server.impl.HornetQServerImpl">
+      <constructor>
+         <parameter>
+            <inject bean="BackupConfiguration"/>
+         </parameter>
+         <parameter>
+            <inject bean="MBeanServer"/>
+         </parameter>
+         <parameter>
+            <inject bean="HornetQSecurityManager"/>
+         </parameter>        
+      </constructor>
+      <start ignored="true"/>
+      <stop ignored="true"/>          
+   </bean>
+   
+   <!-- The JMS server -->
+   <bean name="BackupJMSServerManager" class="org.hornetq.jms.server.impl.JMSServerManagerImpl">
+      <constructor>         
+         <parameter>
+            <inject bean="BackupHornetQServer"/>
+         </parameter>         
+      </constructor>
+   </bean>
+
+
+
+</deployment>



More information about the jboss-cvs-commits mailing list