Re: [google-appengine] Re: appcfg shutdown: earlier than scheduled?

2020-05-19 Thread 'Rahul Ravindran' via Google App Engine
And please send any app_ids privately to me since this list is public. On Tue, May 19, 2020 at 4:32 PM Rahul Ravindran wrote: > Could you send the app-id for apps which are having trouble deploying via > appcfg? > > On Tue, May 19, 2020 at 12:11 PM Linus Larsen > wrote: > >> I just tried

Re: [google-appengine] Re: appcfg shutdown: earlier than scheduled?

2020-05-19 Thread 'Rahul Ravindran' via Google App Engine
Could you send the app-id for apps which are having trouble deploying via appcfg? On Tue, May 19, 2020 at 12:11 PM Linus Larsen wrote: > I just tried updating another service (I'm using Java) which now fails: > > 98% Application deployment failed. Message: Deployments using appcfg are > no

Re: [google-appengine] Re: Getting GAE to use GZIP encoding in responses

2019-04-04 Thread 'Rahul Ravindran' via Google App Engine
We consider jpeg, mpeg and some file formats as not compressible and hence do not compress this content-type ~Rahul. On Thu, Apr 4, 2019 at 4:26 PM Joshua Smith wrote: > I didn’t get an answer in either place. But my experience has been that > this list tends to produce answers whereas SO is

Re: [google-appengine] Quickstart for Python 3 in the App Engine Standard Environment

2019-03-19 Thread 'Rahul Ravindran' via Google App Engine
Looks like a typo. Could you try app-engine-Python? I will file a bug to fix the doc On Tue, Mar 19, 2019 at 10:01 PM Will H wrote: > In the quickstart here: > https://cloud.google.com/appengine/docs/standard/python3/quickstart > There is a step to install the gcloud component

Re: [google-appengine] Existing ndb data -> Python 3 data

2019-02-12 Thread 'Rahul Ravindran' via Google App Engine
That is the idea. I encourage you to participate in the early releases etc to ensure your use case is being met. You may have additional steps to enable caching. On Tue, Feb 12, 2019 at 5:30 PM Bruce Sherwood wrote: > That is very good news indeed. It's not immediately obvious from that >

Re: [google-appengine] Existing ndb data -> Python 3 data

2019-02-12 Thread 'Rahul Ravindran' via Google App Engine
Development of the new Python 3-compatible ndb client is happening in the Google Cloud Python client library github repo at https://github.com/googleapis/google-cloud-python/tree/master/ndb . The library is not usable as-is yet, but work is in progress and can be monitored there. On Tue, Feb 12,

Re: [google-appengine] Re: GAE python 2.7 end of life

2019-01-09 Thread 'Rahul Ravindran' via Google App Engine
Google has a policy of a one year deprecation policy for any GA runtime. Given that nothing has been announced yet, please know that your application will continue running for at least a year and that will be the *minimum *period for you to need to do anything. I apologize on being very brief

Re: [google-appengine] Re: Python 3.7 service killed after exceeding memory limit

2018-11-20 Thread 'Rahul Ravindran' via Google App Engine
Hello, Your measurement of your application on your laptop does not accurately represent all the memory used. Firstly, you will need to look at the RSS memory for the process. In addition, any resources taken by the operating system, kernel are not accounted for in your measurement but is

Re: [google-appengine] Python 3.7 and Dajngo 2.x

2018-11-10 Thread 'Rahul Ravindran' via Google App Engine
Not an exact match, but close - Here is a sample with Django, python 3.7 and cloudsql On Sat, Nov 10, 2018 at 4:21 PM Charles tenorio wrote: > Is anyone using django 2.0 like App Engine and python 3.7 and Cloud > Datastore? if you can send me an example of CRUD! Thank you > > -- > You received

Re: [google-appengine] Persistent instance and out of memory with automatic scaling and no traffic

2018-10-09 Thread 'Rahul Ravindran' via Google App Engine
The instance might stay alive after it's been idle for 15 minutes, but you won't be billed for it. Billing is based on 15 min blocks as long as there is at least one active requet in the 15 min block. We kill clones lazily to prevent excessive cold starts. On Tue, Oct 9, 2018 at 5:22 AM vvv vvv

Re: [google-appengine] Re: Can't run sample applications on AppEngine Stanadard Python3.7

2018-09-28 Thread 'Rahul Ravindran' via Google App Engine
Did you have a chance to look at https://github.com/GoogleCloudPlatform/python-docs-samples/tree/master/datastore/cloud-client ? On Fri, Sep 28, 2018 at 10:50 AM vvv vvv wrote: > Hi George, thanks for answering. dev_appserver.py is for the standard > environment Python 2.7, I'm trying to run a

Re: [google-appengine] using 3rd party libraries on GAE standard with Python

2018-09-25 Thread 'Rahul Ravindran' via Google App Engine
Unfortunately, dev_appserver does not yet work with Python 3.x(See https://cloud.google.com/appengine/docs/standard/python3/testing-and-deploying-your-app#local-dev-server). You need to run it from a virtualenv which is running python 2.7. Alternatively, as specified in

Re: [google-appengine] using 3rd party libraries on GAE standard with Python

2018-09-25 Thread 'Rahul Ravindran' via Google App Engine
Could you paste the entire command surface? Additionally, which version of Google Cloud SDK are you using? On Tue, Sep 25, 2018 at 2:25 PM Dewey Gaedcke wrote: > Thanks for the response and clarification!! > I remember being told way back NOT to use venv with GAE & so all these > posts where

Re: [google-appengine] Issue with spaCy library in the new GAE Standard Environment python37 runtime

2018-09-22 Thread 'Rahul Ravindran' via Google App Engine
That is great. Do you mind sharing a sample of your code, requirements.txt and app.yaml in a sample which we could use to look at this usecase? Additionally, by slow- do you mean every request or the first one? If you could share your image or code, that would help us debut further On Sat, Sep

Re: [google-appengine] Issue with spaCy library in the new GAE Standard Environment python37 runtime

2018-09-22 Thread 'Rahul Ravindran' via Google App Engine
So, you cannot install anything outside of requirements.txt into our environment. You could download everything into your source folder and that may work, but if you are attempting to download models and write it some where, that is not supported On Sat, Sep 22, 2018 at 11:43 AM BLONDEV INC

Re: [google-appengine] Issue with spaCy library in the new GAE Standard Environment python37 runtime

2018-09-22 Thread 'Rahul Ravindran' via Google App Engine
We don't use Conda. THis seems like an issue with your application. Can you run this locally successfully? On Sat, Sep 22, 2018 at 9:50 AM BLONDEV INC wrote: > > Hi, > > I am getting this error message when I make a GET request to my app's URL. > > File "/srv/main.py", line 12, in

[google-appengine] Re: [Google Cloud Insiders] A lot of instability in Google App Engine Standard today

2017-10-31 Thread 'Rahul Ravindran' via Google App Engine
Hello, What is your app-id where you are seeing this? Thanks, ~Rahul. On Tue, Oct 31, 2017 at 1:37 PM, PK wrote: > Many requests fail, usually Ajax calls but I just got one in the UI. I am > in US Central/python runtime anybody else experiencing instability? > > Error: Server