Skip to content Skip to sidebar Skip to footer

Resident Backend Google App Engine "/_ah/background" (Python)

Can someone help me understand what '/_ah/background' is in terms of google app engine (Python). I have a resident backend running, and I am seeing requests being made to that end

Solution 1:

I believe /_ah/background requests aren't actually HTTP requests, they're background threads. App Engine uses /_ah/background as a placeholder wherever it needs to group something by request, e.g. log messages. This matches what I see in my backends that use background threads.

(I could swear I read this in the docs somewhere recently, but I haven't found where yet.)


Solution 2:

Any URL that starts with "/_ah/" is a reserved AppEngine URL. These are used for internal AppEngine tasks, you really shouldn't need to worry about them.

What does _ah mean in Google App Engine?

https://developers.google.com/appengine/docs/python/config/appconfig?hl=it-IT#Reserved_URLs


Post a Comment for "Resident Backend Google App Engine "/_ah/background" (Python)"