Re: [google-appengine] Re: App Engine doesn't downscale when CPU utilisation is below target_utilization

2019-09-03 Thread chuda mani
hi i need a suggestion , i have to deploy angular 8 application with apache server in gcp app engine..is it possible?..if so please forward any reference documents..thank you -- You received this message because you are subscribed to the Google Groups "Google App Engine" group. To

[google-appengine] Re: Active PHP 7.2 sessions lost after gcloud app deploy

2019-09-03 Thread Andy Whittle
Thanks Jason / Brent, We've already got a Cloud SQL instance, so not much of a support overhead for us to add a session storage DB. In regards to security *and* performance, do you have any comments or advice re. Cloud SQL vs. Cloud Memorystore vs Firestore, please? I'm unsure which would be

Re: [google-appengine] Re: App Engine doesn't downscale when CPU utilisation is below target_utilization

2019-09-03 Thread 'Diogo Almeida' via Google App Engine
You can use the App Engine custom runtime to deploy an application in any language. I did not find any documents about Angular 8, but as a starting point you could take a look at this tutorial for deploying Angular 6

[google-appengine] Re: Active PHP 7.2 sessions lost after gcloud app deploy

2019-09-03 Thread Andy Whittle
Brent - do you have a copy of the getting-started/sessions doc you can share, please, as I can't see it posted publicly yet? Cheers On Thursday, August 22, 2019 at 6:39:36 PM UTC+1, Brent Shaffer wrote: > > You can also use Firestore for sessions, which I've serendipitously just > added > to

[google-appengine] Service missing from Stackdriver Error Reporting after change to PHP 7.2

2019-09-03 Thread Andy Whittle
Hi We have two GAE Standard env services within a project. The PHP 5.5 service is fine, but the 'default' instance has disappeared from Stackdriver Error Reporting after switching the runtime to PHP 7.2 (we think... we're not definite on the point it disappeared). I've worked through

[google-appengine] Cloud dataflow python3 job not solving dependencies

2019-09-03 Thread Santiago Del Valle
I have a simple apache beam project using python 3 to transform some data and write to big query, it uses a package called texstat, if I run locally everything works, but when I run on dataflow I get the following error: NameError: name 'textstat' is not defined [while running

[google-appengine] Cloud dataflow python3 job not solving dependencies

2019-09-03 Thread Santiago Del Valle
I have a simple apache beam project using python 3 to transform some data and write to big query, it uses a package called texstat, if I run locally everything works, but when I run on dataflow I get the following error: NameError: name 'textstat' is not defined [while running

[google-appengine] Re: Weak SSL/TLS Configuration

2019-09-03 Thread 'Diogo Almeida' via Google App Engine
You need to have the TLS 1.2 enforced and all the other TLS cyphers disabled on your app domain. If you have your application deployed on App Engine we can help with that. However, you will need to open a case with us either if you have free or paid support package [1][2], informing the

[google-appengine] Re: Need help understanding transactions in tasklets

2019-09-03 Thread 'Diogo Almeida' via Google App Engine
Note that post hooks do not check whether the RPC was successful. The hook runs regardless of failure that might have occurred due to issues, more specifically the contention which is when you attempt to

Re: [google-appengine] Re: Need help understanding transactions in tasklets

2019-09-03 Thread Rob Curtis
Thanks Diogo, But that’s why we check get_result for the key. If the get_result failed for the the future, the key wouldn’t be returned would it? On Tue, 03 Sep 2019 at 20:28, 'Diogo Almeida' via Google App Engine < google-appengine@googlegroups.com> wrote: > Note that post hooks do not check