Example usage for org.apache.hadoop.mapred.lib.db DBConfiguration INPUT_COUNT_QUERY

List of usage examples for org.apache.hadoop.mapred.lib.db DBConfiguration INPUT_COUNT_QUERY

Introduction

In this page you can find the example usage for org.apache.hadoop.mapred.lib.db DBConfiguration INPUT_COUNT_QUERY.

Prototype

String INPUT_COUNT_QUERY

To view the source code for org.apache.hadoop.mapred.lib.db DBConfiguration INPUT_COUNT_QUERY.

Click Source Link

Document

Input query to get the count of records

Usage

From source file:infinidb.hadoop.db.InfiniDBConfiguration.java

License:Apache License

String getInputCountQuery() {
    return job.get(DBConfiguration.INPUT_COUNT_QUERY);
}

From source file:infinidb.hadoop.db.InfiniDBConfiguration.java

License:Apache License

void setInputCountQuery(String query) {
    if (query != null && query.length() > 0) {
        job.set(DBConfiguration.INPUT_COUNT_QUERY, query);
    }
}