[google-appengine] Re: GAE Microservices

2021-04-23 Thread 'Andrew Cooper' via Google App Engine
Which documentation are you following? Are you thinking of using GAE Flex or GAE Standard? I have added a couple of links that you might find interesting that details how requests are routed in GAE. Please note, this is for Python but the concept is the same for other languages. -

[google-appengine] Re: GAE MIcroServices

2021-04-23 Thread 'Andrew Cooper' via Google App Engine
Which documentation are you following? Are you thinking of using GAE Flex or GAE Standard? I have added a couple of links that you might find interesting that details how requests are routed in GAE. Please note, this is for Python but the concept is the same for other languages. - How

[google-appengine] Re: Cloud Run services latency spikes

2021-04-22 Thread 'Andrew Cooper' via Google App Engine
If you believe this is an internal issue while using Cloud Run in `europe-west-1b` that is causing spikes to your application every six months you can raise this on our Cloud Run issue tracker page for further investigation. We

[google-appengine] Re: Cloud Run services latency spikes

2021-04-22 Thread 'Andrew Cooper' via Google App Engine
If you believe this is an internal issue while using Cloud Run in `europe-west-1b` that is causing spikes to your application every six months you can raise this on our [Cloud Run issue tracker](https://issuetracker.google.com/issues/new?component=608076=0) page for further investigation. We

[google-appengine] Re: App Engine microservices + IAP + API Gateway

2021-04-19 Thread 'Andrew Cooper' via Google App Engine
I would suggest that you go through a few debug steps to see where it might have failed. Typically it is because you missed a step during the configuration. 1. Make sure the API are enabled Re-enabling the APIs might seem obvious, but you can re-enable the APIs with the debug

[google-appengine] Re: How does GCP decides when a Kubernetes deployment is completed

2021-04-07 Thread 'Andrew Cooper' via Google App Engine
You will find this documentation interesting as it advises how to implement and configure "readiness and startup" probes for your containers. The "liveness" probe can check a container or

Re: [google-appengine] Re: Exceeded soft memory limit - how to configure app.yaml for java 11

2021-04-07 Thread 'Andrew Cooper' via Google App Engine
Do you know how much memory it uses when you run it locally? Increasing the size of the instance is not generally the best approach. For example, if you have a memory leak, then the instance size might need to grow exponentially!! You can use Cloud Code to

[google-appengine] Re: order of jars on java 8 appengine

2021-04-06 Thread 'Andrew Cooper' via Google App Engine
Were you able to find the answer to your question? The `java.lang.NoClassDefFoundError` is a fairly generic error message and can be hard to debug correctly without further context. It will be good to implement some form of logging

[google-appengine] Re: Best Product/Solution for my requirement

2021-04-06 Thread 'Andrew Cooper' via Google App Engine
You have two excellent options here for web development in Python: - Django : a high-level Python Web framework for quick development - Flask : a micro web framework Both of these packages work nicely

[google-appengine] Re: Cloud Functions - safe for a key?

2021-01-11 Thread Andrew Davies
Thanks @Elliot! To answer those questions: - It's entirely possible that I'm using Cloud Functions for a purpose they weren't designed for. There are Python scripts I want to run on a scheduled basis (once a day) via PubSub which access some data, parse it to a table, then load to BigQuery.

[google-appengine] Re: What's the best way to keep Requirements up-to-date?

2021-01-11 Thread 'Andrew Cooper' via Google App Engine
You're welcome. If you have any other questions let us know, On Monday, January 11, 2021 at 2:49:20 PM UTC+1 Alex wrote: > Very interesting thank you! > > On Friday, January 8, 2021 at 5:08:04 PM UTC+1 anco...@google.com wrote: > >> Managing dependencies can be tricky! You might want to check

[google-appengine] Cloud Functions - safe for a key?

2021-01-11 Thread Andrew Davies
Hi there, I'm pretty new so please pardon if this is a stupid question. I seem to get led astray when looking for security info too. Is it safe to store a key as part of a package published to Google Cloud Functions? Specifically this would be a key used for a Google service account as part

[google-appengine] Re: What's the best way to keep Requirements up-to-date?

2021-01-08 Thread 'Andrew Cooper' via Google App Engine
Managing dependencies can be tricky! You might want to check Pipenv as suggested above as it acts as a package and virtual environment management tool. It also uses a [Pipfile][1] and a [Pipfile.lock][2] rather than a requirments.txt file. The advantage of a Pipfile is it will be more

[google-appengine] Newbie question - How to deploy node.js with manual garbage collection in app engine?

2020-12-14 Thread Andrew Marunchak
I'm running manual garbage collection every 30 seconds via global.gc(); and my app.yaml file contains: *entrypoint: node --expose_gc server* However, when deploying, I eventually see a startup error displaying: *Updating service [default] (this may take several minutes)...failed.ERROR:

Re: [google-appengine] Migrating Python 2 to 3: images

2020-02-24 Thread 'Andrew Gorcester' via Google App Engine
The migration guide does have a brief section in the overview: https://cloud.google.com/appengine/docs/standard/python/migrate-to-python3/migrating-services which suggests migrating to third-party image services. However, depending on your use case (keeping in mind impacts on security and

Re: [google-appengine] Re: Cloud NDB is now GA

2020-02-24 Thread 'Andrew Gorcester' via Google App Engine
team). On Mon, Feb 24, 2020 at 1:05 PM Remko Tronçon wrote: > On Monday, February 24, 2020 at 9:52:25 PM UTC+1, Andrew Gorcester wrote: > > Cloud NDB is compatible with the Cloud Datastore Emulator; we recommend > tests be done using that, the same way on Cloud NDB a

