[google-appengine] Re: ERR_SPDY_PROTOCOL_ERROR suddenly appear in Chrome for site using HTTP/2 Server Push on AppEngine Standard

2017-01-17 Thread MajorBuild
Strangely, this issue was very unstable, sometime it works and sometimes it fail. Now the server even works but ignore the Link: headers. If any Googler is working on this could you get us informed what's going on? Here's a screen shot showing http2 server push no longer working, but web page

[google-appengine] Unable to see SSL certificates in the console

2017-01-17 Thread Attila-Mihaly Balazs
We have two users, both are "owner"s of the project. One of the accounts sees "No certificates have been uploaded." in the appengine certificates console page [1] while the others sees them. Any ideas what the issue is here? One difference might be that the user which sees the certificates is a

[google-appengine] Re: Unable to see SSL certificates in the console

2017-01-17 Thread Anastasios Hatzis
Attila, if I remember correctly, only the user who uploaded the certificate to Cloud Console can actually see the certificate. At least it was this way in earlier versions of Cloud Console. Anastasios On Tuesday, 17 January 2017 15:15:46 UTC+1, Attila-Mihaly Balazs wrote: > > We have two users

[google-appengine] Re: Entity groups

2017-01-17 Thread 'Alex (Cloud Platform Support)' via Google App Engine
Thanks for posting your code sample and your solution. In fact you got it right, Datastore Entity ancestor paths [1] are designed to allow entities to optionally be assigned parents. Meaning that upon creation of a datastore entity, the ancestor path of this entity has to be specified explici

[google-appengine] Re: Compute Engine in same project as App Engine

2017-01-17 Thread Evan Jones
It definitely works. I haven't investigated the performance carefully, since we are primarily an App Engine app with a small amount of stuff outside of App Engine. Basically: Our non-app engine stuff accesses the datastore sufficiently quickly and reliably that we haven't had to investigate it.

[google-appengine] Re: Compute Engine in same project as App Engine

2017-01-17 Thread Thomas Baldauf
Thank you, Evan! -- 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 google-appengine+unsubscr...@googlegroups.com. To post to this group, send email to google-

[google-appengine] Re: ERR_SPDY_PROTOCOL_ERROR suddenly appear in Chrome for site using HTTP/2 Server Push on AppEngine Standard

2017-01-17 Thread 'Alex (Cloud Platform Support)' via Google App Engine
Hi, As you’ve already appropriately opened a Public Issue Tracker thread for App Engine regarding this issue, let’s continue its investigation there. For anyone reading this post, please refer to the opened PIT thread [1] if experiencing a similar issue. [1] https://code.google.com/p/googlea

[google-appengine] Google Cloud Storage TTFB increased with gzip

2017-01-17 Thread Denys Koch
Hi all! When I upload assets to cloud storage with `gsutil cp -z js,css,html`, then their TTFB (Time To First Byte) on serving increasing from ~20ms to 180ms. This is big performance impact. Why is this happening and how to solve this? Here more samples (URLs are still valid, if you want to try

[google-appengine] Installing a linux package for app engine instance, how to?

2017-01-17 Thread Pub Lift
Hello! I'm having a bit of an issue with my app. I'm using nodejs and it interacts with gnuplot, but I'm not sure how to install the gnuplot package after deploying the app. Am I doing this right? Dockerfile FROM gcr.io/google_appengine/nodejs RUN apt-get -qq update && apt-get -qq -y install

[google-appengine] Re: Google Cloud Storage TTFB increased with gzip

2017-01-17 Thread 'Adam (Cloud Platform Support)' via Google App Engine
It seems like the first byte is getting delayed until the first window of the gzip-encoded streams is being decoded (but ab shouldn't accept gzip encoding by default). Have you compared the results by using -H “Accept-Encoding: gzip,deflate” to see what's going on? On Tuesday, January 17, 2017

[google-appengine] In queries and cursors limitation

2017-01-17 Thread Rajesh Gupta
I have the following Public class Invoice { @Id Long id Key partyKey; Status status } enum Status { PAID, PARTIAL_PAID, PENDING, DRAFT } I want to find all invoices with Status = PAID, PARTIAL_PAID, so I do the IN query ofy.query(Invoice.class).filter("status in", [PAID, PARTIAL_PAID]