Justin Bertram created ARTEMIS-4241:
---------------------------------------
Summary: Paging + FQQN is broken
Key: ARTEMIS-4241
URL: https://issues.apache.org/jira/browse/ARTEMIS-4241
Project: ActiveMQ Artemis
Issue Type: Bug
Reporter: Justin Bertram
Assignee: Justin Bertram
When I produce messages using the CLI, e.g.:
{noformat}
./bin/artemis producer --destination queue://pagingQueue - -message-count 1000
--text-size 9000{noformat}
I can see that the corresponding address starts paging:
{noformat}
2022-09-27 09:32:08,633 WARN [org.apache.activemq.artemis.core.server]
AMQ222038: Starting paging on address 'pagingQueue'; size is currently: 114,458
bytes; max-size-bytes: 100,000; global-size-bytes: 114,458{noformat}
And I can see it reflected properly in the {{data}} folder.
However, when I produce messages with the CLI using the FQQN syntax, e.g.:
{noformat}
$ ./bin/artemis producer --destination pagingQueue::pagingQueue -
-message-count 1000 --text-size 9000{noformat}
It seems that the address starts paging due to the following log:
{noformat}
2022-09-27 09:32:37,740 WARN [org.apache.activemq.artemis.core.server]
AMQ222038: Starting paging on address 'pagingQueue::pagingQueue'; size is
currently: 114,606 bytes; max-size-bytes: 100,000; global-size-bytes:
114,926{noformat}
But there's no change in the {{data/paging}} folder.
I can see the address starts paging when the global size is increased after
ingesting some more data with the below {{WARN}}.
{noformat}
2022-09-27 09:35:16,340 WARN [org.apache.activemq.artemis.core.server]
AMQ222038: Starting paging on address 'pagingQueue'; size is currently: 100,032
bytes; max-size-bytes: 100,000; global-size-bytes: 29,954,895{noformat}
--
This message was sent by Atlassian Jira
(v8.20.10#820010)