sven-lange-last commented on issue #4553: Lower minimum number of available 
file descriptors in action limit tests
URL: 
https://github.com/apache/incubator-openwhisk/pull/4553#issuecomment-510046765
 
 
   Explicitly running different versions of open Node.js 10 runtime in IBM 
Cloud Functions EU-DE production. Result: all recent runtimes support 1004 
(instead of 1003) open files.
   
   ```
   ibmcloud fn action invoke TestFileLimitBad-Nodejs-10-7c8461c -p numFiles 
1025 -br
   {
       "error": {
           "filesOpen": 1004,
           "filesToOpen": 1025,
           "message": {
               "code": "EMFILE",
               "errno": -24,
               "path": "/dev/zero",
               "syscall": "open"
           }
       }
   }
   ```
   
   ```
   ibmcloud fn action invoke TestFileLimitBad-Nodejs-10-nightly -p numFiles 
1025 -br
   {
       "error": {
           "filesOpen": 1004,
           "filesToOpen": 1025,
           "message": {
               "code": "EMFILE",
               "errno": -24,
               "path": "/dev/zero",
               "syscall": "open"
           }
       }
   }
   ```
   
   ```
   ibmcloud fn action invoke TestFileLimitBad-Nodejs-10-16db4bb -p numFiles 
1025 -br
   {
       "error": {
           "filesOpen": 1004,
           "filesToOpen": 1025,
           "message": {
               "code": "EMFILE",
               "errno": -24,
               "path": "/dev/zero",
               "syscall": "open"
           }
       }
   }
   ```

----------------------------------------------------------------
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.
 
For queries about this service, please contact Infrastructure at:
[email protected]


With regards,
Apache Git Services

Reply via email to