Re: [google-appengine] Re: Cloud NDB is now GA

2020-02-24 Thread 'Andrew Gorcester' via Google App Engine
Google does not recommend NDB for new projects. It is > merely intended for upgrading from 2.7 to python 3 GAE. It this statement > still true given the fact that it is now GA? > > Am Montag, 24. Februar 2020 20:02:36 UTC+1 schrieb Andrew Gorcester: >> >> Hello Pythonistas, &

Re: [google-appengine] Re: Cloud NDB is now GA

2020-02-24 Thread 'Andrew Gorcester' via Google App Engine
Cloud NDB is compatible with the Cloud Datastore Emulator; we recommend tests be done using that, the same way on Cloud NDB as they would be with the Cloud Datastore library. On Mon, Feb 24, 2020 at 11:59 AM Remko Tronçon wrote: > > We also have a migration guide for NDB >>

[google-appengine] Cloud NDB is now GA

2020-02-24 Thread 'Andrew Gorcester' via Google App Engine
Hello Pythonistas, The Cloud NDB client library for Cloud Datastore and Cloud Firestore in Datastore mode, previously introduced as a beta project in September 2019, has been launched to GA with its 1.0 release. Cloud NDB is an updated version of the App Engine NDB client library for

Re: [google-appengine] Trouble to deploy and download dependencies

2020-02-13 Thread 'Andrew Gorcester' via Google App Engine
rors > and instructions. > > When I run windows_start_local.bat OR windows_deploy.bat, the window > of Command Prompt showed > [image: image.png] > > I am wondering how I can run $ xcode-select --install from Command Prompt. > > Thank you for your help. > > DC > >

Re: [google-appengine] Trouble to deploy and download dependencies

2020-02-12 Thread 'Andrew Gorcester' via Google App Engine
Hi, you're probably looking at the Course Builder documentation on a windows machine, right? You can install Cygwin, or if you have Windows 10, you can instead install Windows Subsystem for Linux, and that should get you a command prompt from which you can run bash without issue. On Wed, Feb 12,

Re: [google-appengine] Pull Queue Deprecation?

2020-01-10 Thread 'Andrew Gorcester' via Google App Engine
App Engine Tasks (available for App Engine Standard Gen 1 runtimes) will continue to support both push and pull, but Cloud Tasks (available for all products) will not support pull queues. Instead, we recommend Cloud Pub/Sub for this use case. Please see this documentation for details:

Re: [google-appengine] Re: App Engine, MySQL and private ip

2019-12-04 Thread 'Andrew Gorcester' via Google App Engine
Hi Charlotte, Additionally, once you have a private Cloud SQL IP address, I think you should be able to connect to it from App Engine by using Serverless Virtual Private Cloud Access: https://cloud.google.com/vpc/docs/configure-serverless-vpc-access . On Wed, Dec 4, 2019 at 3:32 PM 'Elliott

Re: [google-appengine] Python 3.7 and Python 2 ndb cache conflict

2019-12-04 Thread 'Andrew Gorcester' via Google App Engine
Hi Eliran, On Python 3, you can use Cloud Memorystore to provide a Redis cache. However, you can't currently share a cache between the Python 2.7 and Python 3.7 versions of the GAE. The cache will be separate, which will be an issue as you describe if you are running both Python 2 and Python 3

Re: [google-appengine] Re: GAE Standard | Local Dev | Python37: google.appengine.api not found

2019-11-25 Thread 'Andrew Gorcester' via Google App Engine
Unfortunately there is not currently any Google Cloud replacement for the GAE Mail API. We are aware of the gap in our migration story and are working to fix it. On Mon, Nov 25, 2019, 5:44 PM Yanay Lehavi wrote: > Thank you Andrew. We have migrated most of our stuff to py37 and > ever

Re: [google-appengine] Re: GAE Standard | Local Dev | Python37: google.appengine.api not found

