Example usage for org.apache.hadoop.filecache DistributedCache CACHE_ARCHIVES

List of usage examples for org.apache.hadoop.filecache DistributedCache CACHE_ARCHIVES

Introduction

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

Prototype

String CACHE_ARCHIVES

To view the source code for org.apache.hadoop.filecache DistributedCache CACHE_ARCHIVES.

Click Source Link

Document

Warning: #CACHE_ARCHIVES is not a *public* constant.

Usage

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

License:Apache License

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

    return "";
}