[
https://issues.apache.org/jira/browse/ARTEMIS-1096?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=15964419#comment-15964419
]
ASF GitHub Bot commented on ARTEMIS-1096:
-----------------------------------------
GitHub user clebertsuconic opened a pull request:
https://github.com/apache/activemq-artemis/pull/1196
ARTEMIS-1096 Fixing configuration issues on calculated global-max-page
You can merge this pull request into a Git repository by running:
$ git pull https://github.com/clebertsuconic/activemq-artemis max-size
Alternatively you can review and apply these changes as the patch at:
https://github.com/apache/activemq-artemis/pull/1196.patch
To close this pull request, make a commit to your master/trunk branch
with (at least) the following in the commit message:
This closes #1196
----
commit 7e484dff24f4d5cea086f87886fd2ec54cc0c403
Author: Clebert Suconic <[email protected]>
Date: 2017-04-11T14:08:17Z
ARTEMIS-1096 Fixing configuration issues on calculated global-max-page
----
> Load tests exhaust memory if global-max-size is not set
> -------------------------------------------------------
>
> Key: ARTEMIS-1096
> URL: https://issues.apache.org/jira/browse/ARTEMIS-1096
> Project: ActiveMQ Artemis
> Issue Type: Improvement
> Components: Broker
> Affects Versions: 2.0.0
> Environment: Fedora 25 x86-64, 16G memory
> Reporter: Justin Ross
> Assignee: clebert suconic
> Fix For: 2.next
>
>
> With the following config (note commented out global-max-size), testq doesn't
> page or block. Under load tests, the broker eventually dies with an OOME. I
> propose that there be some fallback code-level default for global-max-size.
> {noformat}
> <?xml version='1.0'?>
> <configuration xmlns="urn:activemq"
> xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
> xsi:schemaLocation="urn:activemq /schema/artemis-configuration.xsd">
> <core xmlns="urn:activemq:core"
> xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
> xsi:schemaLocation="urn:activemq:core ">
> <!-- <global-max-size>100Mb</global-max-size> -->
> <acceptors>
> <acceptor
> name="artemis">tcp://localhost:5672?protocols=AMQP,CORE,OPENWIRE</acceptor>
> </acceptors>
> <addresses>
> <address name="testq">
> <anycast>
> <queue name="testq">
> <durable>false</durable>
> </queue>
> </anycast>
> </address>
> </addresses>
> <security-settings>
> <security-setting match="#">
> <permission type="consume" roles="admin"/>
> <permission type="browse" roles="admin"/>
> <permission type="send" roles="admin"/>
> </security-setting>
> </security-settings>
> </core>
> </configuration>
> {noformat}
--
This message was sent by Atlassian JIRA
(v6.3.15#6346)