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

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

Introduction

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

Prototype

@Deprecated
public static boolean getSymlink(Configuration conf) 

Source Link

Document

Originally intended to check if symlinks should be used, but currently symlinks cannot be disabled.

Usage

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

License:Apache License

/**
 * This method checks to see if symlinks are to be create for the 
 * localized cache files in the current working directory 
 * @return true if symlinks are to be created- else return false
 *//*from   www  . j  ava 2 s  .  co m*/
public boolean getSymlink() {
    return DistributedCache.getSymlink(conf);
}