2

I try to run a loop for 1000 times, when the program reaches 60 seconds typing this error

Internal Server Error

Sample code

for i in range(1000,0,-1):
    wc = fun_A(funInput) #function
    time.sleep(i/1000)

Εrror is only when reach the 60sec. I try for a repetition number of less than 60sec and runs normally

1 Answers1

4

60 seconds is the limit for a serverless action on IBM Cloud. You can find the details here - https://console.bluemix.net/docs/openwhisk/openwhisk_reference.html#openwhisk_syslimits. There is also information there about how to request more time for your action (scroll down to "Increasing fixed limits").

Raymond Camden
  • 10,661
  • 3
  • 34
  • 68