diff options
author | Alan Conway <aconway@apache.org> | 2009-05-26 21:41:52 +0000 |
---|---|---|
committer | Alan Conway <aconway@apache.org> | 2009-05-26 21:41:52 +0000 |
commit | 0c30ca90a6820dd152677c3c0966a6a20fd377bb (patch) | |
tree | d643b8ec8869d94c9baef34e64c884fff6656cab /cpp/src/qpid/cluster/ClusterPlugin.cpp | |
parent | 5ce2eb3ccdfe0b90436b6095b0498d59f9057de0 (diff) | |
download | qpid-python-0c30ca90a6820dd152677c3c0966a6a20fd377bb.tar.gz |
Improved doOutput algorithm.
Simpler & more robust algorithm based on message count rather than byte size.
Self-tuning, removes 2 hard-to-explain cluster options.
Similar or marginally better performance.
git-svn-id: https://svn.apache.org/repos/asf/qpid/trunk/qpid@778896 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'cpp/src/qpid/cluster/ClusterPlugin.cpp')
-rw-r--r-- | cpp/src/qpid/cluster/ClusterPlugin.cpp | 9 |
1 files changed, 2 insertions, 7 deletions
diff --git a/cpp/src/qpid/cluster/ClusterPlugin.cpp b/cpp/src/qpid/cluster/ClusterPlugin.cpp index daed608eb8..c2c07c052a 100644 --- a/cpp/src/qpid/cluster/ClusterPlugin.cpp +++ b/cpp/src/qpid/cluster/ClusterPlugin.cpp @@ -70,13 +70,8 @@ struct ClusterOptions : public Options { #if HAVE_LIBCMAN_H ("cluster-cman", optValue(settings.quorum), "Integrate with Cluster Manager (CMAN) cluster.") #endif - ("cluster-read-max", optValue(settings.readMax,"N"), - "Experimental: Limit per-client-connection queue of read buffers. 0=no limit.") - ("cluster-write-estimate", optValue(settings.writeEstimate, "Kb"), - "Experimental: initial estimate for write rate per multicast cycle") - ("cluster-write-min", optValue(settings.writeMin, "Kb"), - "Experimental: minimum estimate for write rate per multicast cycle") - // FIXME aconway 2009-05-20: temporary + ("cluster-read-max", optValue(settings.readMax,"N"), "Experimental: flow-control limit reads per connection. 0=no limit.") + // FIXME aconway 2009-05-20: temporary ("cluster-check-errors", optValue(settings.checkErrors, "yes|no"), "Enable/disable cluster error checks. Normally should be enabled.") ; } |