• 设为首页
  • 点击收藏
  • 手机版
    手机扫一扫访问
    迪恩网络手机版
  • 关注官方公众号
    微信扫一扫关注
    迪恩网络公众号

Java AuditConstants类代码示例

原作者: [db:作者] 来自: [db:来源] 收藏 邀请

本文整理汇总了Java中org.apache.hadoop.yarn.server.nodemanager.NMAuditLogger.AuditConstants的典型用法代码示例。如果您正苦于以下问题:Java AuditConstants类的具体用法?Java AuditConstants怎么用?Java AuditConstants使用的例子?那么恭喜您, 这里精选的类代码示例或许可以为您提供帮助。



AuditConstants类属于org.apache.hadoop.yarn.server.nodemanager.NMAuditLogger包,在下文中一共展示了AuditConstants类的10个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于我们的系统推荐出更棒的Java代码示例。

示例1: stopContainerInternal

import org.apache.hadoop.yarn.server.nodemanager.NMAuditLogger.AuditConstants; //导入依赖的package包/类
@SuppressWarnings("unchecked")
private void stopContainerInternal(NMTokenIdentifier nmTokenIdentifier,
    ContainerId containerID) throws YarnException {
  String containerIDStr = containerID.toString();
  Container container = this.context.getContainers().get(containerID);
  LOG.info("Stopping container with container Id: " + containerIDStr);
  authorizeGetAndStopContainerRequest(containerID, container, true,
    nmTokenIdentifier);

  dispatcher.getEventHandler().handle(
    new ContainerKillEvent(containerID,
      "Container killed by the ApplicationMaster."));

  NMAuditLogger.logSuccess(container.getUser(),
    AuditConstants.STOP_CONTAINER, "ContainerManageImpl", containerID
      .getApplicationAttemptId().getApplicationId(), containerID);

  // TODO: Move this code to appropriate place once kill_container is
  // implemented.
  nodeStatusUpdater.sendOutofBandHeartBeat();
}
 
开发者ID:ict-carch,项目名称:hadoop-plus,代码行数:22,代码来源:ContainerManagerImpl.java


示例2: transition

import org.apache.hadoop.yarn.server.nodemanager.NMAuditLogger.AuditConstants; //导入依赖的package包/类
@Override
public void transition(ContainerImpl container, ContainerEvent event) {
  if (container.recoveredStatus == RecoveredContainerStatus.COMPLETED) {
    container.sendFinishedEvents();
  } else {
    ContainerKillEvent killEvent = (ContainerKillEvent) event;
    container.exitCode = killEvent.getContainerExitStatus();
    container.addDiagnostics(killEvent.getDiagnostic(), "\n");
    container.addDiagnostics("Container is killed before being launched.\n");
    container.metrics.killedContainer();
    NMAuditLogger.logSuccess(container.user,
        AuditConstants.FINISH_KILLED_CONTAINER, "ContainerImpl",
        container.containerId.getApplicationAttemptId().getApplicationId(),
        container.containerId);
    super.transition(container, event);
  }
}
 
开发者ID:hopshadoop,项目名称:hops,代码行数:18,代码来源:ContainerImpl.java


示例3: stopContainerInternal

import org.apache.hadoop.yarn.server.nodemanager.NMAuditLogger.AuditConstants; //导入依赖的package包/类
@SuppressWarnings("unchecked")
private void stopContainerInternal(NMTokenIdentifier nmTokenIdentifier,
    ContainerId containerID) throws YarnException, IOException {
  String containerIDStr = containerID.toString();
  Container container = this.context.getContainers().get(containerID);
  LOG.info("Stopping container with container Id: " + containerIDStr);
  authorizeGetAndStopContainerRequest(containerID, container, true,
    nmTokenIdentifier);

  if (container == null) {
    if (!nodeStatusUpdater.isContainerRecentlyStopped(containerID)) {
      throw RPCUtil.getRemoteException("Container " + containerIDStr
        + " is not handled by this NodeManager");
    }
  } else {
    context.getNMStateStore().storeContainerKilled(containerID);
    dispatcher.getEventHandler().handle(
      new ContainerKillEvent(containerID,
          ContainerExitStatus.KILLED_BY_APPMASTER,
          "Container killed by the ApplicationMaster."));

    NMAuditLogger.logSuccess(container.getUser(),    
      AuditConstants.STOP_CONTAINER, "ContainerManageImpl", containerID
        .getApplicationAttemptId().getApplicationId(), containerID);

    // TODO: Move this code to appropriate place once kill_container is
    // implemented.
    nodeStatusUpdater.sendOutofBandHeartBeat();
  }
}
 
