diff options
| author | Martin Ritchie <ritchiem@apache.org> | 2010-07-06 17:32:16 +0000 |
|---|---|---|
| committer | Martin Ritchie <ritchiem@apache.org> | 2010-07-06 17:32:16 +0000 |
| commit | 031a8a5cf26b3494c664d00cc2391d1b49126292 (patch) | |
| tree | 982ef5c23cc6ef378ff5e3e40c7cb2c66b85e9b8 | |
| parent | dda1aa80a4fa0ddc72057881e21276197b3d344e (diff) | |
| download | qpid-python-031a8a5cf26b3494c664d00cc2391d1b49126292.tar.gz | |
QPID-2681 : Add documentation for Topic Configuration
git-svn-id: https://svn.apache.org/repos/asf/qpid/trunk/qpid@960953 13f79535-47bb-0310-9956-ffa450edef68
| -rw-r--r-- | doc/book/src/AMQP-Messaging-Broker-Java.xml | 1 | ||||
| -rw-r--r-- | doc/book/src/Broker-Configuration-Guide.xml | 28 | ||||
| -rw-r--r-- | doc/book/src/java/broker/configuration/Topic-Configuration.xml | 107 |
3 files changed, 136 insertions, 0 deletions
diff --git a/doc/book/src/AMQP-Messaging-Broker-Java.xml b/doc/book/src/AMQP-Messaging-Broker-Java.xml index 14fe977670..10c69e98c1 100644 --- a/doc/book/src/AMQP-Messaging-Broker-Java.xml +++ b/doc/book/src/AMQP-Messaging-Broker-Java.xml @@ -42,6 +42,7 @@ <xi:include xmlns:xi="http://www.w3.org/2001/XInclude" href="Qpid-Java-FAQ.xml"/> <xi:include xmlns:xi="http://www.w3.org/2001/XInclude" href="Java-Environment-Variables.xml"/> <xi:include xmlns:xi="http://www.w3.org/2001/XInclude" href="Qpid-Troubleshooting-Guide.xml"/> + <xi:include xmlns:xi="http://www.w3.org/2001/XInclude" href="Broker-Configuration-Guide.xml"/> </chapter> <chapter id="Qpid-Java-Broker-HowTos"> diff --git a/doc/book/src/Broker-Configuration-Guide.xml b/doc/book/src/Broker-Configuration-Guide.xml new file mode 100644 index 0000000000..c52e1fbfd4 --- /dev/null +++ b/doc/book/src/Broker-Configuration-Guide.xml @@ -0,0 +1,28 @@ +<?xml version="1.0" encoding="utf-8"?> +<!-- + + Licensed to the Apache Software Foundation (ASF) under one + or more contributor license agreements. See the NOTICE file + distributed with this work for additional information + regarding copyright ownership. The ASF licenses this file + to you under the Apache License, Version 2.0 (the + "License"); you may not use this file except in compliance + with the License. You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, + software distributed under the License is distributed on an + "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + KIND, either express or implied. See the License for the + specific language governing permissions and limitations + under the License. + +--> + +<section> + <title>Broker Configuration Guide </title> + + <xi:include xmlns:xi="http://www.w3.org/2001/XInclude" + href="java/broker/configuration/Topic-Configuration.xml"/> +</section> diff --git a/doc/book/src/java/broker/configuration/Topic-Configuration.xml b/doc/book/src/java/broker/configuration/Topic-Configuration.xml new file mode 100644 index 0000000000..9113d6786f --- /dev/null +++ b/doc/book/src/java/broker/configuration/Topic-Configuration.xml @@ -0,0 +1,107 @@ +<?xml version="1.0" encoding="utf-8"?> +<!-- + + Licensed to the Apache Software Foundation (ASF) under one + or more contributor license agreements. See the NOTICE file + distributed with this work for additional information + regarding copyright ownership. The ASF licenses this file + to you under the Apache License, Version 2.0 (the + "License"); you may not use this file except in compliance + with the License. You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, + software distributed under the License is distributed on an + "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + KIND, either express or implied. See the License for the + specific language governing permissions and limitations + under the License. + +--> + +<section> + <title>Topic Configuration on Java Broker</title> + + <para>New in 0.7 is the ability to define configuration for topics. Currently this is limited to + configuration for slow consumer detection. This configuration is based on the work + designed on the <ulink + url="http://cwiki.apache.org/confluence/display/qpid/Topic+Configuration+Design">design + wiki</ulink>.</para> + + <section id="Topic Identification"> + <title>Topic Identification</title> + <para>A configuration section has two entries that can be used to identify how the + configuration will be applied: 'name' and 'subscriptionName'. + + <programlisting> + <topic> + <name>stocks.us</name> + </programlisting> + <programlisting> + <topic> + <subscriptionName>clientid:mysubscription</subscriptionName> + </programlisting> + + It is also possible to combine these two identifiers to specify a unique subscription to + a given topic. + + <programlisting> + <topic> + <name>stocks.us</name> + <subscriptionName>clientid:mysubscription</subscriptionName> + </programlisting> + </para> + </section> + + <section> + <title>Configuration Items</title> + <para> Currently only one element of the designed configuration is processed, that of the + slow consumer detection. This is setup as below using the 'slow-consumer-detection' + element. There are two required types of tag, first the trigger, which is one of + 'depth', 'messageAge' or 'messageCount' and secondly the 'policy'. </para> + <programlisting> + <slow-consumer-detection> + <!-- The maximum depth before which the policy will be applied--> + <depth>4235264</depth> + + <!-- The maximum message age before which the policy will be applied--> + <messageAge>600000</messageAge> + + <!-- The maximum number of message before which the policy will be applied--> + <messageCount>50</messageCount> + + <!-- Policy Selection --> + <policy name="TopicDelete"/> + </slow-consumer-detection> + </programlisting> + + <para> The trigger is used to determine when the policy should be applied. Currently we have + a simple policy 'topicdelete', this will disconnect consumers of topics where their + consumption rate falls sufficiently to hit one of the trigger values. </para> + </section> + + + <section id="Limitiations"> + <title>Limitiations</title> + <para> As of 0.7 the topic configuration is limited to straight string matching. This means + that given the following two topic configuring sections for 'stocks.us' and 'stocks.*' a + subscription for 'stocks.uk' will not match the expected 'stocks.*'. Nor will any + additional configuration listed in 'stocks.*' affect any 'stocks.us' subscriptions. </para> + <programlisting> + <topics> + <topic> + <name>stocks.us</name> + ... + </topic> + <topic> + <name>stocks.*</name> + ... + </topic> + </topics> + </programlisting> + <para> A subscription for 'stocks.us' will only receive configuration settings that are + defined in the 'stocks.us' section. </para> + </section> + +</section> |