2019-11-25 Thread 'Andrew Gorcester' via Google App Engine
Hi Yanay, I'm an engineer at Google working on making the migration from GAE Python 2.7 (a Gen 1 runtime) to Python 3.7 (a Gen 2 runtime) clearer for users. In addition to the page Ryan linked above which explains the differences, we have also recently published this migration homepage with some

Re: [google-appengine] Django Channels Support in Google App Engine

2019-11-20 Thread 'Andrew Gorcester' via Google App Engine
Websockets are supported on Google App Engine Flexible Environment. They are not supported on Standard Environment at this time. On Tue, Nov 19, 2019, 6:50 PM Ranjan Barat wrote: > Hello All, Please help us in understanding if we have support for Django > Channels & WebSockets support in Google

Re: [google-appengine] Python 3 local development: fast startup or static assets, choose one?

2019-11-08 Thread 'Andrew Gorcester' via Google App Engine
option instead. On Fri, Nov 8, 2019 at 3:33 PM Ryan Barrett wrote: > thanks for the reply! > > On Fri, Nov 8, 2019 at 2:40 PM 'Andrew Gorcester' via Google App Engine < > google-appengine@googlegroups.com> wrote: > >> I would recommend trying to solve the first problem

Re: [google-appengine] Python 3 local development: fast startup or static assets, choose one?

2019-11-08 Thread 'Andrew Gorcester' via Google App Engine
Hi Ryan, I would recommend trying to solve the first problem and serving static files locally. At first glance I think the most straightforward ways to do that would be to either: - Use the Flask development server instead of gunicorn and leverage Flask's integrated /static directory

Re: [google-appengine] Re: Cloud NDB Datastore library Beta

2019-09-27 Thread 'Andrew Gorcester' via Google App Engine
n our AppEngine/DataStore backend. When will the library come out of >> beta? >> (2) Does the library come under Google Cloud support contracts? >> >> Thank you, >> Soeren >> >> >> On Friday, September 20, 2019 at 7:33:38 AM UTC+10, Andrew Gorcester >&

[google-appengine] Cloud NDB Datastore library Beta

2019-09-19 Thread 'Andrew Gorcester' via Google App Engine
Hello Pythonistas, I'm pleased to announce the Beta release of Cloud NDB, an updated version of the App Engine NDB client library for Datastore to support the GAE Python 3 runtime and other Python platforms. Our goal with Cloud NDB and related efforts is to ensure App Engine Python 2.7

Re: [google-appengine] Re: Brazil IP

2019-08-28 Thread 'Andrew Gorcester' via Google App Engine
Hi Manu, My observation in the past is that IP geolocation from third party services is generally not accurate for cloud servers. The server and egress points are still located in South America as advertised and will have low latency to South American clients. Unfortunately there is no reliable

Re: [google-appengine] Re: Source Code download from GAE Flex

2019-08-20 Thread 'Andrew Gorcester' via Google App Engine
As a workaround, may I suggest enabling debug mode and SSHing into a running instance to inspect the filesystem directly? You might be able to exfiltrate the code manually. https://cloud.google.com/appengine/docs/flexible/python/debugging-an-instance On Tue, Aug 20, 2019 at 10:16 AM 'Nicolas

Re: [google-appengine] Re: Install Redis Slave on App Engine Flex

2019-07-26 Thread 'Andrew Gorcester' via Google App Engine
May I suggest using a custom runtime? You should be able to install and configure Redis using the Dockerfile system. https://cloud.google.com/appengine/docs/flexible/custom-runtimes/ On Fri, Jul 26, 2019 at 12:05 PM 'Biswajit Mukhopadhyay' via Google App Engine wrote: > I want a read replica

Re: [google-appengine] Re: No Pull Queues for Node.js Standard Environment?

2019-07-15 Thread 'Andrew Gorcester' via Google App Engine
Pardon my interjection, my team works on these docs and so I might be able to comment up front. The Python 2.7 (only) and Go 1.9 (only) runtimes are "first generation" App Engine runtimes which use the App Engine Task Queues API which is internal to App Engine and not compatible with other

[google-appengine] Re: Permission denied when deploying queue.yaml

2019-07-09 Thread Andrew Buck
Thanks, I filed an issue tracker: https://issuetracker.google.com/issues/137078982 On Tuesday, July 9, 2019 at 8:26:38 AM UTC-7, Julie (cloud platform support) wrote: > > It seems from this document > that what > you have granted

[google-appengine] Permission denied when deploying queue.yaml

2019-07-08 Thread Andrew Buck
When I attempt to use a service account to deploy an updated queue.yaml, I get the following error: *ERROR: (gcloud.app.deploy) PERMISSION_DENIED: The caller does not have permission* *> Task :appengineDeployQueue FAILED* What permissions does the service account need for this operation? I

[google-appengine] Re: Will App Engine Flex Environment ever support Memcache?

