[google-appengine] .NET Core 3.0 Timeline

2019-09-23 Thread Dominic Laudate
Hello, We use App Engine for one of our API servers and are curious what the timeline for supporting .NET Core 3.0 is. We're fairly new to the platform and don't know how often new versions are added. Any info would be greatly appreciated. Thanks! -- You received this message because you are

[google-appengine] Are idle instances billed?

2019-09-23 Thread Alejo gomez
I have the doubt if the idles instances in app engine are billed in a different way, or as such they are not billed. My doubt comes from the following. Observing in stackdriver the behavior of my instances, I see the following: [image: idles.JPG] You can see that all day I've had an idle

[google-appengine] Re: Region of Static IP

2019-09-23 Thread 'Jason' via Google App Engine
Hi, There are two type of external IP addresses that you can reserve: 1. A regional IP address 2. A global IP address The regional IP addresses can be used for VM instances, but global IP addresses are used for Load Balancers. The static external IP address that you want to assign to the VM

[google-appengine] Re: Region of Static IP

2019-09-23 Thread 'Alexandre Duval-Cid' via Google App Engine
Hi, There are two type of external IP addresses that you can reserve: 1. A regional IP address 2. A global IP address The regional IP addresses can be used for VM instances, but global IP addresses are used for Load Balancers. The static external IP address that you want to assign to the VM in

[google-appengine] Error 500 on 60MB csv file download

2019-09-23 Thread Some Name
Hello, I have an API endpoint in Google Apps Engine (F4 instance, Python3, Flask). The endpoint streams CSV data using this code return Response(converter.generate(), mimetype="text/csv", headers={ "Content-Disposition": "attachment; filename=data_export.csv", }) converter.generate() yields b

[google-appengine] Re: Error 500 on 60MB csv file download

2019-09-23 Thread 'Elliott (Cloud Platform Support)' via Google App Engine
Hello, Please note that Google Groups are reserved for general Google Cloud Platform-end product discussions and not for reporting issues, which is why I suggest moving the troubleshooting to Issue Tracker[1], where issues can be turned private in case we need to gather any project specific det

Re: [google-appengine] Re: running instances serving old versions of an application in google app engine

2019-09-23 Thread 'Elliott (Cloud Platform Support)' via Google App Engine
Hello Pardeep, If instances receive requests, they will run. In this scenario, you would manually need to clean those instances. -- 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

[google-appengine] Re: How to export more than 50 Kinds from Google Cloud Datastore into the same Cloud Storage Bucket?

2019-09-23 Thread 'Hamid Raza' via Google App Engine
Hi George, Thanks for your reply. Yes, I do export a chunk of 40 entities in a single operation. And according to my understanding, the limit of 20 export and import requests is actually the limit on the number of times the export and import API can be called in a minute, right? And, I am trigg

[google-appengine] Re: Problem with Google Calendar Api error This app isn't verified

2019-09-23 Thread 'George (Cloud Platform Support)' via Google App Engine
Hi Leandro, This discussion group is oriented more towards general opinions, trends, and issues of general nature touching the app engine. For Wordpress site setup, as well as setting up Calendar API access, you may be better served in dedicated forums such as stackoverflow, where experienced

[google-appengine] Re: How to export more than 50 Kinds from Google Cloud Datastore into the same Cloud Storage Bucket?

2019-09-23 Thread 'George (Cloud Platform Support)' via Google App Engine
Hello Hamid, You mention splitting your export into chunks of 40 entities. Do you export this chunk in a single operation? If so, you may check the value of requests per minute, as there is a limit of maximum of 20 export and import requests per minute for a project. You may find related infor

[google-appengine] Porting a Django+Apache app in GAP - Where to set Redirect 301 that now are in httpd.conf Apache file?

