Java Code Examples for org.apache.hadoop.mapreduce.filecache.DistributedCache#getCacheArchives()

The following examples show how to use org.apache.hadoop.mapreduce.filecache.DistributedCache#getCacheArchives() . You can vote up the ones you like or vote down the ones you don't like, and go to the original project or source file by following the links above each example. You may check out the related API usage on the sidebar.
Example 1
Source File: JobContextImpl.java    From hadoop with Apache License 2.0 2 votes vote down vote up
/**
 * 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);
}
 
Example 2
Source File: JobContextImpl.java    From big-c with Apache License 2.0 2 votes vote down vote up
/**
 * 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);
}
 
Example 3
Source File: JobContextImpl.java    From incubator-tez with Apache License 2.0 2 votes vote down vote up
/**
 * 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);
}
 
Example 4
Source File: JobContextImpl.java    From tez with Apache License 2.0 2 votes vote down vote up
/**
 * 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);
}