2019-07-02 Thread Andrew Buck
It's been almost a year. Is support for Memcache on App Engine Flex still planned? On Tuesday, August 7, 2018 at 11:03:49 AM UTC-7, Gopal Ashok wrote: > > Hi Joshua, > App Engine Memcache for Flex alpha is closed. > > The current caching story for App Engine Flex is Cloud Memorystore (Beta) >

Re: [google-appengine] Re: Future of dev_appserver.py - deprecated?

2019-06-14 Thread 'Andrew Gorcester' via Google App Engine
We don't have a replacement for that functionality yet, but I'll record that that's a missing link for people migrating. Thank you! On Fri, Jun 14, 2019 at 3:02 PM Nicolas Grilly wrote: > On Friday, June 14, 2019 at 11:10:21 PM UTC+2, Andrew Gorcester wrote: >> >> If you don't

Re: [google-appengine] Re: Future of dev_appserver.py - deprecated?

2019-06-14 Thread 'Andrew Gorcester' via Google App Engine
The recommended alternative is to use what is idiomatic for your framework or other development process, as you would outside of Google Cloud. This is now possible because we no longer require the use of App Engine-specific APIs, handlers definitions, etc. However, dev_appserver.py did have some

Re: [google-appengine] Re: Future of dev_appserver.py - deprecated?

2019-06-14 Thread 'Andrew Gorcester' via Google App Engine
We're aiming to build all of our new runtimes so that they don't require dev_appserver.py, by making them support the same APIs and idiomatic local development practices that one would use on any platform. If you don't mind me asking, what are the features of dev_appserver.py that are still useful

[google-appengine] Python 3 NDB Datastore library alpha

2019-05-23 Thread 'Andrew Gorcester' via Google App Engine
Hello Pythonistas, As part of our efforts to ensure App Engine Standard Python 2.7 users are able to migrate to Python 3, we are developing an updated version of the NDB Datastore client library that is compatible with Cloud Datastore and Python 3. I'm pleased to announce the new Python 3 NDB is

[google-appengine] Re: App Engine Basic Scaling

2018-11-29 Thread Andrew Hoy
Hey Omair, Appreciate you getting back to me. Great, this is exactly what I wanted to use basic scaling for - thanks for confirming. I Have reported the bug on the issue tracker. On Wednesday, November 28, 2018 at 10:23:06 PM UTC, Omair (Cloud Platform Support) wrote: > > Hi Andrew, &

[google-appengine] App Engine Basic Scaling

2018-11-28 Thread Andrew Hoy
Hi all, I have a query regarding max_instances when using basic scaling in the App Engine Standard environment (Node.js). Im my app.yaml file, I set max_instances to 1. This appears in the config section under App Engine > Versions in this UI: runtime: nodejs8 env: standard instance_class:

[google-appengine] Lots of 502 errors

2017-10-05 Thread Andrew Benton
I'm not sure how much this has to do specifically with the application in question, but an otherwise well-functioning appengine app will start seeing lots and lots of 502 errors from Google on occasion. This is extremely disruptive to the app's users and requires some manual data cleanup each

[google-appengine] Downloading Logs

2017-04-06 Thread 'Andrew Teall' via Google App Engine
the process that gathers these logs. Andrew -- 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+unsubscr...@googlegroups.com. To post to

[google-appengine] Datastore get_or_insert in Java

2016-12-04 Thread Andrew Buck
The Datastore Python API has a get_or_insert() method that will atomically insert an entity if it doesn't exist or return the existing one if it does. I can't find the equivalent in Java. Does the Java API have a way of accomplishing this same functionality atomically? -- You received this

[google-appengine] App Engine Flexable: ImportError: No module named PLACEHOLDER

2016-09-22 Thread Andrew Wilson
Here is the raw stack trace: Traceback (most recent call last): File "/home/vmagent/python_vm_runtime/google/appengine/ext/vmruntime/meta_app.py", line 550, in GetUserAppAndServe app, mod_file = self.GetUserApp(script) File

[google-appengine] After app deploy on felxable environemnt: ImportError: No module named PLACEHOLDER

