org.apache.hadoop.mapreduce.filecache.DistributedCache#getCacheArchives ( )源码实例Demo

下面列出了org.apache.hadoop.mapreduce.filecache.DistributedCache#getCacheArchives ( ) 实例代码,或者点击链接到github查看源代码,也可以在右侧发表评论。

源代码1 项目: hadoop   文件: JobContextImpl.java
/**
 * Get cache archives set in the Configuration
 * @return A URI array of the caches set in the Configuration
 * @throws IOException
 */
public URI[] getCacheArchives() throws IOException {
  return DistributedCache.getCacheArchives(conf);
}
 
源代码2 项目: big-c   文件: JobContextImpl.java
/**
 * Get cache archives set in the Configuration
 * @return A URI array of the caches set in the Configuration
 * @throws IOException
 */
public URI[] getCacheArchives() throws IOException {
  return DistributedCache.getCacheArchives(conf);
}
 
源代码3 项目: incubator-tez   文件: JobContextImpl.java
/**
 * Get cache archives set in the Configuration
 * @return A URI array of the caches set in the Configuration
 * @throws IOException
 */
public URI[] getCacheArchives() throws IOException {
  return DistributedCache.getCacheArchives(conf);
}
 
源代码4 项目: tez   文件: JobContextImpl.java
/**
 * Get cache archives set in the Configuration
 * @return A URI array of the caches set in the Configuration
 * @throws IOException
 */
public URI[] getCacheArchives() throws IOException {
  return DistributedCache.getCacheArchives(conf);
}