[google-appengine] Re: Google App deploy fails on timeout: ERROR: CONTEXT DEADLINE EXCEEDED. How can i fix this?

2020-10-14 Thread 'Olu' via Google App Engine
Hi, Rossco I think the same concern was raised on this issue link[1] and the issue still seems to be evaluated. A workaround was provided on the link, however. I suggest you attempt the steps provided on the issue link using the [--timeout=DURATION] flag with gcloud builds submit [2] to change

[google-appengine] Re: Google App deploy fails on timeout: ERROR: CONTEXT DEADLINE EXCEEDED. How can i fix this?

2020-10-13 Thread Rossco
I am attempting to deploy from my local machine to app engine standard, and nothing I do seems to increase the timeout from 10 mins, every deploy fails with the error ERROR: (gcloud.app.deploy) Error Response: [4] Cloud build did not succeed within 10m. Any suggestions appreciated! My cloudbu

[google-appengine] Re: Google App deploy fails on timeout: ERROR: CONTEXT DEADLINE EXCEEDED. How can i fix this?

2020-06-11 Thread Ted song
Thanks, David works for me On Wednesday, April 8, 2020 at 12:00:05 PM UTC-7, David (Cloud Platform Support) wrote: > > Another workaround other than increasing the timeout limit would be adding > “grpcio==1.27.2” to your requirements.txt and then try to redeploy > -- You received this message

[google-appengine] Re: Google App deploy fails on timeout: ERROR: CONTEXT DEADLINE EXCEEDED. How can i fix this?

2020-04-09 Thread K. Ripping
Great tip David, thanks! Also starred your raised issue. On Wednesday, 8 April 2020 21:00:05 UTC+2, David (Cloud Platform Support) wrote: > > Another workaround other than increasing the timeout limit would be adding > “grpcio==1.27.2” to your requirements.txt and then try to redeploy > -- You

[google-appengine] Re: Google App deploy fails on timeout: ERROR: CONTEXT DEADLINE EXCEEDED. How can i fix this?

2020-04-08 Thread 'Matthew Svensson' via Google App Engine
Thanks David! That worked perfect for me! I'll have to watch grpcio to see what caused this change. On Wednesday, April 8, 2020 at 3:00:05 PM UTC-4, David (Cloud Platform Support) wrote: > > Another workaround other than increasing the timeout limit would be adding > “grpcio==1.27.2” to you

[google-appengine] Re: Google App deploy fails on timeout: ERROR: CONTEXT DEADLINE EXCEEDED. How can i fix this?

