Example usage for org.apache.hadoop.mapred JobConf get

List of usage examples for org.apache.hadoop.mapred JobConf get

Introduction

In this page you can find the example usage for org.apache.hadoop.mapred JobConf get.

Prototype

public String get(String name) 

Source Link

Document

Get the value of the name property, null if no such property exists.

Usage

From source file:com.ibm.bi.dml.runtime.matrix.mapred.MRJobConfiguration.java

License:Open Source License

public static InputInfo getPartitioningInputInfo(JobConf job) {
    return InputInfo.stringToInputInfo(job.get(PARTITIONING_INPUT_INFO_CONFIG));
}

From source file:com.ibm.bi.dml.runtime.matrix.mapred.MRJobConfiguration.java

License:Open Source License

public static OutputInfo getPartitioningOutputInfo(JobConf job) {
    return OutputInfo.stringToOutputInfo(job.get(PARTITIONING_OUTPUT_INFO_CONFIG));
}

From source file:com.ibm.bi.dml.runtime.matrix.mapred.MRJobConfiguration.java

License:Open Source License

public static PDataPartitionFormat getPartitioningFormat(JobConf job) {
    return PDataPartitionFormat.valueOf(job.get(PARTITIONING_OUTPUT_FORMAT_CONFIG));
}

From source file:com.ibm.bi.dml.runtime.matrix.mapred.MRJobConfiguration.java

License:Open Source License

public static int getPartitioningSizeN(JobConf job) {
    return Integer.parseInt(job.get(PARTITIONING_OUTPUT_N_CONFIG));
}

From source file:com.ibm.bi.dml.runtime.matrix.mapred.MRJobConfiguration.java

License:Open Source License

public static boolean getPartitioningIndexFlag(JobConf job) {
    return Boolean.parseBoolean(job.get(PARTITIONING_OUTPUT_KEEP_INDEXES_CONFIG));
}

From source file:com.ibm.bi.dml.runtime.matrix.mapred.MRJobConfiguration.java

License:Open Source License

public static String getPartitioningFilename(JobConf job) {
    return job.get(PARTITIONING_OUTPUT_FILENAME_CONFIG);
}

From source file:com.ibm.bi.dml.runtime.matrix.mapred.MRJobConfiguration.java

License:Open Source License

public static String getPartitioningItervar(JobConf job) {
    return job.get(PARTITIONING_ITERVAR_CONFIG);
}

From source file:com.ibm.bi.dml.runtime.matrix.mapred.MRJobConfiguration.java

License:Open Source License

public static String getPartitioningMatrixvar(JobConf job) {
    return job.get(PARTITIONING_MATRIXVAR_CONFIG);
}

From source file:com.ibm.bi.dml.runtime.matrix.mapred.MRJobConfiguration.java

License:Open Source License

public static String getResultMergeInfoCompareFilename(JobConf job) {
    return job.get(RESULTMERGE_COMPARE_FILENAME_CONFIG);
}

From source file:com.ibm.bi.dml.runtime.matrix.mapred.MRJobConfiguration.java

License:Open Source License

public static InputInfo getResultMergeInputInfo(JobConf job) {
    return InputInfo.stringToInputInfo(job.get(RESULTMERGE_INPUT_INFO_CONFIG));
}