Re: [google-appengine] Re: Google App Engine is slow to deploy, hangs on "Updating service [someproject]..."

2017-04-11 Thread 'Nick (Cloud Platform Support)' via Google App Engine
7 at 6:41:52 PM UTC-4, Stanislas Marion wrote: >>> >>> Great, thank you so much for your help, I'll be very interested in the >>> details you'll get from your investigation. >>> >>> On Tue, Mar 21, 2017 at 9:22 PM 'Nick (Cloud Platform Suppo

Re: [google-appengine] Temporary storage of data bigger than 1 Mega

2017-04-25 Thread 'Nick (Cloud Platform Support)' via Google App Engine
While using the Flexible Environment or a dedicated Compute Engine instance would probably be the simplest solution, you may also consider (if committed to using the Standard Environment of App Engine) breaking up the file into several pieces are storing these in Memcache, maintaining their fre

[google-appengine] Re: AppIdentity Credential vs Application Default Credentials

2017-04-28 Thread 'Nick (Cloud Platform Support)' via Google App Engine
Hey Nicola, There's no comparison chart, but your post itself has correctly discerned the major differences. AppIdentity is used to assert the identity of the application in production, and uses the default App Engine service account. Application Default Credentials in a deployed App Engine app

[google-appengine] Re: Maven error on app-engine 1.9.22

2017-04-28 Thread 'Nick (Cloud Platform Support)' via Google App Engine
Hey Sahil, You should open a Q&A on Stack Overflow explaining what you're doing, without reference to any other person's post, and people will be able to help you from that point. We monitor our tags on Stack Overflow and I'll be happy to assist if you post the link t

[google-appengine] Re: Google App Engine is slow to deploy, hangs on "Updating service [someproject]..."

2017-05-02 Thread 'Nick (Cloud Platform Support)' via Google App Engine
Hey E, You should analyze (or sanitize and then attach here) the logs produced by the deployment. You can find the logs location by running 'gcloud info'. Cheers, Nick Cloud Platform Community Support On Tuesday, May 2, 2017 at 3:11:12 PM UTC-4, E EE wrote: > > I am having the same problem in

[google-appengine] Re: Mystic! Browser behavior

2017-05-02 Thread 'Nick (Cloud Platform Support)' via Google App Engine
Hey Денис, This forum is meant for discussion of the platform and not for technical support. You should post to Stack Overflow with a more clear explanation of your issue and the users there will be happy to assist you. We monitor our tags on Stack Overflow as well. I

[google-appengine] Re: Добрый день! Кто может помочь по Compute Engine? Есть пару вопросов

2017-05-02 Thread 'Nick (Cloud Platform Support)' via Google App Engine
Hey Николай, I translated your message to english and I think you were asking whether you would still be charged for your Compute Engine machines whether they are "working" or not. If they aren't running, you won't be charged, but if they are running, even if your web app isn't serving, or they

[google-appengine] Re: Google App Engine is slow to deploy, hangs on "Updating service [someproject]..."

2017-05-03 Thread 'Nick (Cloud Platform Support)' via Google App Engine
Hey E, The log file location is given when you run the gcloud info command. In your case, the output showed: Logs Directory: [/tmp/tmp.ijTCcTysEa/logs] Last Log File: [None] It's odd that there should be "None" for the last log file. Did you run the failing command before running gcloud info?

[google-appengine] Re: Google App Engine is slow to deploy, hangs on "Updating service [someproject]..."

2017-05-03 Thread 'Nick (Cloud Platform Support)' via Google App Engine
Hey E, Alright, now given that I can't look into what operation that is, you should check what it is using gcloud, using the command below: gcloud beta app operations describe d8c581c51b0-e9a02f Possibly it's the same issue discussed above, the creation of the load balancer. Cheers, Nick Cl

[google-appengine] Re: Cron.xml not picked up - where do I start looking?

2017-05-03 Thread 'Nick (Cloud Platform Support)' via Google App Engine
Hey Torbjørn, While cron.xml may have been part of the deployed application folder, that doesn't mean that you've run the command to deploy the cron settings. Could you try to run mvn appengine:deployCron And report back the results? I'll just note here while I can, that in general this for

[google-appengine] Re: Google App Engine is slow to deploy, hangs on "Updating service [someproject]..."

2017-05-04 Thread 'Nick (Cloud Platform Support)' via Google App Engine
Hey E, I've seen it before where the app is actually serving but it takes some time for the deployment *command *to complete. In the operation info, it says, "servingStatus: SERVING". Could you check, when this occurs, whether the app isn't serving *before *the command ends? Cheers, Nick Clou

[google-appengine] Re: Cron.xml not picked up - where do I start looking?

2017-05-08 Thread 'Nick (Cloud Platform Support)' via Google App Engine
Hey Torbjørn, Which app engine maven plugin are you using? Could you post the section from your pom.xml? Does it look like the documentation? Cheers, Nick Cloud Platform Com

[google-appengine] Re: App Engine Flex "Error: Server Error" occurs often, how to find cause?

2017-05-10 Thread 'Nick (Cloud Platform Support)' via Google App Engine
> seconds." > > Can you help? > > Thanks > > > > > > On Friday, March 3, 2017 at 5:40:17 PM UTC+2, Nick (Cloud Platform > Support) wrote: >> >> Hey Nickolas, >> >> This forum should be used to post general discussion threads abou

[google-appengine] Re: billing account closed?

2017-05-10 Thread 'Nick (Cloud Platform Support)' via Google App Engine
You'll need to contact billing about this. Unfortunately I can't tell you why this might be occurring. Best of luck! Nick Cloud Platform Community Support On Wednesday, May 10, 2017 at 1:08:57 PM UTC-4, stjin...@gmail.com wrote:

[google-appengine] Re: google-plus phising via plus.sfghfghfdg.appspot.com

2017-05-10 Thread 'Nick (Cloud Platform Support)' via Google App Engine
Hey Jerry, It appears the app sfghfghfdg is spoofing the google.com search page. This could indeed be part of a phishing attempt by the creator of the app. We've taken note of this and will review the app. However, as for the "insecure page", this is a result of the fact that the appspot.com d

[google-appengine] Re: dev_appserver hangs while running tests

2017-05-10 Thread 'Nick (Cloud Platform Support)' via Google App Engine
Hey Shaunak, You might want to run a set of tests across the parameter space of all the relevant variables: Vary the total number of tests: N = number of tests total Vary the proportion of N taken up by each type of test: N_a = number of tests of type a N_b = number of tests of type b . . .

[google-appengine] Re: dev_appserver hangs while running tests

2017-05-11 Thread 'Nick (Cloud Platform Support)' via Google App Engine
; program pass through but after 240th iteration, we see each subsequent step > taking roughly the same time as deadline. > > We also added code to see the number of goroutines that get added as part > of the each of the steps and can see that 2 goroutines are added at every > step

[google-appengine] Re: dev_appserver hangs while running tests

2017-05-11 Thread 'Nick (Cloud Platform Support)' via Google App Engine
version prints the following: > > go version go1.6.3 (appengine-1.9.48) darwin/amd64 > > > > I'm using MacBookPro with the following configuration: > Processor: 2.2 GHz Intel Core i7 > Memory 16G > Graphics Intel Iris Pro 1536MB > > Thanks! > Shaunak > &

<    5   6   7   8   9   10