nickva commented on issue #5609: URL: https://github.com/apache/couchdb/issues/5609#issuecomment-3153246740
Replication jobs not appear in be in `_active_tasks` if they crash too often and are penalized. That endpoint only shows job which are actively running. The more failed starts a job has back-to-back, the the further backed off it might get; up to 8 hours total. > Note : we tried to Update the failed replication user ID and password with invalid entries Try to deleting the document and re-add it, otherwise a failing auth will trigger repeated failed restarts which will trigger exponential backoffs. If that doesn't work, you can adjust the effective max backoff time by adjusting the maximum number of history entries, for example, lowering it to 8 `[replicator] max_history = 8` instead of 20 will limit the maximum penalty period. The history entries can be seen in the `_scheduler/jobs` endpoint as you already noticed. We recently fixed a changes_reader "stream cleanup" issue https://github.com/apache/couchdb/pull/5555 but I don't think it's in a release yet. But if you have the ability to build a CouchDB from source, could give that a try. -- 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. To unsubscribe, e-mail: [email protected] For queries about this service, please contact Infrastructure at: [email protected]
