rjharmon commented on issue #3047: URL: https://github.com/apache/couchdb/issues/3047#issuecomment-665908783
I'm guessing you may have many design docs that aren't being actively used by your application, and the autoupdate traffic on those is causing the undesired load? Maybe some of them are simply obsolete? Did you consider setting autoupdate: true on one design-doc at a time, for those design docs whose indexes you KNOW are going to be taking traffic? The intent of the autoupdate behavior, as I understand it, is to shift indexing workload away from time-of-need and to execute it earlier - so it's ready when your application does a query. Administratively, setting autoupdate: true gradually for all your less-used indexes, and removing any obsolete design docs, could get you caught up and cleaned up. ---------------------------------------------------------------- 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]
