View Javadoc

1   /**
2    *
3    * Licensed to the Apache Software Foundation (ASF) under one
4    * or more contributor license agreements.  See the NOTICE file
5    * distributed with this work for additional information
6    * regarding copyright ownership.  The ASF licenses this file
7    * to you under the Apache License, Version 2.0 (the
8    * "License"); you may not use this file except in compliance
9    * with the License.  You may obtain a copy of the License at
10   *
11   *     http://www.apache.org/licenses/LICENSE-2.0
12   *
13   * Unless required by applicable law or agreed to in writing, software
14   * distributed under the License is distributed on an "AS IS" BASIS,
15   * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
16   * See the License for the specific language governing permissions and
17   * limitations under the License.
18   */
19  package org.apache.hadoop.hbase.regionserver;
20  
21  import java.io.IOException;
22  import java.io.OutputStream;
23  import java.io.PrintWriter;
24  import java.util.Date;
25  
26  import javax.servlet.http.HttpServletRequest;
27  import javax.servlet.http.HttpServletResponse;
28  
29  import org.apache.hadoop.classification.InterfaceAudience;
30  import org.apache.hadoop.conf.Configuration;
31  import org.apache.hadoop.hbase.monitoring.LogMonitoring;
32  import org.apache.hadoop.hbase.monitoring.StateDumpServlet;
33  import org.apache.hadoop.hbase.monitoring.TaskMonitor;
34  import org.apache.hadoop.util.ReflectionUtils;
35  
36  @InterfaceAudience.Private
37  public class RSDumpServlet extends StateDumpServlet {
38    private static final long serialVersionUID = 1L;
39    private static final String LINE =
40      "===========================================================";
41    
42    @Override
43    public void doGet(HttpServletRequest request, HttpServletResponse response)
44        throws IOException {
45      HRegionServer hrs = (HRegionServer)getServletContext().getAttribute(
46          HRegionServer.REGIONSERVER);
47      assert hrs != null : "No RS in context!";
48      
49      Configuration hrsconf = (Configuration)getServletContext().getAttribute(
50          HRegionServer.REGIONSERVER_CONF);
51      assert hrsconf != null : "No RS conf in context";
52  
53      response.setContentType("text/plain");
54      OutputStream os = response.getOutputStream();
55      PrintWriter out = new PrintWriter(os);
56      
57      out.println("Master status for " + hrs.getServerName()
58          + " as of " + new Date());
59      
60      out.println("\n\nVersion Info:");
61      out.println(LINE);
62      dumpVersionInfo(out);
63  
64      out.println("\n\nTasks:");
65      out.println(LINE);
66      TaskMonitor.get().dumpAsText(out);
67      
68      out.println("\n\nExecutors:");
69      out.println(LINE);
70      dumpExecutors(hrs.getExecutorService(), out);
71      
72      out.println("\n\nStacks:");
73      out.println(LINE);
74      ReflectionUtils.printThreadInfo(out, "");
75      
76      out.println("\n\nRS Configuration:");
77      out.println(LINE);
78      Configuration conf = hrs.getConfiguration();
79      out.flush();
80      conf.writeXml(os);
81      os.flush();
82      
83      out.println("\n\nLogs");
84      out.println(LINE);
85      long tailKb = getTailKbParam(request);
86      LogMonitoring.dumpTailOfLogs(out, tailKb);
87      
88      out.println("\n\nRS Queue:");
89      out.println(LINE);
90      if(isShowQueueDump(hrsconf)) {
91        dumpQueue(hrs, out);
92      } 
93      
94      out.flush();
95    }
96    
97    private boolean isShowQueueDump(Configuration conf){
98      return conf.getBoolean("hbase.regionserver.servlet.show.queuedump", true);
99    }
100     
101   private void dumpQueue(HRegionServer hrs, PrintWriter out)
102       throws IOException {
103     // 1. Print out Compaction/Split Queue
104     out.println("Compaction/Split Queue summary: " 
105         + hrs.compactSplitThread.toString() );
106     out.println(hrs.compactSplitThread.dumpQueue());
107 
108     // 2. Print out flush Queue
109     out.println("\nFlush Queue summary: "
110         + hrs.cacheFlusher.toString());
111     out.println(hrs.cacheFlusher.dumpQueue());
112   }
113   
114 }