nickva commented on code in PR #5642: URL: https://github.com/apache/couchdb/pull/5642#discussion_r2370260753
########## rel/overlay/etc/default.ini: ########## @@ -468,6 +476,22 @@ hash_algorithms = sha256, sha ;update_db = true ;[view_updater] +; couch_work_queue: +; Maximum item count and memory size (in bytes) +; of the document changes and index update queues. +; +; The general structure is something like: +; `_changes feed -> [workqueue] -> mapper -> [workqueue] -> index write` +; +; So we queue both the changes before and the writes after the mapper. +; The setting here are applied to both queues. For each queue whichever +; limit happens to be hit first is the one that take effect. + +; `max_size` of couch_work_queue Review Comment: Let's not use too many backquotes as these won't be rendered anywhere we can just "The maximum queue length". We should expect users to open the erlang code editor and look up couch_work_queue and check out its max_size, it's for us (developers) mostly. -- 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: notifications-unsubscr...@couchdb.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org