Reputation: 599
I have a Google App Engine server up and running. I don't have any cron jobs or anything that I am aware that calls the default website url. I have had over 70,000 requests for the _ah/warmup in the last 24 hours. How can I figure where this traffic is coming from? Is this a denial of service attack on the server?
Upvotes: 0
Views: 1534
Reputation: 4692
The warmup request is, as explained by the Google Documentation, an internal call that is made whenever you spin up new instances.
Without any more information, the only thing 70 000 requests to that URL means is that your scaling is maybe a bit too aggressive and your app is spinning too many instances.
Upvotes: 1