Nick Vatamaniuc

Results 229 comments of Nick Vatamaniuc

Do you see any errors or failures in the logs? You can try to configure compaction according to https://docs.couchdb.org/en/stable/maintenance/compaction.html#compaction and see if when it triggers by following active tasks and...

As `{error,req_timedout}` indicates a timeout. Try to increase the replication connection timeout. https://docs.couchdb.org/en/stable/config/replicator.html#replicator/connection_timeout The `instance_start_time` change, to return a db creation timestamp instead of `0` is a 3.3 change ....

If you change the config the replication will not pick the new value. You'd have to restart the replication job (delete the document and re-create it). The configuration may also...

Not sure about [use_bulk_get](https://docs.couchdb.org/en/stable/config/replicator.html#replicator/use_bulk_get). It should not attempt to use to use the _bulk_get endpoint if it's set to `false`. Would you be able to create a smaller repoducer script?...

> Oh and finally, do you have any suggestions as to how I can replicate from the outdated couchdb instance when faced with the timeout request on the _ensure_full_commit endpoint?...

@jdai1 no problem at all, thanks for reaching out. The `max_backoff` error indicates that some replicator API request was throttled too much and it exceeded a max retry interval before...

That error means a worker had exhausted their number of retries and crashed. It looks like one of the endpoints, the source most likely (sorry I am not familiar with...

@smulikHakipod the issue is that the source doesn't allow `_ensure_full_commit` so you'd have to try to replicate with `use_checkpoints = false` settings. @jdai1 The replication is probably timing out or...

One strategy could be to periodically ping the https://docs.couchdb.org/en/stable/api/ddoc/common.html#db-design-design-doc-info endpoint and wait until the index has completed building before querying it to avoid piling up too many client requests if...

* I'll second @rnewson's proposal to try a old-ddoc/new-ddoc strategy to deploy new views. * For clients could use `stable=false&update=false` and let ken (index auto-builder) to build the indices for...