Hello, I've been trying App Engine Managed VM with Go runtime in my project *sanguine-form-95600*
I have a Go Handler that downloads a 300MB file from an external source, and, even though I have billing enabled, it's being downloaded at 380KB/s (~22MB/min), which I understand is the default quota for free projects (https://cloud.google.com/appengine/docs/quotas). Could you please check if this network quota is being correctly applied for Managed VM? (shoudn't it be +740MB/min?) I have no problems with the same task in Java on Compute Engine. Thanks, Roy ---------- Relevant Go source: response, err := http.Get(url) zipBody, err := ioutil.ReadAll(response.Body) ---------- I'm also getting 502 Bad Gateway error after 18 minutes (roughly when the 300MB may have been downloaded). Probably a side effect... -- 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 it, send an email to [email protected]. To post to this group, send email to [email protected]. Visit this group at https://groups.google.com/group/google-appengine. To view this discussion on the web visit https://groups.google.com/d/msgid/google-appengine/ecba7c4d-3e09-4f43-bb41-56aecc330f93%40googlegroups.com. For more options, visit https://groups.google.com/d/optout.
