jdai1 commented on issue #4639: URL: https://github.com/apache/couchdb/issues/4639#issuecomment-1592276755
Thanks so much Nick! That is a big help, once again. It turns out the problem was the use_checkpoints. I am trying to clone the npm registry from https://replicate.npmjs.com/, which is a massive database, so I'm running into quite a few bugs. <img width="667" alt="Screenshot 2023-06-14 at 11 02 38 PM" src="https://github.com/apache/couchdb/assets/44037521/0970baf4-f966-4a52-9897-7ad9a4012003"> This is my current config for replication, which does not give me any checkpoint failures (I guess the couchdb for the npm registry was blocking any checkpoints). However, now, the replications crash with a new error! ``` {"error":"error","reason":"{worker_died,<0.5879.61>,{process_died,<0.7372.75>,kaboom}}"} ``` Since I disabled checkpointing, each time the replication task fails, it restarts, so as a result, the progress is super slow. I did see this thread[https://github.com/apache/couchdb/issues/745], and I was wondering if you guys have found a workaround for this bug. My database currently looks like this: ``` "doc_del_count":165197,"doc_count":1565 ``` and the actual database looks like this: ``` "doc_count":3279735,"doc_del_count":671697 ``` So there is still a ways to go! What do you think would be best? -- 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]
