You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
// Enable built in message deduplication. Note we still have to do our own as the delayed commits
115
-
// and our own definition of commit mean that the built in deduplication cannot remove all duplicates.
116
-
idCacheSize =2000// Artemis Default duplicate cache size i.e. a guess
117
-
isPersistIDCache =true
118
-
isPopulateValidatedUser =true
119
-
journalBufferSize_NIO = maxMessageSize +JOURNAL_HEADER_SIZE// Artemis default is 490KiB - required to address IllegalArgumentException (when Artemis uses Java NIO): Record is too large to store.
120
-
journalBufferSize_AIO = maxMessageSize +JOURNAL_HEADER_SIZE// Required to address IllegalArgumentException (when Artemis uses Linux Async IO): Record is too large to store.
121
-
journalFileSize = maxMessageSize +JOURNAL_HEADER_SIZE// The size of each journal file in bytes. Artemis default is 10MiB.
// Enable built in message deduplication. Note we still have to do our own as the delayed commits
137
+
// and our own definition of commit mean that the built in deduplication cannot remove all duplicates.
138
+
idCacheSize =2000// Artemis Default duplicate cache size i.e. a guess
139
+
isPersistIDCache =true
140
+
isPopulateValidatedUser =true
141
+
journalBufferSize_NIO = maxMessageSize +JOURNAL_HEADER_SIZE// Artemis default is 490KiB - required to address IllegalArgumentException (when Artemis uses Java NIO): Record is too large to store.
142
+
journalBufferSize_AIO = maxMessageSize +JOURNAL_HEADER_SIZE// Required to address IllegalArgumentException (when Artemis uses Linux Async IO): Record is too large to store.
143
+
journalFileSize = maxMessageSize +JOURNAL_HEADER_SIZE// The size of each journal file in bytes. Artemis default is 10MiB.
0 commit comments