On Tue, Nov 19, 2013 at 3:28 PM, Stephen <[email protected]> wrote:
> As a refinement of the above: > - periodically parse the request log: > https://developers.google.com/appengine/docs/go/logs/ > The advantage here is that: > - you don't have to pay for front-end instance hours > - your clients are served quickly by Google's edge servers > - few moving parts in the critical path that can fail > > Stephen's idea is also a good option, but note that there is a separate quota and charge for accessing the Logging API: https://developers.google.com/appengine/docs/java/logs/#Java_Quotas_and_limits. In short, it costs $0.12 per each GB of logging data accessed with the initial 100MB free. Also, there is occasionally a delay of a few seconds to a few minutes between a client request ending and when the associated log becomes available in the logging API. If your application is time-sensitive, you may want to try an alternative. ----------------- -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.
