如何减少 Google 应用引擎后端中的日志服务 RPC
上面是对我的应用程序的单个 GET 请求的 appstats 图像,
此图像显示单个 logservice RPC 的 RPC 跟踪
loservice 调用的数量是否会对应用程序产生负面影响(对于 5 个 urlfetch) RPC 在使用后端时,大约有 80 个日志服务 RPC。我不知道这些 logservice rpc 调用的原因,如何减少 logservice RPC 的数量,
在后端文档中,有关 logservice 的文档有限,
logservice.flush()
如何控制后端中的日志刷新,而不是随机 logservice 调用 谢谢
above is the image of appstats of a single GET request to my app,
this image shows the RPC traces of a single logservice RPC
do the number of loservice calls effect the app negatively, for 5 urlfetch RPC's there are around 80 logsservice RPC's while using a backend. i dont know the reason for these logservice rpc calls, how do i reduce the number of logservice RPC's,
in the backends documentation there is limited documentation about logservice
logservice.flush()
how do i contril log flushing in backends, instead of random logservice calls
thanks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以通过更改 logservice API 设置的一些值来配置日志刷新,记录为 此处(来源)。默认值是每 10 秒、1024 字节或 20 行刷新一次,以先到者为准。您可以单独禁用其中任何一个,或禁用整个自动刷新过程。
完全禁用自动刷新:
每 20 行刷新一次,对时间或字节没有限制:
不要对日志刷新太吝啬 - 正如您所观察到的,RPC 非常快,并且不刷新日志可能会很痛苦当你需要调试某些东西时。
You can configure log flushing by changing some of the values set by the logservice API, documented here (source). The default is to flush every 10 seconds, 1024 bytes, or 20 lines, whichever comes first. You can disable any of them independently, or disable the whole autoflush process.
To disable autoflush entirely:
to flush every 20 lines, with no limit on time or bytes:
Don't be too stingy with log flushing - as you observe, the RPCs are very fast, and not having your logs flushed can be a real pain when you need to debug something.