wohali commented on issue #1706: `unknown_error : shutdown` while querying a view URL: https://github.com/apache/couchdb/issues/1706#issuecomment-434392216 Hi @mariocasciaro , This means that your `couchjs` process - the external process to CouchDB that runs JavaScript for handling views - crashed. If this happens repeatedly, you can temporarily increase your logging level to `debug` which should show exactly which doc out of which database is causing the crash. It could be any number of reasons, but the most likely issue is that you've blown out the JS stack. The default size is 64MB, or 67108864. This can be increased by adding `-S <bigger number>` to the `couchjs` line in your `local.ini` file as follows: ``` [query_servers] javascript = ./bin/couchjs ./share/server/main.js -S 134217728 ``` for a 128MB stack. If the problem recurs and this doesn't help, please ask to reopen this ticket.
---------------------------------------------------------------- This is an automated message from the Apache Git Service. To respond to the message, please log on GitHub and use the URL above to go to the specific comment. For queries about this service, please contact Infrastructure at: [email protected] With regards, Apache Git Services
