-
Sub-task
-
Resolution: Done
-
Major
-
AMQ 7.5.0.GA, AMQ 7.4.1.GA, AMQ 7.6.0.GA
-
None
Customer requirement:
I have memory issue for the broker: page-size-bytes reaches the limit and start paging.
Reading documentation https://activemq.apache.org/components/artemis/documentation/1.1.0/paging.html seems that "
Instead of paging messages when the max size is reached, an address can also be configured to just drop messages when the address is full."
How to apply that configuration on AMQ Broker running in Openshift?
<address-settings>
<address-setting match="jms.someaddress">
<max-size-bytes>104857600</max-size-bytes>
<page-size-bytes>10485760</page-size-bytes>
<address-full-policy>DROP</address-full-policy>
—
—
</address-setting>
</address-settings>