ActiveMQ持久性适配器

时间:2014-04-04 14:15:35

标签: jdbc activemq

我有一个经纪人网络,可以与持久订阅者一起正常工作。他们在"存储和转发"用" kahaDB持久性"。

我有一个可用的分布式数据库,它有自己的JDBC驱动程序。

我想知道是否值得创建JDBC适配器,以便代理在此共享数据库上存储消息以完成此分布式网络。

有可能吗?如果是的话,值得吗?

我的activemq.xml:

<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 http://www.springframework.org/schema/beans/spring-beans.xsd
      http://activemq.apache.org/schema/core http://activemq.apache.org/schema/core/activemq-core.xsd">

    <!-- Allows us to use system properties as variables in this configuration file -->
    <bean class="org.springframework.beans.factory.config.PropertyPlaceholderConfigurer">
        <property name="locations">
            <value>file:${activemq.conf}/credentials.properties</value>
        </property>
    </bean>

    <!-- Allows log searching in hawtio console -->
    <bean id="logQuery" class="org.fusesource.insight.log.log4j.Log4jLogQuery"
              lazy-init="false" scope="singleton"
              init-method="start" destroy-method="stop">
    </bean>

    <!-- We change the factory finder to instanciate the correct RedCurrant-class which are compatible -->
    <bean id="FactoryDefinition" class="org.springframework.beans.factory.config.MethodInvokingFactoryBean">
        <property name="targetClass">
            <value>org.apache.activemq.util.FactoryFinder</value>
        </property>
        <property name="targetMethod">
            <value>setObjectFactory</value>
        </property>
        <property name="arguments">
            <list>
                <bean id="ObjectFactory" class="io.redcurrant.activemq.util.RedCurrantObjectFactory"/>
            </list>
        </property>
    </bean>

    <!--
            The <broker> element is used to configure the ActiveMQ broker.
        -->
    <broker xmlns="http://activemq.apache.org/schema/core" brokerName="RC1" dataDirectory="${activemq.data}" persistent="true">

        <destinationPolicy>
            <policyMap>
                <policyEntries>
                    <policyEntry topic=">" >
                        <pendingMessageLimitStrategy>
                            <constantPendingMessageLimitStrategy limit="1000"/>
                        </pendingMessageLimitStrategy>
                    </policyEntry>
                </policyEntries>
            </policyMap>
        </destinationPolicy>

        <managementContext>
            <managementContext createConnector="false"/>
        </managementContext>

        <persistenceAdapter>
            <kahaDB directory="/DATA/TestNS/RC1/activemq-1"
                        concurrentStoreAndDispatchTopics="false"
                        enableJournalDiskSyncs="true"/>
        </persistenceAdapter>

        <systemUsage>
            <systemUsage>
                <memoryUsage>
                    <memoryUsage percentOfJvmHeap="70" />
                </memoryUsage>
                <storeUsage>
                    <storeUsage limit="100 gb"/>
                </storeUsage>
                <tempUsage>
                    <tempUsage limit="50 gb"/>
                </tempUsage>
            </systemUsage>
        </systemUsage>

        <transportConnectors>
            <transportConnector name="openwire" uri="tcp://0.0.0.0:30000?maximumConnections=1000&amp;wireFormat.maxFrameSize=104857600" discoveryUri="redcurrant://default:30000"/>
        </transportConnectors>

        <networkConnectors>
            <networkConnector uri="redcurrant://default"/>
        </networkConnectors>

        <shutdownHooks>
            <bean xmlns="http://www.springframework.org/schema/beans" class="org.apache.activemq.hooks.SpringContextHook" />
        </shutdownHooks>

    </broker>

    <import resource="jetty.xml"/>

</beans>

我致力于在名为&#34; RedCurrant&#34;的分布式系统上集成ActiveMQ,因此我创建了一个正确的DiscoveryAgent并在&#34; jar&#34;中进行了一些更改。我包含在ActiveMQ / lib中。

我真正想做的是拥有持久性的经纪人网络。我目前使用KahaDB来执行此操作,但是代理可以共享数据库以更快地共享主题的消息。我应该创建JDBC适配器(SQLite)吗?

1 个答案:

答案 0 :(得分:0)

JDBC /数据库不是在ActiveMQ中持久保存消息的最佳方式。

我还没有看到使用数据库的重点,因为JDBC用于在主服务器和从服务器之间共享数据,而不是在代理网络中的成员之间共享数据(NoB)。

如果你想使用数据库在NoB内部短信分发消息,你真的会错过NoB的观点。网络中的代理应该能够独立处理要传播的目的地和本地处理的目的地等。

如果您希望通过分布式数据库进行消息传递,而不是使用代理作为简单的连接器,那么您面前就会有一些主要的工作。