activemq定时清理消息

来源:互联网 发布:下载杂志的软件 编辑:程序博客网 时间:2024/05/16 11:54

activemq 队列消息定时清理

转载 2015年12月30日 13:39:36

  • 在activemq.xml中配置

  • <broker xmlns="http://activemq.apache.org/schema/core" schedulePeriodForDestinationPurge="10000">    <destinationPolicy>       <policyMap>          <policyEntries>             <policyEntry queue=">" gcInactiveDestinations="true" inactiveTimoutBeforeGC="30000"/>          </policyEntries>       </policyMap>    </destinationPolicy>       </broker>


    实现定时自动清理无效的Topic和Queue需要设置三个属性。
    schedulePeriodForDestinationPurge执行清理任务的周期,
    gcInactiveDestinations="true"启用清理功能
     inactiveTimoutBeforeGC="30000" Topic或Queue超时时间
    在规定的时间内,无有效订阅,没有入队记录,超时后就会被清理