[google-appengine] App Engine Flex "Error: Server Error" occurs often, how to find cause?

2017-03-02 Thread Nickolas Daskalou
Hi, If we hit our Flexible environment service (Python 3 runtime) with a relatively low concurrency level using ApacheBench, we get this returned more often than not: Error: Server ErrorThe server encountered a temporary error and could not complete your request. Please try again in 30 seconds.

Re: [google-appengine] Re: Custom domain redirecting to appspot URL

2017-03-02 Thread Nickolas Daskalou
? Nick On 03/03/2017 2:02 AM, "'Lorne Kligerman' via Google App Engine" < google-appengine@googlegroups.com> wrote: > If you haven't already noticed the lack of a redirect for your app, it > should happen very soon. Thanks! > > On Mar 2, 2017 3:42 AM, "Nickolas Da

[google-appengine] RE: Deployment Failures and Memcache Unavailability Due to Underlying Component

2017-05-10 Thread Nickolas Daskalou
For anyone else having this issue We found that during this time, even if a deployment succeeds, the underlying App Engine dispatcher could also "break" during a deployment. The only way to fix it was to push our existing dispatch rules again (for Python standard: "appcfg.py

Re: [google-appengine] Best Practices for Search API?

2017-06-09 Thread Nickolas Daskalou
Jeff, were you storing docs in the Search API somewhat intelligently, e.g. using short field names, "0" instead of "false" for boolean values etc., or you just sent documents to the Search API without much thought and it was still efficiently storing them? Nick On 10/06/2017 8:40 AM, "Jeff

Re: [google-appengine] Re: Search limit

2017-06-21 Thread Nickolas Daskalou
That's a nice way of working around the rate limits Emlyn. In your _post_put function you can also compare a hash of the last document you put in the Search API index for the Datastore entity, and only send to the Search API if the current document's hash is different. To make it fast and

[google-appengine] UnicodeDecodeError when extracting image metadata using the Image Service

2017-05-23 Thread Nickolas Daskalou
Looks like this has been happening for at least one week, not sure beyond that. In the Python runtime, when calling images.execute_transforms() with parse_source_metadata=True, for a UnicodeDecodeError is *always* raised for certain images. The images are valid images. Last part of Traceback:

[google-appengine] Re: UnicodeDecodeError when extracting image metadata using the Image Service

2017-05-29 Thread Nickolas Daskalou
Hi George, I'm pretty sure I replied to you in a private message, but in case you didn't receive it... For privacy reason I can send you a URL of an image in a private message, would that suffice? Thanks, Nick On Friday, 26 May 2017 00:48:51 UTC+10, George (Cloud Platform Support) wrote: >

Re: [google-appengine] Re: Anyone experiencing the new console log view being a bit busted?

2017-06-14 Thread Nickolas Daskalou
Hi Erik, On my side, for the projects we work on, we would prefer one single entry for each request (no matter how many logging items it contains). By the way, I've noticed each log item now has a link to the line in the source code which generated the log item (for Python at least). This is a

Re: [google-appengine] Is anyone interested in service level objective (SLO) monitoring?

2017-06-16 Thread Nickolas Daskalou
Hi Jay, I'm interesting in learning about this and trying it out. Thanks, Nick On 16 June 2017 at 23:35, 'Jay Judkowitz' via Google App Engine < google-appengine@googlegroups.com> wrote: > Hello App Engine customers, > > I'm a Google Cloud PM working in Stackdriver. One of the projects

Re: [google-appengine] App Engine Firewall survey

2017-09-20 Thread Nickolas Daskalou
Hey Lorne, This looks good. Is it effectively a UI for the existing dos.yaml (Python) solution, or does it provide more functionality than that? Thanks, Nick On 21 September 2017 at 08:16, 'Lorne Kligerman' via Google App Engine < google-appengine@googlegroups.com> wrote: > Hey there folks,

Re: [google-appengine] Re: did App Engine change instance scheduler algorithm in the past month?

2018-05-07 Thread Nickolas Daskalou
Our bills increased 30-40% in March and April compared with previous months, e.g. for one of our projects: We were definitely surprised by the big increase and planned on investigating soon. The new scheduler could be the culprit. Who can we ping at Google to look into this further? Nick On

Re: [google-appengine] Re: microservices with the edge server pattern on App Engine

2018-02-26 Thread Nickolas Daskalou
Tamas, You can implement application-level logic to only allow requests to your service-name.project-id.appspot.com microservices from your own App Engine projects by inspecting the *X-Appengine-Inbound-Appid* header. More information can be found here for Python

Re: [google-appengine] Re: Diving into App Engine is soooooooooooo hard now - My analysis

2020-03-16 Thread Nickolas Daskalou
Same experience for us. 10 years ago App Engine was a revolution. Now it's almost revolting. Agree with the hard to set up development environment for the newer App Engine installments. Other pain points too, like no shared Memcache replacement (we're told NDB for Python 3 is fully ready, when

Re: [google-appengine] Re: Checking which indexes are used

2022-01-11 Thread Nickolas Daskalou
You could look into the db package and try use an existing hook called before/after a query is made, then log details of the entity kinds being queried (if it's possible to extract that info). Using an expiring Memcache flag for that particular query/entity combination would ensure you're not

Re: [google-appengine] 50k pages hosting on nodejs appengine

2022-03-28 Thread Nickolas Daskalou
App Engine is great if you actually have a dynamic backend, but if you're only serving static files, try Cloudflare Pages . Dead simple to deploy and update vit Git, and cheap! There's a 20,000 file limit per site, however this appears to be a soft limit (and you

<    1   2   3