You are viewing a plain text version of this content. The canonical link for it is here.
Posted to issues@activemq.apache.org by "Angelo Atanasov (JIRA)" <ji...@apache.org> on 2016/07/20 08:59:20 UTC

[jira] [Created] (AMQ-6367) Queues are not persisted after broker restart when using different persistence from KahaDB

Angelo Atanasov created AMQ-6367:
------------------------------------

             Summary: Queues are not persisted after broker restart when using different persistence from KahaDB
                 Key: AMQ-6367
                 URL: https://issues.apache.org/jira/browse/AMQ-6367
             Project: ActiveMQ
          Issue Type: Bug
          Components: Broker, JDBC, KahaDB
    Affects Versions: 5.11.2
         Environment: Fedora 22, 64bit
            Reporter: Angelo Atanasov


Steps to reproduce:
1. Set a postgres jdbcPersistenceAdapter :

---
 <persistenceAdapter>
        <!-- disable kahaDB persistence -->
        <!--    <kahaDB directory="${activemq.data}/kahadb"/> -->
                <jdbcPersistenceAdapter dataDirectory="${activemq.base}/activemq-data" dataSource="#postgres-ds" createTablesOnStartup="true"/>
        </persistenceAdapter>

 ---

<bean id="postgres-ds" class="org.postgresql.ds.PGPoolingDataSource" destroy-method="close">
        <property name="serverName" value="localhost"/>
        <property name="databaseName" value="activemqdb"/>
        <property name="portNumber" value="0"/>
        <property name="user" value="postgres"/>
        <property name="password" value="abcdef123"/>
        <property name="dataSourceName" value="postgres"/>
        <property name="initialConnections" value="1"/>
        <property name="maxConnections" value="10"/>
    </bean>

2. Start the broker
3. Go to http://localhost:8161/admin/queues.jsp
4. Create manually a queue with some name
5. The queue has been created and listed
6. Restart the broker  (./activemq restart)
7. Go back to http://localhost:8161/admin/queues.jsp
8. The queue disappeared!

Expected behavior:

At point 8. The queue should be listed even after a restart.

------------------------------
When we using the kahaDB persistence there is no such issue. It seems that this only happens when we're using external database persistence such as postgres






--
This message was sent by Atlassian JIRA
(v6.3.4#6332)