2019-09-23 Thread Giancarlo Facoetti
Hello all, I'm porting a webapp (Django+Mysql+Apache) in Google App Engine. Everything is going well, but I don't know how to manage the old redirects 301. The original version uses the httpd.conf file of Apache with directives likes this: Redirect 301 /old-url/ www.mysite.com/new-url/ How

[google-appengine] Re: Managed Google vs Raw Google

2019-09-23 Thread 'George (Cloud Platform Support)' via Google App Engine
Your question is is replied simply by listing advantages of Infrastructure-as-a service, as Compute Engine falls under this category, IaaS: - High-Performance, Scalable VMs - Industry Leading Price & Performance - Low Cost, Automatic Discounts - Fast & Efficient Networking - Flexibility for Ev

[google-appengine] Error 500 on 60MB csv file download

2019-09-23 Thread Some Name
Hello, I have an API endpoint in Google Apps Engine (F4 instance, Python3, Flask). The endpoint streams CSV data using this code return Response(converter.generate(), mimetype="text/csv", headers={ "Content-Disposition": "attachment; filename=data_export.csv", }) converter.generate() yields b

[google-appengine] Region of Static IP

2019-09-23 Thread Terry Lin
I can't choose my VM when I want to change my external static IP option, is that both Static IP and my VM need to be in the same region? Is it possible to assign a static IP from a VM in a different region? Many Thanks! -- You received this message because you are subscribed to the Google Grou

[google-appengine] Managed Google vs Raw Google

2019-09-23 Thread test user
Greetings, I was wondering if a user decides to go for hosting with google,https://www.cloudways.com/en/managed-google-compute-engine.php, for the desired application such as wordpress, php, magento, is it better than purchasing a raw server and doing all the stuff by your own self? -- You re

[google-appengine] Region of Static IP

2019-09-23 Thread Terry Lin
I can't choose my VM when I want to change my external static IP option, is that both Static IP and my VM need to be in the same region? Is it possible to assign a static IP from a VM in a different region? Many Thanks! -- You received this message because you are subscribed to the Google Grou

[google-appengine] Why TTFB on Google Cloud Run/App depends significantly on domain?

2019-09-23 Thread Andy S
I have several top level domains pointing (DNS A record) to one service on Google Cloud Run/App (I've deployed the same service to both cloud products (Run/App) in order to test performance). If I visit service though top level domains I have quite long TTFB, but if I visit service by "inter

[google-appengine] How to export more than 50 Kinds from Google Cloud Datastore into the same Cloud Storage Bucket?

2019-09-23 Thread 'Hamid Raza' via Google App Engine
I am attempting to use the new datastore export to export more than 50 different entity kinds. For this purpose I specifically followed this cron job based procedure. But, currently it is not possible to export more than 50 different entity kinds in a single backup request. Also, ideally I wou

[google-appengine] How to export more than 50 Kinds from Google Cloud Datastore into the same Cloud Storage Bucket?

2019-09-23 Thread 'Hamid Raza' via Google App Engine
I am attempting to use the new datastore export to export more than 50 different entity kinds. For this purpose I specifically followed this cron job based procedure. But, currently it is not possible to export more than 50 different entity kinds in a single backup request. Also, ideally I wou

[google-appengine] Porting a Django+Apache app in GAP - Where to set Redirect 301 that now are in httpd.conf Apache file?

2019-09-23 Thread Giancarlo Facoetti
Hello all, I'm porting a webapp (Django+Mysql+Apache) in Google App Engine. Everything is going well, but I don't know how to manage the old redirects 301. The original version uses the httpd.conf file of Apache with directives likes this: Redirect 301 /old-url/ www.mysite.com/new-url/ How

[google-appengine] Re: mounting buckets or accessing gcp storage from AI platform notebook instance

2019-09-23 Thread 'Ali T (Cloud Platform Support)' via Google App Engine
Hi, One way to do this is through gcsfuse . Once you create an AI Platform notebook, click on the notebook’s name, ssh into the VM and follow the gcsfuse installation instructions for Ubuntu and Debian