I'm getting this error:
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)
I have a PHP app that is mostly using BigQuery. It's very frustrating that I have no way to debug this.
Nothing here helped me.
What can I do?
app id is: logolapp
Update answers to questions from replies
yes, it's still occurring, not every requests, but something like 1/20 requests. It has happened since I started working on this app, which was about a week ago.
in the logs. in the browser i'm just getting 500
it happens randomly for 1/20 requests or so
i'm putting and querying statistical information in BigQuery.
Another update - my app.yaml:
application: logolapp
version: 1
runtime: php55
api_version: 1
threadsafe: true
handlers:
- url: /static
static_dir: static
- url: /data
script: data.php
- url: /get/.*
script: get.php
- url: /query/.*
script: query.php
- url: /post
script: post.php
- url: /postidm
script: main.php
- url: /info
script: info.php
threadsafevalue set tofalse, as this may be related to the cause of your issue. Also, please let me know whether you are using Memcache extensively within your application. - DoiT International