Github user ryeats commented on a diff in the pull request:
https://github.com/apache/activemq-artemis/pull/1565#discussion_r142204873
--- 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 --
Copy paste issue ill change it back to ASYNCIO. I was just copying in
defaults from a fresh install of artemis since this looked out of date let me
know if thats not a good idea.
---