[google-appengine] Download Google Managed SSL cert

2018-11-26 Thread Deepak Singh
Hello, Is it possible to download the google managed SSl certificate mapped to a custom domain running on GCP instance without load balancer ? -- Deepak Singh -- You received this message because you are subscribed to the Google Groups "Google App Engine" group. To unsubscribe from this group

[google-appengine] How to delete 800 mln records from Datastore?

2018-11-26 Thread Kuba Włodarczyk
I've got around 800 mln (!) records in my Datastore entities. How I can remove them quickly? I'm trying to delete them via deferred tasks (python script) but it is extremly slow... I would appreciate any help. Thanks. -- You received this message because you are subscribed to the Google Groups

[google-appengine] Re: How to delete 800 mln records from Datastore?

2018-11-26 Thread Vitaly Bogomolov
Hi Kuba. Free quota per day for entity deletes is 20K records. So for free you will deletes data for 80K days Or you can delete this data in one day and will be charged $1.6K ($0.02 for every 20K deletes over quota) + additional costs for running instanses. https://cloud.google.com/appengine/p

Re: [google-appengine] Re: How to delete 800 mln records from Datastore?

2018-11-26 Thread Kuba Włodarczyk
Thank you for your answer. That clarifies a lot. But beside costs how I can do this, let say in one day (expensive option)? I prefer python. W dniu pon., 26.11.2018 o 20:28 Vitaly Bogomolov napisał(a): > Hi Kuba. > > Free quota per day for entity deletes is 20K records. So for free you will > del

[google-appengine] Re: Global app engine as described in the article

2018-11-26 Thread 'Mohammad I (Cloud Platform Support)' via Google App Engine
Hello Aron, The article that you have shared indicates that every project is deployed within a single region for App Engine Flexible environment. If user likes to

Re: [google-appengine] Re: How to delete 800 mln records from Datastore?

2018-11-26 Thread Vitaly Bogomolov
something like this. code not tested and constants may be different. except 800M ;) from google.appengine.api.taskqueue import Queue, Task from google.appengine.ext import ndb QUEUE = Queue('default') def backend_function(): for j in xrange(8 / (100 * 20)): QUEUE.add([Task(

[google-appengine] Re: "appcfg.py rollback" doesn't work now.

2018-11-26 Thread 'Amit (Google Cloud Support)' via Google App Engine
Hi Tapir Thank you for your update. I am glad to know that the issue has been resolved for you. Please let us know if you have any other questions. On Sunday, November 25, 2018 at 1:00:04 AM UTC-5, Tapir wrote: > > The last update succeeded. > Maybe it is a fault from my side, but I can't confir

[google-appengine] Re: Pushed my site with deploy but old one remains

2018-11-26 Thread 'George (Cloud Platform Support)' via Google App Engine
Hi Nikos, The error remains: "INFO: Previous default version is an automatically scaled standard environment app, so not stopping it. "Are you using manual scaling or automatic scaling in your app.yaml? If you're using manual scaling, App Engine will try to keep instances alive indefinitely un

Re: [google-appengine] Re: How to delete 800 mln records from Datastore?

2018-11-26 Thread 'Mohammad I (Cloud Platform Support)' via Google App Engine
Hello Kuba, You can delete entities in bulk from Cloud Datastore using Cloud Dataflow[1] which is a managed service for developing and executing data processing workflows. Please look at this section[2] for best practices for deletion from Cloud Datastore. [1]https://cloud.google.com/datast

[google-appengine] Re: Download Google Managed SSL cert

2018-11-26 Thread 'Mohibul (Google Cloud Support)' via Google App Engine
Hello, SSL certificate objects can only be assigned to target HTTPS and target SSL proxies. So: 1. You cannot use a GCP SSL certificate object for a single instance. And: 2. You cannot download the SSL certificate and private key from the SSL certificate object after you've created it.

Re: [google-appengine] Re: Global app engine as described in the article

2018-11-26 Thread Aron Suarez
Hi Mohammad Thanks for your answer. Sorry for my unclear question. My question is related to the second last part. Where is described, how to deploy a app engine flex application global. For my is the theory clear, but how can i setup a Cloud Load Balncer to balance the traffic between multiple

[google-appengine] Re: Global app engine as described in the article

2018-11-26 Thread Aron Suarez
Hi Mohammad Thanks for your answer. Sorry for my unclear question. My question is related to the second last part. Where is described, how to deploy a app engine flex application global. For my is the theory clear, but how can i setup a Cloud Load Balncer to balance the traffic between multipl

[google-appengine] Re: How to delete 800 mln records from Datastore?

2018-11-26 Thread Attila-Mihaly Balazs
AFAIK the simplest way to delete them which requires *no code to be written* is the deprecated but still working datastore admin. In your Google Cloud Console go to Datastore > Admin click on "Open Datastore Admin", select the entity kind you want to delete and click "Delete Entities". This wil