开发者ID:naver,项目名称:hadoop,代码行数:31,代码来源:ContainerManagerImpl.java


示例4: authorizeGetAndStopContainerRequest

import org.apache.hadoop.yarn.server.nodemanager.NMAuditLogger.AuditConstants; //导入依赖的package包/类
@Private
@VisibleForTesting
protected void authorizeGetAndStopContainerRequest(ContainerId containerId,
    Container container, boolean stopRequest, NMTokenIdentifier identifier)
    throws YarnException {
  /*
   * For get/stop container status; we need to verify that 1) User (NMToken)
   * application attempt only has started container. 2) Requested containerId
   * belongs to the same application attempt (NMToken) which was used. (Note:-
   * This will prevent user in knowing another application's containers).
   */
  ApplicationId nmTokenAppId =
      identifier.getApplicationAttemptId().getApplicationId();
  
  if ((!nmTokenAppId.equals(containerId.getApplicationAttemptId().getApplicationId()))
      || (container != null && !nmTokenAppId.equals(container
          .getContainerId().getApplicationAttemptId().getApplicationId()))) {
    if (stopRequest) {
      LOG.warn(identifier.getApplicationAttemptId()
          + " attempted to stop non-application container : "
          + container.getContainerId());
      NMAuditLogger.logFailure("UnknownUser", AuditConstants.STOP_CONTAINER,
        "ContainerManagerImpl", "Trying to stop unknown container!",
        nmTokenAppId, container.getContainerId());
    } else {
      LOG.warn(identifier.getApplicationAttemptId()
          + " attempted to get status for non-application container : "
          + container.getContainerId());
    }
  }
}
 
开发者ID:naver,项目名称:hadoop,代码行数:32,代码来源:ContainerManagerImpl.java


示例5: transition

import org.apache.hadoop.yarn.server.nodemanager.NMAuditLogger.AuditConstants; //导入依赖的package包/类
@Override
public void transition(ContainerImpl container, ContainerEvent event) {
  ContainerKillEvent killEvent = (ContainerKillEvent) event;
  container.exitCode = killEvent.getContainerExitStatus();
  container.addDiagnostics(killEvent.getDiagnostic(), "\n");
  container.addDiagnostics("Container is killed before being launched.\n");
  container.metrics.killedContainer();
  NMAuditLogger.logSuccess(container.user,
      AuditConstants.FINISH_KILLED_CONTAINER, "ContainerImpl",
      container.containerId.getApplicationAttemptId().getApplicationId(),
      container.containerId);
  super.transition(container, event);
}
 
开发者ID:naver,项目名称:hadoop,代码行数:14,代码来源:ContainerImpl.java


示例6: authorizeGetAndStopContainerRequest

import org.apache.hadoop.yarn.server.nodemanager.NMAuditLogger.AuditConstants; //导入依赖的package包/类
@Private
@VisibleForTesting
protected void authorizeGetAndStopContainerRequest(ContainerId containerId,
    Container container, boolean stopRequest, NMTokenIdentifier identifier)
    throws YarnException {
  if (identifier == null) {
    throw RPCUtil.getRemoteException(INVALID_NMTOKEN_MSG);
  }
  /*
   * For get/stop container status; we need to verify that 1) User (NMToken)
   * application attempt only has started container. 2) Requested containerId
   * belongs to the same application attempt (NMToken) which was used. (Note:-
   * This will prevent user in knowing another application's containers).
   */
  ApplicationId nmTokenAppId =
      identifier.getApplicationAttemptId().getApplicationId();
  
  if ((!nmTokenAppId.equals(containerId.getApplicationAttemptId().getApplicationId()))
      || (container != null && !nmTokenAppId.equals(container
          .getContainerId().getApplicationAttemptId().getApplicationId()))) {
    if (stopRequest) {
      LOG.warn(identifier.getApplicationAttemptId()
          + " attempted to stop non-application container : "
          + container.getContainerId());
      NMAuditLogger.logFailure("UnknownUser", AuditConstants.STOP_CONTAINER,
        "ContainerManagerImpl", "Trying to stop unknown container!",
        nmTokenAppId, container.getContainerId());
    } else {
      LOG.warn(identifier.getApplicationAttemptId()
          + " attempted to get status for non-application container : "
          + container.getContainerId());
    }
  }
}
 
