mirror of https://github.com/apache/activemq.git
[AMQ-8611] Describe message size limit init parameter
This commit is contained in:
parent
fc13d61714
commit
1bba24ddba
|
@ -68,6 +68,15 @@
|
|||
<param-value>consumer.prefetchSize=1</param-value>
|
||||
</init-param>
|
||||
-->
|
||||
<!--
|
||||
Uncomment this parameter if you plan to change the default max size of a message over REST. By default, it is set
|
||||
to 100,000. Set it to -1 to disable the limitation but be aware that your AMQ instance could run out of memory if
|
||||
the message is too big. See https://issues.apache.org/jira/browse/AMQ-8029 for more details.
|
||||
<init-param>
|
||||
<param-name>maxMessageSize</param-name>
|
||||
<param-value>-1</param-value>
|
||||
</init-param>
|
||||
-->
|
||||
</servlet>
|
||||
|
||||
<!-- the queue browse servlet -->
|
||||
|
|
|
@ -35,6 +35,15 @@
|
|||
<param-value>consumer.prefetchSize=1</param-value>
|
||||
</init-param>
|
||||
-->
|
||||
<!--
|
||||
Uncomment this parameter if you plan to change the default max size of a message over REST. By default, it is set
|
||||
to 100,000. Set it to -1 to disable the limitation but be aware that your AMQ instance could run out of memory if
|
||||
the message is too big. See https://issues.apache.org/jira/browse/AMQ-8029 for more details.
|
||||
<init-param>
|
||||
<param-name>maxMessageSize</param-name>
|
||||
<param-value>-1</param-value>
|
||||
</init-param>
|
||||
-->
|
||||
</servlet>
|
||||
|
||||
<!-- AMQ-9239 jakarta - jolokia does not support jakarta
|
||||
|
|
Loading…
Reference in New Issue