Re: [google-appengine] High untraced time on lightweight endpoint

2019-05-22 Thread Jeremy D
Nope. This is automatic scaling. instance_class: F4 automatic_scaling: max_idle_instances: 1 max_pending_latency: 1s max_concurrent_requests: 60 On Sunday, May 19, 2019 at 10:36:25 AM UTC-5, Gregory Block wrote: > > I'm going to guess this service is set for manual scaling. > > On Tue, May

[google-appengine] Re: DataStore wont allow me to save byte[]

2019-05-22 Thread 'George (Cloud Platform Support)' via Google App Engine
Hi again Tony, In fact, Byte string (short) and Byte string (long) are supported data types. You can gather more detail on the "Entities, Properties, and Keys" page . -- You receiv

[google-appengine] "502 Server Error" during Cloud-Build Deployment with customized nginx-config

2019-05-22 Thread Titus Keuler
Hey, we see a "502 Server Error" status during CloudBuild processes changes for our production website during the service is being updated. It seems like the traffic is already routed to the new machine, while the provisioning is still in progress. We do use "nginx_conf_override" in our app.y

[google-appengine] Re: DataStore wont allow me to save byte[]

2019-05-22 Thread tonycavanagh1929
Thank you for reply, I found to save byte [] I had to wrap it as a Blob. On Friday, 17 May 2019 14:50:31 UTC+1, tonycavanagh1929 wrote: > > > I thought DataStore Allows you to save byte [], but I am getting an error > > [B is not a supported property type.]. I thought. datastore is supposed >

[google-appengine] Re: Are Allocated IDs for child entities guaranteed to be unique?

2019-05-22 Thread 'Sam (Google Cloud Support)' via Google App Engine
Hi, each System-allocated ID values are guaranteed unique to the entity group. As our docs state here [1]: "Each entity in a Datastore mode database has a key that uniquely identifies it." If you copy an entity from one entity group or namespace to another and wish to preserve the ID part of th

[google-appengine] How to file an official bug report?

2019-05-22 Thread Christopher Russell
Nobody seems to know much about my question regarding ETag HTTP header stripping during App Engine flex environment tranpilation (gzip) of a resource. ( But, to me this seems like an easily reproducible bug. Does anyone know how to file an actual bug? The link to the Issue Tracker above (http:

[google-appengine] Re: Are Allocated IDs for child entities guaranteed to be unique?

2019-05-22 Thread dir Ls
Thank you Sam for the response. I am always using the AllocateIDs API as documented in the client library (not the appengine api). https://godoc.org/cloud.google.com/go/datastore#Client.AllocateIDs Say I have two users, with Keys (User,1) and (User,2). If I do the following key1s := []*datastor

[google-appengine] Re: Multiple URLs with Python Flex App Engine?

2019-05-22 Thread 'Harmit Rishi (Cloud Platform Support)' via Google App Engine
Hi, Before we dive into your question, I believe it would be worth it for you to understand how applications are structured as well as how the requests are routed

[google-appengine] How does app engine standard frontend autoscaling instances react to quick burst of memory and cpu spikes

2019-05-22 Thread dir Ls
I am considering using Argon2ID for password hashing and it is both memory and CPU intensive (though the parameters can be adjusted to some extent). Will such sudden burst of load result in starting of multiple instances? Is anyone using such modern password hashing for their apps have any input