开发者ID:aliyun-beta,项目名称:aliyun-oss-hadoop-fs,代码行数:35,代码来源:ContainerManagerImpl.java


示例7: authorizeGetAndStopContainerRequest

import org.apache.hadoop.yarn.server.nodemanager.NMAuditLogger.AuditConstants; //导入依赖的package包/类
@Private
@VisibleForTesting
protected void authorizeGetAndStopContainerRequest(ContainerId containerId,
    Container container, boolean stopRequest, NMTokenIdentifier identifier)
    throws YarnException {
  /*
   * For get/stop container status; we need to verify that 1) User (NMToken)
   * application attempt only has started container. 2) Requested containerId
   * belongs to the same application attempt (NMToken) which was used. (Note:-
   * This will prevent user in knowing another application's containers).
   */
  ApplicationId nmTokenAppId =
      identifier.getApplicationAttemptId().getApplicationId();
  if ((!nmTokenAppId.equals(containerId.getApplicationAttemptId().getApplicationId()))
      || (container != null && !nmTokenAppId.equals(container
        .getContainerId().getApplicationAttemptId().getApplicationId()))) {
    if (stopRequest) {
      LOG.warn(identifier.getApplicationAttemptId()
          + " attempted to stop non-application container : "
          + container.getContainerId());
      NMAuditLogger.logFailure("UnknownUser", AuditConstants.STOP_CONTAINER,
        "ContainerManagerImpl", "Trying to stop unknown container!",
        nmTokenAppId, container.getContainerId());
    } else {
      LOG.warn(identifier.getApplicationAttemptId()
          + " attempted to get status for non-application container : "
          + container.getContainerId());
    }
  }
}
 
开发者ID:Nextzero,项目名称:hadoop-2.6.0-cdh5.4.3,代码行数:31,代码来源:ContainerManagerImpl.java


示例8: authorizeGetAndStopContainerRequest

import org.apache.hadoop.yarn.server.nodemanager.NMAuditLogger.AuditConstants; //导入依赖的package包/类
@Private
@VisibleForTesting
protected void authorizeGetAndStopContainerRequest(ContainerId containerId,
    Container container, boolean stopRequest, NMTokenIdentifier identifier)
    throws YarnException {
  /*
   * For get/stop container status; we need to verify that 1) User (NMToken)
   * application attempt only has started container. 2) Requested containerId
   * belongs to the same application attempt (NMToken) which was used. (Note:-
   * This will prevent user in knowing another application's containers).
   */

  if ((!identifier.getApplicationAttemptId().equals(
    containerId.getApplicationAttemptId()))
      || (container != null && !identifier.getApplicationAttemptId().equals(
        container.getContainerId().getApplicationAttemptId()))) {
    if (stopRequest) {
      LOG.warn(identifier.getApplicationAttemptId()
          + " attempted to stop non-application container : "
          + container.getContainerId().toString());
      NMAuditLogger.logFailure("UnknownUser", AuditConstants.STOP_CONTAINER,
        "ContainerManagerImpl", "Trying to stop unknown container!",
        identifier.getApplicationAttemptId().getApplicationId(),
        container.getContainerId());
    } else {
      LOG.warn(identifier.getApplicationAttemptId()
          + " attempted to get get status for non-application container : "
          + container.getContainerId().toString());
    }
    throw RPCUtil.getRemoteException("Container " + containerId.toString()
        + " is not started by this application attempt.");
  }

  if (container == null) {
    throw RPCUtil.getRemoteException("Container " + containerId.toString()
        + " is not handled by this NodeManager");
  }
}
 
