List of usage examples for org.apache.hadoop.ipc CallerContext setCurrent
public static void setCurrent(CallerContext callerContext)
From source file:org.apache.tez.hadoop.shim.HadoopShim28.java
License:Apache License
@Override public void setHadoopCallerContext(String context) { CallerContext.setCurrent(new CallerContext.Builder(context).build()); }
From source file:org.apache.tez.hadoop.shim.HadoopShim28.java
License:Apache License
@Override public void clearHadoopCallerContext() { CallerContext.setCurrent(nullCallerContext); }