You are viewing a plain text version of this content. The canonical link for it is here.
Posted to server-dev@james.apache.org by er...@apache.org on 2011/10/08 13:54:30 UTC

svn commit: r1180363 - /james/app/trunk/src/main/config/james/META-INF/org/apache/james/spring-mailbox-hbase.xml

Author: eric
Date: Sat Oct  8 11:54:29 2011
New Revision: 1180363

URL: http://svn.apache.org/viewvc?rev=1180363&view=rev
Log:
For now, override the provided spring-mailbox-hbase.xml to be able to use in real deployment, and do not rely on hbaseminicluster (MAILBOX-133)

Added:
    james/app/trunk/src/main/config/james/META-INF/org/apache/james/spring-mailbox-hbase.xml

Added: james/app/trunk/src/main/config/james/META-INF/org/apache/james/spring-mailbox-hbase.xml
URL: http://svn.apache.org/viewvc/james/app/trunk/src/main/config/james/META-INF/org/apache/james/spring-mailbox-hbase.xml?rev=1180363&view=auto
==============================================================================
--- james/app/trunk/src/main/config/james/META-INF/org/apache/james/spring-mailbox-hbase.xml (added)
+++ james/app/trunk/src/main/config/james/META-INF/org/apache/james/spring-mailbox-hbase.xml Sat Oct  8 11:54:29 2011
@@ -0,0 +1,56 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!--
+  Licensed to the Apache Software Foundation (ASF) under one
+  or more contributor license agreements.  See the NOTICE file
+  distributed with this work for additional information
+  regarding copyright ownership.  The ASF 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.    
+-->
+
+<beans xmlns="http://www.springframework.org/schema/beans" 
+       xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
+       xsi:schemaLocation="
+          http://www.springframework.org/schema/beans classpath:org/springframework/beans/factory/xml/spring-beans-3.0.xsd">
+
+    <!-- 
+      Mailbox HBase
+     -->
+     
+    <!-- 
+        This is the link to the HBase Cluster. You need to place a valid hbase 
+        config file on the classpath that will be picked up by HBaseConfiguration.create().
+    -->
+    <bean id="hbase-conf" class="org.apache.hadoop.hbase.HBaseConfiguration" factory-method="create" />
+
+    <bean id="hbase-mailboxmanager" class="org.apache.james.mailbox.hbase.HBaseMailboxManager" init-method="init">
+        <constructor-arg index="0" ref="hbase-sessionMapperFactory"/>
+        <constructor-arg index="1" ref="authenticator"/>
+        <constructor-arg index="2" ref="hbase-locker"/>
+    </bean>
+    
+    <bean id="hbase-sessionMapperFactory" class="org.apache.james.mailbox.hbase.HBaseMailboxSessionMapperFactory">
+        <constructor-arg index="0" ref="hbase-conf"/>
+        <constructor-arg index="1" ref="hbase-uidProvider"/>
+        <constructor-arg index="2" ref="hbase-modSeqProvider"/>
+    </bean>
+    <bean id="hbase-uidProvider" class="org.apache.james.mailbox.hbase.mail.HBaseUidProvider">
+        <constructor-arg index="0" ref="hbase-conf"/>
+    </bean>
+    <bean id="hbase-modSeqProvider" class="org.apache.james.mailbox.hbase.mail.HBaseModSeqProvider">
+        <constructor-arg index="0" ref="hbase-conf"/>
+    </bean>
+    
+    <alias name="jvm-locker" alias="hbase-locker"/>
+
+</beans>



---------------------------------------------------------------------
To unsubscribe, e-mail: server-dev-unsubscribe@james.apache.org
For additional commands, e-mail: server-dev-help@james.apache.org