Example usage for org.apache.hadoop.mapreduce.filecache DistributedCache getLocalCacheArchives

List of usage examples for org.apache.hadoop.mapreduce.filecache DistributedCache getLocalCacheArchives

Introduction

In this page you can find the example usage for org.apache.hadoop.mapreduce.filecache DistributedCache getLocalCacheArchives.

Prototype

@Deprecated
public static Path[] getLocalCacheArchives(Configuration conf) throws IOException 

Source Link

Document

Return the path array of the localized caches.

Usage

From source file:org.apache.tez.mapreduce.hadoop.mapreduce.JobContextImpl.java

License:Apache License

/**
 * Return the path array of the localized caches
 * @return A path array of localized caches
 * @throws IOException/*from   ww  w  .j av a 2 s. co m*/
 */
public Path[] getLocalCacheArchives() throws IOException {
    return DistributedCache.getLocalCacheArchives(conf);
}