Example usage for org.apache.hadoop.mapreduce MRJobConfig CACHE_SYMLINK

List of usage examples for org.apache.hadoop.mapreduce MRJobConfig CACHE_SYMLINK

Introduction

In this page you can find the example usage for org.apache.hadoop.mapreduce MRJobConfig CACHE_SYMLINK.

Prototype

String CACHE_SYMLINK

To view the source code for org.apache.hadoop.mapreduce MRJobConfig CACHE_SYMLINK.

Click Source Link

Usage

From source file:org.apache.hcatalog.shims.HCatHadoopShims23.java

License:Apache License

@Override
public String getPropertyName(PropertyName name) {
    switch (name) {
    case CACHE_ARCHIVES:
        return MRJobConfig.CACHE_ARCHIVES;
    case CACHE_FILES:
        return MRJobConfig.CACHE_FILES;
    case CACHE_SYMLINK:
        return MRJobConfig.CACHE_SYMLINK;
    }/*from w  ww .j  a v  a 2  s .com*/

    return "";
}