[google-appengine] PHP 7 in Standard Environment?

2018-07-06 Thread Ron Van Hyfte
Will the standard environment eventually have support for PHP 7.x? -- You received this message because you are subscribed to the Google Groups "Google App Engine" group. To unsubscribe from this group and stop receiving emails from it, send an email to

[google-appengine] Re: Project moved to some organization by mistake. How to fix?

2018-07-06 Thread 'George (Cloud Platform Support)' via Google App Engine
>From the same menu, that allowed you to select the foreign, unwanted organization, is it possible to select back your project? What happens if you select your project? Are things back to normal. Your project has logging disabled. This prevents inspection and eventual fixing of bugs. It is

[google-appengine] Re: Change the automatic scaling minimum number of instances at different times of day?

2018-07-06 Thread Parth Mishra
I found out that I can in fact do that as you suggested, but the documentation for the Admin API leaves out the fact that you need to specify "env: flex" in the request body otherwise it won't work. On Friday, July 6, 2018 at 1:09:29 PM UTC-4, Nathan (Cloud Platform support) wrote: > >

[google-appengine] Re: Google App Engine. Start from last week, keep responding 503 error.

2018-07-06 Thread yi he
Also how to debug the failure? Is the error related? INFO: Error body: RPC Error: /StubbyService.Send to (unknown) : APP_ERROR(2) On Friday, July 6, 2018 at 12:41:41 PM UTC-5, yi he wrote: > > Yes. It is flexible environment. In fact, I deployed again last night and > it worked. But I found

[google-appengine] Re: Google App Engine. Start from last week, keep responding 503 error.

2018-07-06 Thread yi he
Yes. It is flexible environment. In fact, I deployed again last night and it worked. But I found it broken again this morning. The same code worked very well last week. I didn't change any config file and only change business logic code. On Friday, July 6, 2018 at 12:32:53 PM UTC-5, Giuliano

[google-appengine] Re: Google App Engine. Start from last week, keep responding 503 error.

2018-07-06 Thread Giuliano Ribeiro
It's on Flex, right ? As the Flex requires an answer on the default port, have you sure your app is running at least on the local development env ? On Friday, July 6, 2018 at 6:30:00 PM UTC+1, yi he wrote: > > Thanks Giuliano, > > I saw some failures. > > A INFO: End of request or previous

[google-appengine] Re: Google App Engine. Start from last week, keep responding 503 error.

2018-07-06 Thread yi he
Thanks Giuliano, I saw some failures. A INFO: End of request or previous flush has not yet completed, blocking. A Jul 06, 2018 5:14:44 PM com.google.apphosting.vmruntime.VmApiProxyDelegate runSyncCall A INFO: Error body: RPC Error: /StubbyService.Send to (unknown) : APP_ERROR(2)

[google-appengine] Re: Change the automatic scaling minimum number of instances at different times of day?

2018-07-06 Thread 'Nathan (Cloud Platform support)' via Google App Engine
Regarding Parth question: yes you can use the admin API patch method . The parameter

[google-appengine] Re: How to redirect any url to index.html?

2018-07-06 Thread 'Yasser Karout (Cloud Platform Support)' via Google App Engine
I noticed you have the same question posted on another thread . I will continue posting on the other one since it already has an active discussion on it. On Thursday, July 5, 2018 at 9:01:53 AM UTC-4, Koki wrote: > > I build

Re: [google-appengine] Re: How to redirect all url to root's index.html?

2018-07-06 Thread 'Yasser Karout (Cloud Platform Support)' via Google App Engine
The following handlers will navigate to pages according to your requirements - url: / static_files: www/index.html upload: www/index.html - url: /folderA/(.*) static_files: folderA/index.html upload: folderA/index.html - url: /folderB/(.*) static_files: folderB/index.html upload:

[google-appengine] Re: Questions about the recent launch of standard environment for NodeJs

2018-07-06 Thread 'Jorge A (Google Cloud Support)' via Google App Engine
Hey Brian! You can set the port using process.env.PORT as shown here . Regarding being able to connect to GCE instances in standard and other feature

[google-appengine] Re: Google App Engine. Start from last week, keep responding 503 error.

2018-07-06 Thread Giuliano Ribeiro
Hi Yi, do you took a look on StackDrive logging? Any issues on the instances startup? On Friday, July 6, 2018 at 5:31:50 PM UTC+1, yi he wrote: > > Hello, > I met a issue. > Everything works fine at the begin of this week. In the middle of the > week, user reported can not access the

[google-appengine] Google App Engine. Start from last week, keep responding 503 error.

2018-07-06 Thread yi he
Hello, I met a issue. Everything works fine at the begin of this week. In the middle of the week, user reported can not access the website and I found the server respond 503 error. Do you have any guide how to locate the root cause? I tried to redeploy it. It worked last night and broken again

[google-appengine] Re: GAE with PyPi

2018-07-06 Thread 'George (Cloud Platform Support)' via Google App Engine
Alternatively, you can simply use third-party libraries that are pure Python code with no C extensions, by copying the library into your application directory. You may find more detail on the "Using third-party libraries" documentation page

Re: [google-appengine] Re: Autoscaling with Flex

2018-07-06 Thread Jeff Schnitzer
I can offer one observation about GAE/Standard using Java with 20+s app startup times: Use-facing cold starts can be problematic when you have low/intermittent traffic, but it smooths out when you have some traffic. I don't typically see user-facing cold starts; my guess is that GAE spins up

Re: [google-appengine] Re: Node.js standard and urlfetch

2018-07-06 Thread Jeff Schnitzer
There's one big disadvantage of the URLFetch service, which is that it's limited to 32MB inbound and 10MB outbound. Those are pretty small numbers in this day and age. In Java8-land I've used both Apache HttpClient and OkHttp and both work normally. Jeff On Thu, Jul 5, 2018 at 10:06 PM