当前位置: 首页>>代码示例>>Java>>正文


Java ReflectionUtils.logThreadInfo方法代码示例

本文整理汇总了Java中org.apache.hadoop.util.ReflectionUtils.logThreadInfo方法的典型用法代码示例。如果您正苦于以下问题:Java ReflectionUtils.logThreadInfo方法的具体用法?Java ReflectionUtils.logThreadInfo怎么用?Java ReflectionUtils.logThreadInfo使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在org.apache.hadoop.util.ReflectionUtils的用法示例。


在下文中一共展示了ReflectionUtils.logThreadInfo方法的3个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。

示例1: doGet

import org.apache.hadoop.util.ReflectionUtils; //导入方法依赖的package包/类
@Override
public void doGet(HttpServletRequest request, HttpServletResponse response)
  throws ServletException, IOException {
  if (!HttpServer2.isInstrumentationAccessAllowed(getServletContext(),
                                                  request, response)) {
    return;
  }
  response.setContentType("text/plain; charset=UTF-8");
  try (PrintStream out = new PrintStream(
      response.getOutputStream(), false, "UTF-8")) {
    ReflectionUtils.printThreadInfo(out, "");
  }
  ReflectionUtils.logThreadInfo(LOG, "jsp requested", 1);
}
 
开发者ID:nucypher,项目名称:hadoop-oss,代码行数:15,代码来源:HttpServer2.java

示例2: doGet

import org.apache.hadoop.util.ReflectionUtils; //导入方法依赖的package包/类
@Override
public void doGet(HttpServletRequest request, HttpServletResponse response)
  throws ServletException, IOException {
  if (!HttpServer.isInstrumentationAccessAllowed(getServletContext(),
                                                 request, response)) {
    return;
  }
  response.setContentType("text/plain; charset=UTF-8");
  try (PrintStream out = new PrintStream(
      response.getOutputStream(), false, "UTF-8")) {
    ReflectionUtils.printThreadInfo(out, "");
  }
  ReflectionUtils.logThreadInfo(LOG, "jsp requested", 1);      
}
 
开发者ID:naver,项目名称:hadoop,代码行数:15,代码来源:HttpServer.java

示例3: run

import org.apache.hadoop.util.ReflectionUtils; //导入方法依赖的package包/类
/** 
 * The communication thread handles communication with the parent (Task Tracker). 
 * It sends progress updates if progress has been made or if the task needs to 
 * let the parent know that it's alive. It also pings the parent to see if it's alive. 
 */
public void run() {
  final int MAX_RETRIES = 3;
  int remainingRetries = MAX_RETRIES;
  // get current flag value and reset it as well
  boolean sendProgress = resetProgressFlag();
  while (!taskDone.get()) {
    synchronized (lock) {
      done = false;
    }
    try {
      boolean taskFound = true; // whether TT knows about this task
      // sleep for a bit
      synchronized(lock) {
        if (taskDone.get()) {
          break;
        }
        lock.wait(PROGRESS_INTERVAL);
      }
      if (taskDone.get()) {
        break;
      }

      if (sendProgress) {
        // we need to send progress update
        updateCounters();
        taskStatus.statusUpdate(taskProgress.get(),
                                taskProgress.toString(), 
                                counters);
        taskFound = umbilical.statusUpdate(taskId, taskStatus);
        taskStatus.clearStatus();
      }
      else {
        // send ping 
        taskFound = umbilical.ping(taskId);
      }

      // if Task Tracker is not aware of our task ID (probably because it died and 
      // came back up), kill ourselves
      if (!taskFound) {
        LOG.warn("Parent died.  Exiting "+taskId);
        resetDoneFlag();
        System.exit(66);
      }

      sendProgress = resetProgressFlag(); 
      remainingRetries = MAX_RETRIES;
    } 
    catch (Throwable t) {
      LOG.info("Communication exception: " + StringUtils.stringifyException(t));
      remainingRetries -=1;
      if (remainingRetries == 0) {
        ReflectionUtils.logThreadInfo(LOG, "Communication exception", 0);
        LOG.warn("Last retry, killing "+taskId);
        resetDoneFlag();
        System.exit(65);
      }
    }
  }
  //Notify that we are done with the work
  resetDoneFlag();
}
 
开发者ID:naver,项目名称:hadoop,代码行数:67,代码来源:Task.java


注:本文中的org.apache.hadoop.util.ReflectionUtils.logThreadInfo方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。