2020-04-08 Thread Jason Brancazio
For users specifically struggling to get an App Engine build triggered by Cloud Build to respect the timeouts specified in the build step yaml, using bash in the Cloud Build step worked for me: - name: 'gcr.io/cloud-builders/gcloud' entrypoint: 'bash' args: ['-c', 'gcloud config set app/clou

[google-appengine] Re: Google App deploy fails on timeout: ERROR: CONTEXT DEADLINE EXCEEDED. How can i fix this?

2020-04-08 Thread 'David (Cloud Platform Support)' via Google App Engine
Another workaround other than increasing the timeout limit would be adding “grpcio==1.27.2” to your requirements.txt and then try to redeploy -- You received this message because you are subscribed to the Google Groups "Google App Engine" group. To unsubscribe from this group and stop receivin

[google-appengine] Re: Google App deploy fails on timeout: ERROR: CONTEXT DEADLINE EXCEEDED. How can i fix this?

2020-04-08 Thread Jason Brancazio
Is there a way to set this configuration in Cloud Build? I can work around the problem by triggering builds locally, but builds triggered by our CI process, e.g. tagging a branch, are timing out. On Wednesday, April 8, 2020 at 5:14:15 AM UTC-7, Shai Ben-Tovim wrote: > > Hi Keon, > > This is ex

[google-appengine] Re: Google App deploy fails on timeout: ERROR: CONTEXT DEADLINE EXCEEDED. How can i fix this?

2020-04-08 Thread Probir Sil
Hi Koen, I am having the same issue. Even after increasing timeout to 1200s, it seems it is timing out around 10 min. I just restarted the build by going to Cloud build -> History -> Clicking on the build -> Restart. Do I need to do a fresh gcloud app deploy? Thanks, Probir On Tuesday, April

[google-appengine] Re: Google App deploy fails on timeout: ERROR: CONTEXT DEADLINE EXCEEDED. How can i fix this?

2020-04-08 Thread Shai Ben-Tovim
Hi Keon, This is exactly what I did (extend the deploy timeout) to work around the problem for now. Shai On Wednesday, April 8, 2020 at 12:14:05 AM UTC+3, K. Ripping wrote: > > Hi Shai, > > As a workaround for the timeout issue, you can use following fix in your > terminal: > > *gcloud config

[google-appengine] Re: Google App deploy fails on timeout: ERROR: CONTEXT DEADLINE EXCEEDED. How can i fix this?

2020-04-08 Thread Shai Ben-Tovim
Thanks David. I opened a GitHub issue: https://github.com/googleapis/google-cloud-python/issues/10407 On Tuesday, April 7, 2020 at 11:40:34 PM UTC+3, David (Cloud Platform Support) wrote: > > Hello, > > I’m seeing this excessive time now with Pub/Sub and Cloud Task libraries. > You can follow

[google-appengine] Re: Google App deploy fails on timeout: ERROR: CONTEXT DEADLINE EXCEEDED. How can i fix this?

2020-04-07 Thread K. Ripping
Hi Shai, As a workaround for the timeout issue, you can use following fix in your terminal: *gcloud config set app/cloud_build_timeout [ENTER SECONDS]* eg. i've set the timeout to 1200s, which should be enough. This doesn't however solve the fact that the server that is building the app is wo

[google-appengine] Re: Google App deploy fails on timeout: ERROR: CONTEXT DEADLINE EXCEEDED. How can i fix this?

2020-04-07 Thread 'David (Cloud Platform Support)' via Google App Engine
Hello, I’m seeing this excessive time now with Pub/Sub and Cloud Task libraries. You can follow this IssueTracker that I have created to raise awareness with the App Engine Flex engineering team. You can also report this yourself from an user perspe

[google-appengine] Re: Google App deploy fails on timeout: ERROR: CONTEXT DEADLINE EXCEEDED. How can i fix this?

2020-04-07 Thread Shai Ben-Tovim
Hi David, It seems the problem is that the GAE Cloud Build process timesout and hence the Error Response: [4] DEADLINE_EXCEEDED. One of the python google-cloud packages (probably pubsub) is trying to pull this package: grpcio. The problem is that the grpcio package was updated a few days ago (A

[google-appengine] Re: Google App deploy fails on timeout: ERROR: CONTEXT DEADLINE EXCEEDED. How can i fix this?

2020-04-07 Thread Shai Ben Tovim
Having the exact same issue starting today: code that deployed several times to GAE python-flex (same code same python dependencies) fails deploying due to same errors mentioned above by K. Ripping: Failure status: UNKNOWN: Error Response: [4] DEADLINE_EXCEEDED I can also see this error on the

[google-appengine] Re: Google App deploy fails on timeout: ERROR: CONTEXT DEADLINE EXCEEDED. How can i fix this?

2020-04-07 Thread 'David (Cloud Platform Support)' via Google App Engine
“google-auth 1.13.1 has requirement setuptools>=40.3.0, but you'll have setuptools 39.1.0 which is incompatible” and “You are using pip version 10.0.1, however version 20.0.2 is available” are warning messages that show up as the version for these libraries are updated gradually and might not

[google-appengine] Re: Google App deploy fails on timeout: ERROR: CONTEXT DEADLINE EXCEEDED. How can i fix this?

2020-04-06 Thread K. Ripping
Hi Dustin, Yes, attached also the requirements.txt. I've changed the timeout settings for deploying the app, which seems to solve the timeout error. Though i still get these lines: *Step #1: ?[91mYou are using pip version 10.0.1, however version 20.0.2 is available.* *Step #1: You should co