ansible-middleware / amq

A collection to manage AMQ brokers
Apache License 2.0
13 stars 11 forks source link

Add parameters for `global-max-size` and `global-max-messages` #92

Closed guidograzioli closed 10 months ago

guidograzioli commented 10 months ago

New parameters allow to set broker global-max-size and global-max-messages:

Variable Description Default
activemq_global_max_messages Number of messages before all addresses will enter into their Full Policy configured. It works in conjunction with activemq_global_max_size, being whatever value hits its maximum first. -1
activemq_global_max_size Size (in bytes) before all addresses will enter into their Full Policy configured upon messages being produced. Supports byte notation like 'K', 'Mb', 'MiB', 'GB', etc. '-1'

Fix #88