Hi Rahman-
The memory usage is split 70/30 to producers/consumers by default. Be sure to
turn on useCache=“true” for persistent messages if you are trying to trigger
the memoryLimit PFC. With your test, you generally won’t see producer flow
control with just producing. You probably see memoryLi
Persistent messages are written to persistent store and are controlled by
that limit, while non-persistent messages are written to the memory store
and are controlled by that limit. So in order to see the memory store limit
applied, you'll need to be sending non-persistent messages.
Tim
On Wed, D
I tried using this configuration below, and produce 1MB messages using "ant
producer -Durl=tcp://localhost:61616 -Dtopic=false -Dsubject=queueName
-Ddurable=true -DmessageSize=1048576.
However; the producer is not blocked till the storage is full. Does
"memoryLimit="1mb" in policyEntry work?