2016-09-22 Thread Andrew Wilson
Error in logs: ImportError: No module named PLACEHOLDER 1. 1. at LoadObject ( /home/vmagent/python_vm_runtime/google/appengine/runtime/wsgi.py:85) 2. 1. at _AppFrom27StyleScript ( /home/vmagent/python_vm_runtime/google/appengine/ext/vmruntime/meta_app.py:271

[google-appengine] LONG time to deploy into flexible hosting environment

2016-09-12 Thread Andrew Rea
I have downloaded both the GOLANG and the Python examples for the flexible hosting environments, using the gcloud application and setting vm: true inside the app.yaml. With Python It takes around 10 minutes to deploy. You see all the logs until it gets to the "Updating

[google-appengine] Linux Remote Desktop?

2016-07-14 Thread Andrew Irwin
I can not figure out what I'm doing wrong, but I've tried a number of different Linux desktop remote clients, and have also tried mapping the xhost DISPLAY, however nothing I do is yielding a desktop? I just need to be able to connect to my x Windows and I've already loaded the GNOME & KDE

[google-appengine] AppEngine with Endpoints

2016-06-09 Thread Andrew James
>From the tutorials I have seen, you can package html/css within an Endpoints app, effectively creating a dynamic web app. Is this good practise, or is the recommended approach to create a separate app (containing the front-end code) and host it in app engine? -- You received this message

[google-appengine] Re: Datastore Writes being Disabled

2016-05-20 Thread Andrew Watson
I'm getting that too on one of my projects! I re-enable writes and then it just gets disabled again. On Thursday, May 19, 2016 at 8:23:42 PM UTC-4, Daniel Young wrote: > > I've gone into the Datastore Console and it seems the writes are being > disabled automatically (or a message is being

Re: [google-appengine] Re: my git repo is empty

2016-05-03 Thread Andrew Arrow
thanks Nick! That worked. I have all my code now. You are an excellent googler. On Tue, May 3, 2016 at 12:01 PM, 'Nick (Cloud Platform Support)' via Google App Engine <google-appengine@googlegroups.com> wrote: > Hey Andrew, > > So, we've taken a look at your repo internally and

Re: [google-appengine] Re: my git repo is empty

2016-03-30 Thread Andrew Arrow
t] was cloned to [/Users/aa/dev/default]. INFO: Display format "default". On 3/30/16, 'Nick (Cloud Platform Support)' via Google App Engine <google-appengine@googlegroups.com> wrote: > Hey Andrew, > > After attempting a cursory examination, we've determine we'll need more >

Re: [google-appengine] Re: my git repo is empty

2016-03-26 Thread Andrew Arrow
.google.com/appengine/docs/python/tools/uploadinganapp#Python_Downloading_source_code> > section > to see if it'll help... > > On Saturday, March 26, 2016 at 1:18:16 AM UTC+2, Andrew Arrow wrote: >> >> my site has been running for a year at: >> >> htt

[google-appengine] my git repo is empty

2016-03-25 Thread Andrew Arrow
my site has been running for a year at: https://static-1064.appspot.com/ I went to clone the repo: https://source.developers.google.com/p/static-1064/r/default and it clones an empty repo. Where's my code? -- You received this message because you are subscribed to the Google Groups "Google

[google-appengine] Asynchronous Deployment With Java AppEngine SDK

2016-02-22 Thread 'Andrew Teall' via Google App Engine
. Is there a better way to accomplish this or does anyone have any experience getting this to work with 100% success. Thanks, Andrew -- 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 fro

Re: [google-appengine] Docker cache issue when deploying GO to Managed VM using Cloud Shell and aedeploy

2016-02-16 Thread 'Andrew Jessup' via Google App Engine
out, please give us feedback! If you'd prefer you can reach me directly - jessup AT google DOT com. On Tue, Feb 16, 2016 at 9:09 PM, Roy Palacios <roy.palac...@cpe.pe> wrote: > Hi Andrew, > > Thanks for the response. It looks like it is working perfectly :) > > I see it do

Re: [google-appengine] Docker cache issue when deploying GO to Managed VM using Cloud Shell and aedeploy

2016-02-16 Thread 'Andrew Jessup' via Google App Engine
a8ada%40googlegroups.com > <https://groups.google.com/d/msgid/google-appengine/2e8f6844-3f7b-45ba-973d-9ab89e1a8ada%40googlegroups.com?utm_medium=email_source=footer> > . > For more options, visit https://groups.google.com/d/optout. > -- Andrew Jessup | Product Manager, Google C

[google-appengine] Taskqueue INVALID_REQUEST error in pull queues

2016-01-12 Thread Andrew Haskell
I'm using a pull queue in Appengine for Go and while locally leasing tasks worked just fine, when I deployed my code, the call to taskqueue.Lease gave me this error: API error 13 (taskqueue: INVALID_REQUEST) *internal.APIError My lease call was: tasks, err := taskqueue.Lease(ctx, 100,

[google-appengine] Re: Taskqueue INVALID_REQUEST error in pull queues

2016-01-12 Thread Andrew Haskell
Nvm in my real code I was leasing 2000 tasks but the max I can lease is actually 1000. On Tuesday, January 12, 2016 at 12:49:52 PM UTC-5, Andrew Haskell wrote: > > I'm using a pull queue in Appengine for Go and while locally leasing tasks > worked just fine, when I deployed my code,

[google-appengine] Sign up now for access to faster, more reliable builds on Managed VMs

2015-11-10 Thread Andrew Jessup
Hello! Earlier in the year we added remote builds to Managed VMs, which uses a transient GCE VM to build and package your application in Google Container Registry, prior to deploying it to App Engine. We’ve been working hard to improve this functionality, and today we’re pleased to announce

[google-appengine] Re: Announcing SSL for GAE Custom Domains in the Developers Console

2015-09-18 Thread Andrew Greene
SSL on naked domains work. Add the A and records. Then go to the dev console. Click on SSL Certs, then click the box next to your naked domain. It works! On Wednesday, September 16, 2015 at 7:07:14 PM UTC-4, husayt wrote: > > Hi Lorne, > > naked domains been mentioned here, which is a big

[google-appengine] Unable to access new App Engine Developers Console with particular app

2015-08-24 Thread Andrew Vaslas
dropdown on the new console. This is a major issue for me, as I cannot manage API access, permissions, and many other core features for my App Engine app on the old console. Support folks, any idea what's up? Thanks, Andrew -- You received this message because you are subscribed to the Google Groups

[google-appengine] Re: gcloud preview app run ./app.yaml error with python managed VMs

2015-08-13 Thread Andrew Jessup
Hey Cryril - this sounds like a bug. Would you mind reporting this on our issue tracker? https://code.google.com/p/googleappengine and we'll follow up there. On Thursday, 13 August 2015 07:41:34 UTC-7, Cyril MORISSE wrote: Hello, I'm a beginner with Appengine / Python and I work on OSX

Re: [google-appengine] Upcoming changes to App Engine support in the Google Cloud SDK

2015-07-08 Thread Andrew Jessup
Hi Karl, thanks for reaching out - there seems to be some understandable confusion around this announcement, I've added a few responses inline. On Wednesday, 8 July 2015 07:42:53 UTC-7, Karl MacMillan wrote: Hey Andrew - a few questions. On Jul 8, 2015, at 3:16 AM, 'Andrew Jessup' via

Re: [google-appengine] Upcoming changes to App Engine support in the Google Cloud SDK

2015-07-08 Thread 'Andrew Jessup' via Google App Engine
. For more options, visit https://groups.google.com/d/optout. -- Andrew Jessup | Product Manager, Google Cloud Platform | jes...@google.com -- You received this message because you are subscribed to the Google Groups Google App Engine group. To unsubscribe from this group and stop

[google-appengine] Upcoming changes to App Engine support in the Google Cloud SDK

2015-07-08 Thread 'Andrew Jessup' via Google App Engine
preview app run` command will install language specific runtime libraries on demand, as needed by your application. If you have questions or concerns, please let us know. Thanks, Andrew, on behalf of the Cloud SDK team Andrew Jessup | Product Manager, Google Cloud Platform | jes...@google.com

Re: [google-appengine] Re: Push to deploy discontinued?

2015-05-28 Thread Andrew Jessup
this however since we don't install PHPUnit by default. On Wednesday, 27 May 2015 21:59:43 UTC-7, SS wrote: Dear Andrew, Thnks fr ur reply. We ll test it. We already have a GCE(Debian Linux) running w LAMP stack. So, should I install the below bitnami jenkins under GCE

Re: [google-appengine] Re: Push to deploy discontinued?

2015-05-27 Thread Andrew Jessup
the same as for python apps (except for the Build and Test step, which will not work - but you can also safely ignore). We'll get the documentation updated to describe how to deploy PHP applications shortly. On Friday, 22 May 2015 21:37:57 UTC-7, SS wrote: Thnks Andrew fr ur instant reply.We

Re: [google-appengine] Re: Push to deploy discontinued?

2015-05-22 Thread 'Andrew Jessup' via Google App Engine
. For more options, visit https://groups.google.com/d/optout. -- Andrew Jessup | Product Manager, Google Cloud Platform | jes...@google.com -- You received this message because you are subscribed to the Google Groups Google App Engine group. To unsubscribe from this group and stop receiving

Re: [google-appengine] Python 2 End of Life 2020

2015-04-21 Thread 'Andrew Jessup' via Google App Engine
%2B9XY3iFsP2g%40mail.gmail.com https://groups.google.com/d/msgid/google-appengine/CADK-0uiPia5W_H_veOCpUvw9N9heuOeT4BX0hjn%2B9XY3iFsP2g%40mail.gmail.com?utm_medium=emailutm_source=footer . For more options, visit https://groups.google.com/d/optout. -- Andrew Jessup | Product Manager, Google

[google-appengine] oAuth 2.0 will become the default authentication mechanism for deploying to App Engine

2015-04-20 Thread Andrew Jessup
, you can find or ask for help on the Google App Engine Stack Overflow Tag http://stackoverflow.com/questions/tagged/google-app-engine, or if you have a support package you may open a support ticket https://cloud.google.com/support/. Happy (and secure) building! Andrew, on behalf of the Google

Re: [google-appengine] HR datastore is in readonly but there are no errors?

2015-04-10 Thread Andrew Greene
I am seeing this too. On Friday, April 10, 2015 at 3:41:49 PM UTC-4, Joshua Smith wrote: I’m seeing something, too. It appears the entities are being updated but the indexes aren’t. That is, I updated a record but I’m not seeing the change. But if I click through to the entity, I do see

[google-appengine] Re: HR datastore is in readonly but there are no errors?

2015-04-10 Thread Andrew Greene
They say they will update me by 13:30 Pacific Time. On Friday, April 10, 2015 at 4:08:50 PM UTC-4, cloudpre wrote: We are also facing same issue for last 30 mins. If there are any updates from Google that anyone has got, please share here. On Saturday, April 11, 2015 at 1:08:09 AM UTC+5:30,

[google-appengine] Re: HR datastore is in readonly but there are no errors?

2015-04-10 Thread Andrew Greene
I was just told: The engineering team believes they have identified the cause of the issue, and are working on remediation now. I will share the status of that when I have news, but no later than 14:00 Pacific Time. On Friday, April 10, 2015 at 4:27:28 PM UTC-4, Gilberto Torrezan Filho

[google-appengine] Setting up Unit Test for backend in Android Studio

2015-01-20 Thread Andrew Chen
Hi guys, this has been plaguing me quite a while. Given i am a new comer to Google App Engine with Android Studio. Was wondering if anyone could guide me in setting up Test Cases for Backend in Android Studio? Thanks. -- You received this message because you are subscribed to the Google

Re: [google-appengine] API for Developers Console?

2015-01-20 Thread 'Andrew Jessup' via Google App Engine
to google-appengine+unsubscr...@googlegroups.com. To post to this group, send email to google-appengine@googlegroups.com. Visit this group at http://groups.google.com/group/google-appengine. For more options, visit https://groups.google.com/d/optout. -- Andrew Jessup | Product Manager, Google

[google-appengine] Far in Future Task Queue ETAs

2014-12-19 Thread Andrew Greene
Are there any risks/cautions around creating tasks in a push queue with an ETA of say 1 month or 1 year or even longer from now? Thanks, Andrew -- You received this message because you are subscribed to the Google Groups Google App Engine group. To unsubscribe from this group and stop

[google-appengine] Most active IPs are not listed on Blacklist page

2014-06-11 Thread Andrew Osipenko
Good afternoon friends, I am struggling with outgoing bandwidth usage. I think some bots download images from my site. I decided to try embedded appengine IP blocking. Appengine documentation https://developers.google.com/appengine/docs/java/config/dos says: Viewing top users in the

[google-appengine] Re: Cloud Datastore Dashboard not working

2014-05-31 Thread Andrew Chen
My God. Pre production panic. Same here. This really turns me off. On Monday, April 28, 2014 10:30:45 AM UTC-4, husayt wrote: Is there anybody in google team here, I can address this to? Just to recap: I have a major issue with new google develpers console, is that it doesn't load Cloud

Re: [google-appengine] Re: New Pricing

2014-04-15 Thread Andrew Miller
I would also love to know this too, I have been holding back on some development features because of the channel pricing. But if its only quota driven now, than that changes a lot for me. On Wednesday, March 26, 2014 6:07:34 AM UTC-4, Alexis wrote: What about Channel API? It used to be

Re: [google-appengine] Re: Announcing a credit for App Engine applications with new custom domains

2014-04-14 Thread Andrew Jessup
Hi Igor - actually we do. See Step 2 in under App Engine Settings Custom Domains On Mon, Apr 14, 2014 at 5:21 AM, Igor Kharin igorkha...@gmail.com wrote: Hello Andrew, I believe you've mistakenly closed an issue unrelated to this one -- issue #777 https://code.google.com/p/googleappengine

Re: [google-appengine] Re: Announcing a credit for App Engine applications with new custom domains

2014-04-14 Thread Andrew Jessup
Andrew, This is a great step in the right direction. However, SSL is required for a very big class of applications these days. I would have expected Google waited to declare victory (and close the issue like you did etc) when SSL support is there as well. In any case, I hope SSL support

Re: [google-appengine] Re: Announcing a credit for App Engine applications with new custom domains

2014-04-11 Thread Andrew Jessup
will not be accepted. Thanks for your patience. Regards, Andrew Product Manager, Google Cloud Platform On Thursday, 27 March 2014 20:39:24 UTC+1, Vinny P wrote: On Thu, Mar 27, 2014 at 2:26 PM, Barry Hunter barryb...@gmail.comjavascript: wrote: Can't just use cloud-dns to CNAME your

Re: [google-appengine] App Engine 1.9.2 Released

2014-04-10 Thread Andrew Jessup
We've got some good things coming folks, some long requested features for Java in the pipeline. On Apr 10, 2014 12:38 PM, Vinny P vinny...@gmail.com wrote: On Tue, Apr 8, 2014 at 9:59 AM, Andrew Jessup jes...@google.com wrote: We are pleased to announce the latest release of Google App Engine

[google-appengine] App Engine 1.9.2 Released

2014-04-08 Thread Andrew Jessup
/detail%3Fid%3D10727usg=AFQjCNHVAnn2nCChZecikBYTGC-vI63orQ Kind regards, Andrew JessupProduct Manager, Google Cloud Platform -- 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

[google-appengine] Re: Is GAE memcache API thrad-safe?

2014-03-18 Thread Andrew Miller
You want to look into memcache.cas() https://developers.google.com/appengine/docs/python/memcache/clientclass#Client_cas On Thursday, March 13, 2014 11:41:54 PM UTC-4, Chen Ym wrote: Shoud I use a lock to protect the memcached object? -- You received this message because you are subscribed

[google-appengine] Best way to delete data by time (NDB) (Python)

2014-03-18 Thread Andrew Miller
What is the most cost efficient way to delete data from NDB that is x days old? For example, if you only wanted to store chat logs or something for only 30 days. Would you run a backend once a day to query for any entity that is less than x time? -- You received this message because you

Re: [google-appengine] Google App Engine / Cloud Storage Uploads for php broken in 1.9.0?

2014-03-13 Thread Andrew Jessup
to google-appengine@googlegroups.com. Visit this group at http://groups.google.com/group/google-appengine. For more options, visit https://groups.google.com/d/optout. -- Andrew Jessup | Product Manager, Google Cloud Platform | jes...@google.com -- You received this message because you

Re: [google-appengine] Re: Announcing a credit for App Engine applications with new custom domains

2014-02-27 Thread Andrew Jessup
. -- Andrew Jessup | Product Manager, Google Cloud Platform | jes...@google.com -- 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+unsubscr

Re: [google-appengine] A comparison between Digital Ocean $5 plan and App Engine B$ instance type.

2014-02-18 Thread Andrew Mackenzie
Good post Barry. Things are not so simple. How much salary for Ops guys to keep that thing running 24x7? -- 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] This is an important note for anyone still deploying Java 6 applications on Google App Engine

2014-02-06 Thread Andrew Jessup
Hi Everyone, This is an important note for anyone still deploying Java 6 applications on Google App Engine. As part of our previously announced planhttps://groups.google.com/forum/#!topic/google-appengine/xxXd6NftS1Qto fully upgrade App Engine to Java 7 - from the next release App Engine

[google-appengine] Re: Google Apps No Longer Free

2014-02-06 Thread Andrew Jessup
2013 09:54:20 UTC-8, James Gilliam wrote: Just got a response from google apps about the $50 credit ... they say it doesn't apply to google apps ... Andrew responded with I see. Unfortunately this credit is only available for the first $50 of your Google App Engine spend, not Google Apps

Re: [google-appengine] Re: how to start all modules instances on dev server?

2014-01-06 Thread Andrew Jessup
Tapir, was the bad character in the App Engine documentation somewhere? If so, where? On Sunday, 5 January 2014 00:33:33 UTC-8, Tapir wrote: Ok, found the problem by accident. After finding the google maven example on github works well, I copied the META-INF folder to my project. A

Re: [google-appengine] Re: Google App Engine remote_api returns 404 using remote_api_shell.py

2013-12-17 Thread Andrew Free
solved your problem? Hope you can see this and drop a line about your solution. Thank you! On Friday, September 6, 2013 1:12:02 AM UTC-4, Andrew Free wrote: I'm using googles built in tool for connecting to the remote api so I don't even have info in my client or app.yaml I could change. I

Re: [google-appengine] Blank page on PHP Hello World

2013-12-11 Thread Andrew Jessup
You need to specify the php-cgi binary, not the PHP binary On Tuesday, 10 December 2013 20:02:33 UTC-8, Vinny P wrote: On Fri, Dec 6, 2013 at 7:10 PM, Jefrey Sobreira jefrey@gmail.comjavascript: wrote: *The path specified with the --php_executable_path flag () does not exist.* So

[google-appengine] Re: Wait, what? App Engine doesn't work with latest version of WordPress?

2013-12-02 Thread Andrew Jessup
Has anyone been able to reproduce this problem? A couple of folks on the team tried installing the latest WordPress using our tutorial and it seemed to work well. If anyone can reproduce it, it would be great if they could file a bug - including the exact steps here -

[google-appengine] Re: Google App Engine remote_api returns 404 using remote_api_shell.py

2013-11-18 Thread Andrew Free
I use the deploy built into that app engine launcher that comes with the SDK on osx. I don't know if that is the same thing. I read about doing a normal appcfg update to fix this but it doesn't seem to be the problem for me. On Friday, October 18, 2013 8:03:13 AM UTC-7, gumptionthomas wrote:

  1   2   3   4   5   >