[google-appengine] Is there a list of all possible HTTP_X_APPENGINE_CITY/REGION/COUNTRY combos?

2016-04-08 Thread Bret Lowery
Is there a publically-available list or db available of all possible HTTP_X_APPENGINE_CITY, HTTP_X_APPENGINE_REGION, and HTTP_X_APPENGINE_COUNTRY combinations that can be generated by any web request to App Engine? -- You received this message because you are subscribed to the Google Groups

Re: [google-appengine] Memcache behaves differently on EU server than on US server

2016-04-08 Thread Barry Hunter
> > The whole point of memcache is using it instead of datastore for > performance reasons. > > Well yes, kinda. But an important point its its 'best effort'. Even with 'dedicated memcache' you can't *rely *on data staying there. Your cache may be lost at any point (say your app moves between

[google-appengine] Re: New pricing question datastore

2016-04-08 Thread 'Adam (Cloud Platform Support)' via Google App Engine
The documentation doesn't get too specific, but you will only be charged for the number of entities read, written or deleted irrespective of the number of attributes or indexes for each entity. I expect the

Re: [google-appengine] New App Engine Managed VM Docs

2016-04-08 Thread 'Jon Parrott' via Google App Engine
For those of you interested in webapp2, I've posted an update here . On Friday, March 4, 2016 at 3:49:09 PM UTC-8, Alex Martelli wrote: > > > > On Fri, Mar 4, 2016 at 11:15 AM, Karl MacMillan > wrote:

[google-appengine] An update on webapp2

2016-04-08 Thread 'Jon Parrott' via Google App Engine
In a previous thread , several of you pointed out that webapp2 was abandoned and some of you expressed interesting in helping maintain the project. I'm happy to provide an update. The original author has allowed the Google

Re: [google-appengine] Memcache behaves differently on EU server than on US server

2016-04-08 Thread Houman Khorasani
Yes it is a shared memcache. Interesting I didn't think about that. A shame the jump to dedicated is so expensive. The whole point of memcache is using it instead of datastore for performance reasons. But $0.06 per GB per hour can easily add up to $1 a day. Thanks Houman Khorasani Venus Cloud

Re: [google-appengine] Memcache behaves differently on EU server than on US server

2016-04-08 Thread Barry Hunter
Is this with Shared Memcache, or you using Dedicated Memcache? https://cloud.google.com/appengine/docs/python/memcache/#Python_Configuring_memcache Remember if using Shared, you are at the 'mercy' of what the neighbouring applications are doing. If other apps are using memcache heavily, your

[google-appengine] Memcache behaves differently on EU server than on US server

2016-04-08 Thread Hooman Korasani
As strange as this may sound, I have the exact same code published on a US-EAST server and on a EU server. Both server have billing enabled. Th expiration is set to 7200 seconds. memcache.set(memcache_key, result_dic, 7200) And I have cron jobs enabled to rerun the line of code above to

[google-appengine] GAE instance prices?

2016-04-08 Thread Susan Lin
I tested out Google App Engine 4 years ago and am coming back now to see if it is a possibility for another project I will be working on. I see the pricing for instances are still the same as they were 4 years ago: This table summarizes the CPU, memory, and hourly billing rate of the various

[google-appengine] New pricing question datastore

2016-04-08 Thread Susan Lin
I am trying to confirm the details of the new pricing effective July 1st. I think an example would work best. Say I have an entity with 10 attributes. I put an index on all 10 attributes. 1) Now I want to create a new entity, what would be the cost? 2) I want to do a query and it will return

[google-appengine] Re: Problem with custom domain

2016-04-08 Thread 'Zeehad (Cloud Platform Support)' via Google App Engine
Would you be able to share the findings from the two checks I've suggested? If possible, please also post a screenshot of the the 'Custom domains' page . -- You received this message because you are subscribed to the Google

[google-appengine] Re: Update SSL certificate on app engine is not working

2016-04-08 Thread Luis Manuel Parrondo Merino
Thanks Nicholas, I've continued doing more testing and I can see some differences between applications that: (a) had a SSL certificate configured using the old appspot console (b) never had a SSL certificate In case (a) the changes I make seem to be totally ignored. For example

[google-appengine] Re: Issue with a new SSL Cert (You must verify ownership of this certificate's domain(s)in order to upload it)

2016-04-08 Thread Raphael Savina
Hi Nicholas, I meant I have: www.example.com example.com both go to the same GAE App setup with 1 SSL cert. Also have added "secure: always" in my YAML file so that visitors will be always redirected to the HTTPS. Thanks Raphael On Thursday, 7 April 2016 19:45:09 UTC+1, Nicholas (Google

Re: [google-appengine] Re: Cloud SQL in App Engine Flexible Environment + Custom Docker

2016-04-08 Thread Prashant V
Hi Nick, The pattern in the app.yaml has to be PROJECT:REGION:INSTANCE, otherwise it throws an error. I tried to make it just PROJECT:INSTANCE, and I got this error: ERROR: (gcloud.preview.app.deploy) Error Response: [13] Invalid Cloud SQL name: *[PROJECT]:[INSTANCE]* If you deploy that