probably at the beach
probably at the beach

Reputation: 15217

Google App Engine request being executed multiple times

I have an issue with our Python 2.7 Google App Engine project where after a lot of research it appears as though App Engine is repeatedly sending through the same request to our servers. Is anyone else experiencing this issue?

EDIT:

It's a standard request with all the same parameters as it was first sent with (some of which are 15 days old now). I'm wandering if it's a similar situation to this https://groups.google.com/forum/#!topic/google-appengine-downtime-notify/9fAYP7UyppQ

Upvotes: 1

Views: 315

Answers (1)

tylerl
tylerl

Reputation: 30857

Typically App Engine doesn't send requests, it's the framework you use to handle requests.

If you're getting duplicate requests coming in, you should look to see where it's coming from. If it's coming from an app engine server to your own external server, then somebody is running some sort of process on their app engine account that's accessing data from your server during its execution.

The details, including what you would do about it, are all situation-dependent. There's no catch-all response. Just be aware that, yes, any computer on the Internet can make web requests to any other. And that includes app engine (in both directions).

Upvotes: 1

Related Questions