码迷,mamicode.com
首页 > 其他好文 > 详细

storm metrics

时间:2015-09-15 16:28:36      阅读:164      评论:0      收藏:0      [点我收藏+]

标签:

判断storm的一个topology性能如何,主要关注capacity指标。官方对此有一段描述:

 The "capacity" metric is very useful and tells you what % of the time in the last 10 minutes the bolt spent executing tuples. If this value is close to 1, then the bolt is "at capacity" and is a bottleneck in your topology. The solution to at-capacity bolts is to increase the parallelism of that bolt.

以下是对这些指标的描述以及计算方式:

Capacity =  Execute latency  *   Executed over a window  /   Window size

To calculate the capacity for the first executor (Id: 10-10), Capacity = 1916.9 * 200 / 595000 = 0.644

?技术分享

To calculate the overall measurements for all the executors in one type of bolt, use the metrics as:

Capacity = Max(executor Capacity) Execute latency = Average(executor Execute latency) Executed = Sum(executor Executed)

技术分享

?

storm metrics

标签:

原文地址:http://www.cnblogs.com/g4279/p/4810537.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!