[google-appengine] Re: can't find import: "google.golang.org/appengine"

2018-06-30 Thread Gary Capell
In case anyone else goes down this track, I've reported this (or very similar) issue at https://issuetracker.google.com/issues/111017406 On Tuesday, 24 April 2018 06:13:01 UTC+10, Katayoon (Cloud Platform Support) wrote: > > I tried this tutorial >

[google-appengine] Does App Engine Flexible for Python support concurrent requests?

2018-06-30 Thread Parth Mishra
>From the [documentation](https://cloud.google.com/appengine/docs/flexible/python/how-requests-are-handled) on how GAE Flexible handles requests, it says that "An instance can handle multiple requests concurrently" but I don't know what this exactly means. Let's say my application can process

Re: [google-appengine] Re: zigzag merge

2018-06-30 Thread 'George (Cloud Platform Support)' via Google App Engine
In fact the "bingo" info is amply documented on the "Local Development Server Options" documentation page , where usage for the --require_indexes=yes|no options are described in detail. -- You received th

Re: [google-appengine] Re: Hey after two days I get a message the I cannot deploy my appengine becuase I already got too many version.

2018-06-30 Thread Guy Dviri
gcoud app deploy* without specifying a > version (*--version*), without the *--pomote* flag, and without the > *--stop-previous-version*. Just something like this: > > gcloud app deploy . > > As no *--version* is provided, App Engine will create a new version and > give it an auto

[google-appengine] Re: Can app engine host a Node JS worker?

2018-06-30 Thread 'George (Cloud Platform Support)' via Google App Engine
If your intention is to deploy a full-fledged app, you have the choice between the Standard Environment and Flexible. The "Choosing an App Engine Environment" online document should help you in taking the decision best suited

Re: [google-appengine] Re: Connecting Cloud SQL from App Engine with TCP.

2018-06-30 Thread Jason Collins
Hi Jay - it sounds like you're trying to connect to Cloud SQL _from_ App Engine Standard. There are two ways to do this: 1. Unix socket. See https://cloud.google.com/appengine/docs/standard/nodejs/using-cloud-sql 2. TCP connection. To do this, you must connect to a public IP Cloud SQL address

[google-appengine] Re: Regarding Standard Environment For Node Js

2018-06-30 Thread Jason Collins
Hi Brian - if your question is about Node.js on App Engine Standard: currently you cannot connect to private Compute Engine IP addresses, though this is something we're working on (sorry, no timeline, I just want to let you know it's on our radar). You should be able to connect to a public IP a

Re: [google-appengine] Re: zigzag merge

2018-06-30 Thread Vitaly Bogomolov
> > - There is an optional parameter to init_datastore_v3_stub which you can > use to require indexes: require_indexes=True. > Bingo! :) Thanks alot for your advice. testbed.init_datastore_v3_stub(require_indexes=True, root_path=project_dir) also works with default in-memory datastore. But 'r

Re: [google-appengine] Re: Hey after two days I get a message the I cannot deploy my appengine becuase I already got too many version.

2018-06-30 Thread Ani Hatzis
*. Just something like this: gcloud app deploy . As no *--version* is provided, App Engine will create a new version and give it an automatically created version name (looks like an ISO timestamp starting with the year, e.g. 20180630). The new version will not be the new default version,