On Tue, Jan 28, 2014 at 8:35 AM, Dragutin Miletic <[email protected]> wrote:
> Requests are sent to static 1x1px 43byte static image, response with > headers it is around 600byte total. > > Each request should be logged in access log for further processing (not in > real-time), are requests logged and are access logs available automatically > on GAE? > Yes, requests are automatically logged and are available through the Logs API: https://developers.google.com/appengine/docs/java/logs/ . It's easy enough to build your own analyzer to run through the logs and collate data, but you could also export your logs into BigQuery and do any analysis necessary: http://googleappengine.blogspot.com/2012/07/analyzing-your-google-app-engine-logs.html On Tue, Jan 28, 2014 at 8:35 AM, Dragutin Miletic <[email protected]> wrote: > For 1B requests/month this give us around 400 req/sec on average, of > course peaks happen that are usually several times that number. > > I am trying to estimate costs for this type of usage, and type/number of > instances this will require. > > Are there any kind of hard limit in req/sec we can have? > There's no hard limit, but of course you'll need to pay for bandwidth used and so forth. On Tue, Jan 28, 2014 at 8:35 AM, Dragutin Miletic <[email protected]> wrote: > I am trying to estimate costs for this type of usage, and type/number of > instances this will require. > Just to clarify, static assets such as images do not cause instances to launch. Instances only launch to handle application code. ----------------- -Vinny P Technology & Media Advisor Chicago, IL App Engine Code Samples: http://www.learntogoogleit.com -- You received this message because you are subscribed to the Google Groups "Google App Engine" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. To post to this group, send email to [email protected]. Visit this group at http://groups.google.com/group/google-appengine. For more options, visit https://groups.google.com/groups/opt_out.
