As Steve Jobs said in this video
https://www.youtube.com/watch?v=dxNQebY-Qdw
"Don't be afraid to ask for help".
Hello dev community, our team have been developing this RESTful API with Slim PHP as router and Propel ORM with MySQL, deploying it as a service in Google App Engine with this app.yaml config
service: api
runtime: php55
api_version: 1
threadsafe: yes
instance_class: F1
automatic_scaling:
min_idle_instances: automatic
max_idle_instances: automatic
min_pending_latency: automatic
max_pending_latency: automatic
skip_files:
- ^vendor/(.*/)+[Tt]ests/.*$
- ^\.(.*)
handlers:
- url: .*
script: app.phpto be consumed by an Ember.js web app, through all the development we've been receiving strange patternless server crashes 500s, more precisely:
500 Server Error Error: Server Error The server encountered an error and could not complete your request. Please try again in 30 seconds.
with App Engine Log.
A problem was encountered with the process that handled this request, causing it to exit. This is likely to cause a new process to be used for the next request to your application. (Error code 204)
in random endpoints, that otherwise works fine 99% of the time, we, of course, don't feel like going into production with these random crashes.
What we have tried:
Sincerely, thanks in advance.