couchdb views os_process_error - big documents
I have a database that we're filling up with documents, some of which are 10 KB, and some of which that are ~70 MB in size. Any view that tries to load these large documents fails with error: {"error":"os_process_error","reason":"{exit_status,0}"} , even this elementary one: function(doc) { emit(null, "test"); } os_process_error is set to 35000, but calling the view dies in ~15 seconds: time curl -X GET http://localhost:5984/portal_production/_design/all_data_keys/_view/view1 {"error":"os_process_error","reason":"{exit_status,0}"} real 0m15.907s user 0m0.016s sys 0m0.000s From a few other