summaryrefslogtreecommitdiff
path: root/etc
diff options
context:
space:
mode:
authorFilipe David Borba Manana <fdmanana@apache.org>2011-07-08 09:15:49 +0000
committerFilipe David Borba Manana <fdmanana@apache.org>2011-07-08 09:15:49 +0000
commit32514d6a2ee9f375981270f2beb28bef32d8e25d (patch)
treeff8ec3a7e47325ae3fe58061af149e5f59eafed1 /etc
parent4252cb293918ad86eeac2783eff28c0fe990f4f8 (diff)
downloadcouchdb-32514d6a2ee9f375981270f2beb28bef32d8e25d.tar.gz
Simplify replicator's http connection pool
Dropped support for pipelining, making it less tied to ibrowse and much simpler and shorter. In practice the pipelining doesn't offer significant gains and it's problematic on slow/congestioned networks (an error in one request will cause all subsequent requests in the same connection to be retried). git-svn-id: https://svn.apache.org/repos/asf/couchdb/trunk@1144203 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'etc')
-rw-r--r--etc/couchdb/default.ini.tpl.in4
1 files changed, 1 insertions, 3 deletions
diff --git a/etc/couchdb/default.ini.tpl.in b/etc/couchdb/default.ini.tpl.in
index a1ccb1b21..66077e00f 100644
--- a/etc/couchdb/default.ini.tpl.in
+++ b/etc/couchdb/default.ini.tpl.in
@@ -163,10 +163,8 @@ worker_processes = 4
; With lower batch sizes checkpoints are done more frequently. Lower batch sizes
; also reduce the total amount of used RAM memory.
worker_batch_size = 500
-; Maximum number of HTTP connections and pipeline size (for each connection)
-; per replication. These two settings have more impact on pull replications.
+; Maximum number of HTTP connections per replication.
http_connections = 20
-http_pipeline_size = 1
; HTTP connection timeout per replication.
; Even for very fast/reliable networks it might need to be increased if a remote
; database is too busy.