1. 程式人生 > >如何在ui上查看storm集群和任務

如何在ui上查看storm集群和任務

actions ask 需要 code sum 根據 nim output logs

主頁面上,
cluster summary:集群的概況
nimbus summary:
Supervisor Summary:
Nimbus Configuration

Topology Summary:最重要的
有個search窗口,根據storm任務的topology name,搜索到對應任務,點擊進入
一個storm集群上跑的任務的topology name 是唯一的,否則提交會出錯
點擊到一個具體topology頁面之後,

Topology summary:概況
Topology actions:對topology可以在頁面進行操作
Topology stats:最近不同時間段的統計數據
spouts:所有的不同的spout,每個spout對應總共有多少executor,總共有多少個task,每個executor運行的task數量等於兩者相除
    想查看具體某個spout或者bolt (都屬於component)的運行情況,只需要點擊對應id上的鏈接
        Component summary:
        Component actions:對這個component進行操作
        Spout stats:不同時間窗口的統計結果
        Output stats:總的輸出的統計
        Executors:具體的執行線程,這個很重要
            點擊具體某個executor的port連接,可以查看日誌
            這個上面打出來的日誌,是包含整個worker進程所有executor線程的日誌
bolts:同上
Worker Resources:具體的worker進程
Topology Visualization:可視化
Topology Configuration:整個topology的配置

如何在ui上查看storm集群和任務