You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@activemq.apache.org by clebertsuconic <gi...@git.apache.org> on 2017/10/02 14:16:16 UTC

[GitHub] activemq-artemis pull request #1565: ARTEMIS-1443 Fix issue starting Artemis...

Github user clebertsuconic commented on a diff in the pull request:

    https://github.com/apache/activemq-artemis/pull/1565#discussion_r142150629
  
    --- Diff: artemis-features/src/main/resources/artemis.xml ---
    @@ -22,28 +22,68 @@ under the License.
                    xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
                    xsi:schemaLocation="urn:activemq /schema/artemis-configuration.xsd">
     
    -   <jms xmlns="urn:activemq:jms">
    -      <queue name="DLQ"/>
    -      <queue name="ExpiryQueue"/>
    -   </jms>
    +   <core xmlns="urn:activemq:core" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
    +         xsi:schemaLocation="urn:activemq:core ">
    +
    +      <persistence-enabled>true</persistence-enabled>
    +
    +      <!-- this could be ASYNCIO, MAPPED, NIO
    +           ASYNCIO: Linux Libaio
    +           MAPPED: mmap files
    +           NIO: Plain Java Files
    +       -->
    +      <journal-type>NIO</journal-type>
    --- End diff --
    
    Why NIO?


---