Hi guys,
I am getting this error {“code”:“executionComputeLimitExceeded”,“message”:“service error: compute limit of 10 seconds exceeded”}
What does that mean ?
Thanks in advance
1 Like
Hello.
For safety, endpoints have a maximum execution time. Beyond this limit, their execution is interrupted. That is what happened to the endpoint you were executing.
This limit can be tuned with a YAML configuration parameter called computeLimitSeconds
.
Note that the default value of that parameter happens to be 10 seconds (which is the timeout you hit). Your endpoint YAML file is perhaps just not specifying a computeLimitSeconds
value, and is therefore configured with the default 10 seconds setting.
All tuning knobs can be found in the endpoint YAML reference guide.