[google-appengine] Re: Requests not showing in the logs

2017-09-01 Thread 'Nicola Spreafico' via Google App Engine
I hade the same problem in the last 2 days. App Engine standard application, logs of requests are not shown after repeatedly pressing the refresh button (no filter applied, no version filter applied). I also received an Error Reporting email error, pressed the "View request" to see the log (whi

[google-appengine] Re: Help me! Recently I can not upload files with blobstore! 503 Error occurred.

2017-09-01 Thread 中村智
Oh! I solved this issue! I added storage.objects.create to allAuthenticatedUsers, then my service users got to upload files. Thank you very much Yannick. Your hint is very helpful for me. 2017年9月2日土曜日 7時31分12秒 UTC+9 中村智: > > Hello and thank you Yannick. > How can I change ACL and How can I check

[google-appengine] Re: Help me! Recently I can not upload files with blobstore! 503 Error occurred.

2017-09-01 Thread 中村智
Hello and thank you Yannick. How can I change ACL and How can I check default bucket? I use blobstore.create_upload_url('path'). I do not specify bucket_name. Does App Engine's service account mean project owner? Please tell me manage page url and how to add read/write permissions to App Engine'

[google-appengine] Re: Health Checking Issues and Confusion

2017-09-01 Thread 'Shivam(Google Cloud Support)' via Google App Engine
After health checks are disabled, /_ah/vm_health path is created for backend health checks. As far as I know, it should return 200. Issues such as these most of the times tend to be project/application specific. I would recommend to post on App Engine public issue tracker

[google-appengine] Re: Requests not showing in the logs

2017-09-01 Thread 'Shivam(Google Cloud Support)' via Google App Engine
In Stackdriver, you can view the log entries per resource basis by choosing the resource from the dropdown menu . You can also try to filter the logs based

[google-appengine] Re: Help me! Recently I can not upload files with blobstore! 503 Error occurred.

2017-09-01 Thread 'Yannick (Cloud Platform Support)' via Google App Engine
Hello, a Blobstore 503 error usually means that the App Engine service account does not have access to the Google Cloud Storage bucket in which your blobs are stored. Could there have been any such changes to the bucket ACLs recently? You should make sure that App Engine's service account does

[google-appengine] Re: Very slow fetch page queries

2017-09-01 Thread 'Yannick (Cloud Platform Support)' via Google App Engine
Hello Richard, I referred you to the best practices because depending on your use case any one of them might be the key to your performance issues. In Cloud Datastore there are only 2 factors that determine the speed of your query. The first of those is indexing, keeping in mind that you cannot

[google-appengine] Re: Laravel Queue on Google App Engine

2017-09-01 Thread Avik Aghajanyan
Hi Yannick, Many people, including me are facing such issue with Laravel and App Engine, because the documentation you mentioned is about Flexible Environment (which are we using currently), but there is nothing about queue, and the third-party package you mentioned is for old Laravel and Stand

[google-appengine] Health Checking Issues and Confusion

2017-09-01 Thread Marco Galassi
Hi everyone! Apparently we are experiences issue with the Health Checking system of App Engine. We have disabled the regular health check mechanism as explained in this doc page . And, in

[google-appengine] Requests not showing in the logs

2017-09-01 Thread Richard Cheesmar
Some Requests are not showing in the cloud console - logs, but they seem to be processing ok, just not appearing in the logs -- 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,

[google-appengine] Re: Upgrade instance with a GPU from gcloud command

2017-09-01 Thread 'Navi Aujla (Google Cloud Support)' via Google App Engine
Thank you for filing feature-request/issue on Public issue tracker. I have forwarded this issue/feature-request to the backend team. You can track this thread to post any further comments or check the updates

Re: [google-appengine] Re: App engine hosted website - Google search shows the domain is no longer parked by GoDaddy

2017-09-01 Thread 'Jordan (Cloud Platform Support)' via Google App Engine
To clarify this is the App Engine Google Group which focuses specifically on the Google Cloud Platform App Engine product. If your issue is not with App Engine and specifically with Google Search returning incorrect results only

[google-appengine] Help me! Recently I can not upload files with blobstore! 503 Error occurred.

2017-09-01 Thread 中村智
GAE/Phthon I could upload files to blobstore until about August 6. But recently I can not upload files to blobstore. I make upload url by blobstore.create_upload_url. I get this url by Ajax and post to this url, then I get white page and the status is 503. I did not change my source code. So I

[google-appengine] Re: Too many GoogleHC/1.0 /_ah/vm_health entries in the log

2017-09-01 Thread Marco Galassi
Any update on this? I also get tons of */_ah/vm_health* entries. I have disabled other health checks to */_ah/health (notice it is NOT vm_health)* as suggested in the docs , but I still get those. On Saturday

[google-appengine] Re: App Engine (flexible) instances starting every 30 seconds

2017-09-01 Thread 'Jordan (Cloud Platform Support)' via Google App Engine
Perfect. All further communications about this issue will occur in your Public Issue Tracker . -- You received this message because you are subscribed to the Google Groups "Google App Engine" group. To unsubscribe from this group and stop receiving ema

[google-appengine] Re: App Engine (flexible) instances starting every 30 seconds

2017-09-01 Thread Alex G
Sorry for posting it in the wrong place. I've now submitted an issue . On Thursday, August 31, 2017 at 11:01:18 PM UTC+2, Jordan (Cloud Platform Support) wrote: > > Google Groups is meant for general product discussions and not for > technical s

[google-appengine] Re: Very slow fetch page queries

2017-09-01 Thread Richard Cheesmar
Interestingly, I have another query which is identical except for one more entity comparison result, next_cursor, more = MyModel.query(MyModel.active == True, MyModel.offline == False, MyModel.location.alpha2 == alpha2).fetch_page(pagination, start_cursor=cursor) This query is infinitely faste

[google-appengine] Re: Very slow fetch page queries

2017-09-01 Thread Richard Cheesmar
Yannick, Could you please point out why the reference to query best practices when the query is clearly defined above. It's a simple page fetch with two conditions, and as described is taking 2 seconds on average to fetch 250 results and 4 seconds for 550 results on the live version... At the

[google-appengine] Re: Very slow fetch page queries

2017-09-01 Thread Richard Cheesmar
Hi, Yannick, Yes they are fairly large and have several pickleProperties with lists of properties and some json elements. Yes an Indexes are there for the two query params active and offline in that model -- You received this message because you are subscribed to the Google Groups "Google Ap