Repository: qpid-broker-j Updated Branches: refs/heads/master 700349d1a -> 62d6ad7d9
QPID-7776: [Java Broker] Add FlowToDisk policy documentation Project: http://git-wip-us.apache.org/repos/asf/qpid-broker-j/repo Commit: http://git-wip-us.apache.org/repos/asf/qpid-broker-j/commit/62d6ad7d Tree: http://git-wip-us.apache.org/repos/asf/qpid-broker-j/tree/62d6ad7d Diff: http://git-wip-us.apache.org/repos/asf/qpid-broker-j/diff/62d6ad7d Branch: refs/heads/master Commit: 62d6ad7d91b0f38904bfa90c61a607fd0a368ad6 Parents: 700349d Author: Keith Wall <[email protected]> Authored: Wed May 17 17:04:16 2017 +0100 Committer: Keith Wall <[email protected]> Committed: Wed May 17 17:04:16 2017 +0100 ---------------------------------------------------------------------- .../src/docbkx/concepts/Java-Broker-Concepts-Queues.xml | 9 +++++++++ 1 file changed, 9 insertions(+) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/qpid-broker-j/blob/62d6ad7d/doc/java-broker/src/docbkx/concepts/Java-Broker-Concepts-Queues.xml ---------------------------------------------------------------------- diff --git a/doc/java-broker/src/docbkx/concepts/Java-Broker-Concepts-Queues.xml b/doc/java-broker/src/docbkx/concepts/Java-Broker-Concepts-Queues.xml index e501f04..f242a9e 100644 --- a/doc/java-broker/src/docbkx/concepts/Java-Broker-Concepts-Queues.xml +++ b/doc/java-broker/src/docbkx/concepts/Java-Broker-Concepts-Queues.xml @@ -414,6 +414,15 @@ amqp://guest:guest@client1/development?maxprefetch='1'&brokerlist='tcp://loc (specifying the percentage from the limit values. Default is 80%). </para> </listitem> + <listitem> + <para> + <emphasis>Flow to Disk Policy</emphasis> + -If the queue breaches a limit, newly arriving messages are written to disk and the in-memory + representation of the message is minimised. The Broker will transparently retrieve messages + from disk as they are required by a consumer or management. The flow to disk policy does not + actually restrict the overall size of the queue, merely the space occupied in memory. + </para> + </listitem> </itemizedlist> </para> <para> --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