开发者ID:ict-carch,项目名称:hadoop-plus,代码行数:39,代码来源:ContainerManagerImpl.java


示例9: stopContainerInternal

import org.apache.hadoop.yarn.server.nodemanager.NMAuditLogger.AuditConstants; //导入依赖的package包/类
@SuppressWarnings("unchecked")
private void stopContainerInternal(NMTokenIdentifier nmTokenIdentifier,
    ContainerId containerID) throws YarnException, IOException {
  String containerIDStr = containerID.toString();
  Container container = this.context.getContainers().get(containerID);
  LOG.info("Stopping container with container Id: " + containerIDStr);
  authorizeGetAndStopContainerRequest(containerID, container, true,
    nmTokenIdentifier);

  if (container == null) {
    if (!nodeStatusUpdater.isContainerRecentlyStopped(containerID)) {
      throw RPCUtil.getRemoteException("Container " + containerIDStr
        + " is not handled by this NodeManager");
    }
  } else {
    if (container.isRecovering()) {
      throw new NMNotYetReadyException("Container " + containerIDStr
          + " is recovering, try later");
    }
    context.getNMStateStore().storeContainerKilled(containerID);
    dispatcher.getEventHandler().handle(
      new ContainerKillEvent(containerID,
          ContainerExitStatus.KILLED_BY_APPMASTER,
          "Container killed by the ApplicationMaster."));

    NMAuditLogger.logSuccess(container.getUser(),    
      AuditConstants.STOP_CONTAINER, "ContainerManageImpl", containerID
        .getApplicationAttemptId().getApplicationId(), containerID);
  }
}
 
开发者ID:hopshadoop,项目名称:hops,代码行数:31,代码来源:ContainerManagerImpl.java


示例10: authorizeGetAndStopContainerRequest

import org.apache.hadoop.yarn.server.nodemanager.NMAuditLogger.AuditConstants; //导入依赖的package包/类
@Private
@VisibleForTesting
protected void authorizeGetAndStopContainerRequest(ContainerId containerId,
    Container container, boolean stopRequest, NMTokenIdentifier identifier)
    throws YarnException {
  if (identifier == null) {
    throw RPCUtil.getRemoteException(INVALID_NMTOKEN_MSG);
  }
  /*
   * For get/stop container status; we need to verify that 1) User (NMToken)
   * application attempt only has started container. 2) Requested containerId
   * belongs to the same application attempt (NMToken) which was used. (Note:-
   * This will prevent user in knowing another application's containers).
   */
  ApplicationId nmTokenAppId =
      identifier.getApplicationAttemptId().getApplicationId();
  
  if ((!nmTokenAppId.equals(containerId.getApplicationAttemptId().getApplicationId()))
      || (container != null && !nmTokenAppId.equals(container
          .getContainerId().getApplicationAttemptId().getApplicationId()))) {
    String msg;
    if (stopRequest) {
      msg = identifier.getApplicationAttemptId()
          + " attempted to stop non-application container : "
          + containerId;
      NMAuditLogger.logFailure("UnknownUser", AuditConstants.STOP_CONTAINER,
          "ContainerManagerImpl", "Trying to stop unknown container!",
          nmTokenAppId, containerId);
    } else {
      msg = identifier.getApplicationAttemptId()
          + " attempted to get status for non-application container : "
          + containerId;
    }
    LOG.warn(msg);
    throw RPCUtil.getRemoteException(msg);
  }
}
 
开发者ID:hopshadoop,项目名称:hops,代码行数:38,代码来源:ContainerManagerImpl.java



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


鲜花

握手

雷人

路过

鸡蛋
该文章已有0人参与评论

请发表评论

全部评论

专题导读
上一篇:
Java BeanProperty类代码示例发布时间:2022-05-22
下一篇:
Java FairSharePolicy类代码示例发布时间:2022-05-22
热门推荐
阅读排行榜

扫描微信二维码

查看手机版网站

随时了解更新最新资讯

139-2527-9053

在线客服(服务时间 9:00~18:00)

在线QQ客服
地址:深圳市南山区西丽大学城创智工业园
电邮:jeky_zhao#qq.com
移动电话:139-2527-9053

Powered by 互联科技 X3.4© 2001-2213 极客世界.|Sitemap