[google-appengine] Re: Google appengine free quota per application?

2020-02-24 Thread 'noverlyjoseph' via Google App Engine
Yes, the free quotas is per Application and not by billing account as mentioned here[1] [1] https://cloud.google.com/appengine/quotas On Thursday, February 20, 2020 at 7:46:24 PM UTC-5, Ryan B wrote: > > On Thursday, February 20, 2020 at 12:41:49 PM UTC-8, David (Cloud Platform > Support) wrote

[google-appengine] Re: Google appengine free quota per application?

2020-02-24 Thread 'David (Cloud Platform Support)' via Google App Engine
For the always free program within the free tier , most quotas are per billing account. However, for App Engine specifically, I can confirm as Ryan mentioned, it is per

[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 Datastore,

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

2020-02-24 Thread Remko Tronçon
> We also have a migration guide for NDB > > > at, as part of our broader GAE Python migration documentation > . > We'll continue upda

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

2020-02-24 Thread Philip
In this ticket it was stated that 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

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

2020-02-24 Thread Joshua Smith
I need to read and resize an image in my google app engine app. In my python2.7 code, this is simply: from google.appengine.api import images image = images.resize(image, width=1024, output_encoding=images.JPEG, correct_orientation=images.CORRECT_ORIENTATION) I can’t find anything the migration

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 >>

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

2020-02-24 Thread 'Andrew Gorcester' via Google App Engine
Cloud NDB is intended as a migration tool for App Engine NDB users who wish to move to either newer versions of App Engine (App Engine Python 3) or to other environments. Customers are welcome to use Cloud NDB however they wish, including on totally new projects that aren't associated with GAE NDB.

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

2020-02-24 Thread Remko Tronçon
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 as they would be with the Cloud > Datastore library. Using an external emulator is way too slo

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

2020-02-24 Thread 'Andrew Gorcester' via Google App Engine
I'm afraid none of the Cloud API-targeting libraries have testbed support, as testbed was a solution to App Engine Gen 1-specific problems at the time. If you have an example of how much slower the datastore emulator is vs. testbed for your use case, that would be very helpful in prioritizing furth

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 performan