Mathieu A.
Mathieu A.

Reputation: 274

ESPv2 with Google Cloud Functions upstream request timeout

I'm having issue getting answers from a Google Coud Function going through ESPv2. Every time I request it, I get a response 15 seconds later with a status code of 504. My function take between 30 to 45 seconds. In the logs the functions correctly and answer back after 35 seconds.

Is there a way to increase the timeout in ESPv2 ?

Thanks

Upvotes: 9

Views: 3952

Answers (2)

Alfio Ranieri
Alfio Ranieri

Reputation: 21

Depending on the documentation you used to secure the endpoints of your Cloud Function’s with ESPv2, this should be possible. If you are using Cloud Run to host your ESPv2, a 504 error is sent when a request exceeds its request timeout limit. The request timeout limit is a setting that specifies the time within which a response must be returned before sending a 504 response. You can change this value by going in your “Cloud Run” tab, selecting your ESPv2 service, selecting “Edit & Deploy new Revision”, scrolling down to the capacity section and setting the time in milliseconds. This is some documentation that could prove helpful when working with the topics discussed.

Upvotes: 2

Mathieu A.
Mathieu A.

Reputation: 274

For anyone else having this issue, in the openapi-functions.yaml under the x-google-backend you should had the attribut deadline and set it to whatever value in seconds you want.

Here is the hidden documentation https://cloud.google.com/endpoints/docs/openapi/openapi-extensions#deadline

Issue related: https://github.com/GoogleCloudPlatform/esp-v2/issues/4

Upvotes: 15

Related Questions