rnewson commented on issue #737: CouchDB 2.0 version indexing getting timeout for records more than 1 lakhs records URL: https://github.com/apache/couchdb/issues/737#issuecomment-319964271 Hi, I think you are complaining about the time it takes to build a new view over 100,000 documents? This will take some time but the index is persisted to disk. Once built, queries will return very quickly. Any new docs will cause an incremental (small) update and queries will still be fast. the os_process_timeout setting is for each time we evaluate javascript. In the case of view building, it would be how long it takes to run the 'map' function of your view. So you really don't need it to be so high. The default of 5000 ms is usually sufficient for view building but it's common to increase it modestly. ---------------------------------------------------------------- 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
