rnewson commented on issue #2025: _replicate calls are extremely slow URL: https://github.com/apache/couchdb/issues/2025#issuecomment-490062879 _replicate has to read all changes from the source and apply them to the target, which can take some time. As you're using a doc id filter, this almost certainly means the entire source database is being scanned, which is quite inefficient. It's far easier to apply a single doc update change to both servers. Replication is appropriate when replicating all or the majority of the source documents.
---------------------------------------------------------------- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. For queries about this service, please contact Infrastructure at: [email protected] With regards, Apache Git Services
