Re: [nodejs] EMFILE error on bulk data insert through HTTP-REQUEST

2016-07-23 Thread Matt
What is your limit set to? Most node apps need the limit increased due to the process model. I set mine to 6400 usually via "ulimit -n 6400" before starting the app. On Sat, Jul 23, 2016 at 2:08 PM, Ryan Graham wrote: > This was also posted on stackoverflow earlier (where I posted my reply). >

Re: [nodejs] EMFILE error on bulk data insert through HTTP-REQUEST

2016-07-23 Thread Ryan Graham
This was also posted on stackoverflow earlier (where I posted my reply). http://stackoverflow.com/q/38540288/62525 ~Ryan On Sat, Jul 23, 2016, 10:59 AM ManojKumar G wrote: > Hi all, > I'm developing an loopback application to get data using oracledb npm > module from ORACLE and convert it to J

[nodejs] EMFILE error on bulk data insert through HTTP-REQUEST

2016-07-23 Thread ManojKumar G
Hi all, I'm developing an loopback application to get data using oracledb npm module from ORACLE and convert it to JSON format to be stored in MONGODB. MONGODBis accessed using "loopback-connector-mongodb". The data to be stored would be around for 100 collections as of for 100 tables from ORACLE