http://git-wip-us.apache.org/repos/asf/accumulo/blob/823e2294/1.4/apidocs/org/apache/accumulo/core/client/mapreduce/InputFormatBase.html ---------------------------------------------------------------------- diff --git a/1.4/apidocs/org/apache/accumulo/core/client/mapreduce/InputFormatBase.html b/1.4/apidocs/org/apache/accumulo/core/client/mapreduce/InputFormatBase.html new file mode 100644 index 0000000..8ad15b2 --- /dev/null +++ b/1.4/apidocs/org/apache/accumulo/core/client/mapreduce/InputFormatBase.html @@ -0,0 +1,1625 @@ +<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> +<!-- NewPage --> +<html lang="en"> +<head> +<!-- Generated by javadoc (version 1.7.0_95) on Thu Mar 03 19:53:23 EST 2016 --> +<meta http-equiv="Content-Type" content="text/html; charset=UTF-8"> +<title>InputFormatBase (accumulo 1.4.5 API)</title> +<meta name="date" content="2016-03-03"> +<link rel="stylesheet" type="text/css" href="../../../../../../stylesheet.css" title="Style"> +</head> +<body> +<script type="text/javascript"><!-- + if (location.href.indexOf('is-external=true') == -1) { + parent.document.title="InputFormatBase (accumulo 1.4.5 API)"; + } +//--> +</script> +<noscript> +<div>JavaScript is disabled on your browser.</div> +</noscript> +<!-- ========= START OF TOP NAVBAR ======= --> +<div class="topNav"><a name="navbar_top"> +<!-- --> +</a><a href="#skip-navbar_top" title="Skip navigation links"></a><a name="navbar_top_firstrow"> +<!-- --> +</a> +<ul class="navList" title="Navigation"> +<li><a href="../../../../../../overview-summary.html">Overview</a></li> +<li><a href="package-summary.html">Package</a></li> +<li class="navBarCell1Rev">Class</li> +<li><a href="class-use/InputFormatBase.html">Use</a></li> +<li><a href="package-tree.html">Tree</a></li> +<li><a href="../../../../../../deprecated-list.html">Deprecated</a></li> +<li><a href="../../../../../../index-all.html">Index</a></li> +<li><a href="../../../../../../help-doc.html">Help</a></li> +</ul> +</div> +<div class="subNav"> +<ul class="navList"> +<li><a href="../../../../../../org/apache/accumulo/core/client/mapreduce/AccumuloRowInputFormat.html" title="class in org.apache.accumulo.core.client.mapreduce"><span class="strong">Prev Class</span></a></li> +<li><a href="../../../../../../org/apache/accumulo/core/client/mapreduce/InputFormatBase.RecordReaderBase.html" title="class in org.apache.accumulo.core.client.mapreduce"><span class="strong">Next Class</span></a></li> +</ul> +<ul class="navList"> +<li><a href="../../../../../../index.html?org/apache/accumulo/core/client/mapreduce/InputFormatBase.html" target="_top">Frames</a></li> +<li><a href="InputFormatBase.html" target="_top">No Frames</a></li> +</ul> +<ul class="navList" id="allclasses_navbar_top"> +<li><a href="../../../../../../allclasses-noframe.html">All Classes</a></li> +</ul> +<div> +<script type="text/javascript"><!-- + allClassesLink = document.getElementById("allclasses_navbar_top"); + if(window==top) { + allClassesLink.style.display = "block"; + } + else { + allClassesLink.style.display = "none"; + } + //--> +</script> +</div> +<div> +<ul class="subNavList"> +<li>Summary: </li> +<li><a href="#nested_class_summary">Nested</a> | </li> +<li><a href="#field_summary">Field</a> | </li> +<li><a href="#constructor_summary">Constr</a> | </li> +<li><a href="#method_summary">Method</a></li> +</ul> +<ul class="subNavList"> +<li>Detail: </li> +<li><a href="#field_detail">Field</a> | </li> +<li><a href="#constructor_detail">Constr</a> | </li> +<li><a href="#method_detail">Method</a></li> +</ul> +</div> +<a name="skip-navbar_top"> +<!-- --> +</a></div> +<!-- ========= END OF TOP NAVBAR ========= --> +<!-- ======== START OF CLASS DATA ======== --> +<div class="header"> +<div class="subTitle">org.apache.accumulo.core.client.mapreduce</div> +<h2 title="Class InputFormatBase" class="title">Class InputFormatBase<K,V></h2> +</div> +<div class="contentContainer"> +<ul class="inheritance"> +<li><a href="http://docs.oracle.com/javase/6/docs/api/java/lang/Object.html?is-external=true" title="class or interface in java.lang">java.lang.Object</a></li> +<li> +<ul class="inheritance"> +<li>org.apache.hadoop.mapreduce.InputFormat<K,V></li> +<li> +<ul class="inheritance"> +<li>org.apache.accumulo.core.client.mapreduce.InputFormatBase<K,V></li> +</ul> +</li> +</ul> +</li> +</ul> +<div class="description"> +<ul class="blockList"> +<li class="blockList"> +<dl> +<dt>Direct Known Subclasses:</dt> +<dd><a href="../../../../../../org/apache/accumulo/core/client/mapreduce/AccumuloInputFormat.html" title="class in org.apache.accumulo.core.client.mapreduce">AccumuloInputFormat</a>, <a href="../../../../../../org/apache/accumulo/core/client/mapreduce/AccumuloRowInputFormat.html" title="class in org.apache.accumulo.core.client.mapreduce">AccumuloRowInputFormat</a></dd> +</dl> +<hr> +<br> +<pre>public abstract class <span class="strong">InputFormatBase<K,V></span> +extends org.apache.hadoop.mapreduce.InputFormat<K,V></pre> +<div class="block">This class allows MapReduce jobs to use Accumulo as the source of data. This input format provides keys and values of type K and V to the Map() and Reduce() + functions. + + Subclasses must implement the following method: public RecordReader<K, V> createRecordReader(InputSplit split, TaskAttemptContext context) throws + IOException, InterruptedException + + This class includes a static class that can be used to create a RecordReader: protected abstract static class RecordReaderBase<K,V> extends RecordReader<K,V> + + Subclasses of RecordReaderBase must implement the following method: public boolean nextKeyValue() throws IOException, InterruptedException This method should + set the following variables: K currentK V currentV Key currentKey (used for progress reporting) int numKeysRead (used for progress reporting) + + See AccumuloInputFormat for an example implementation. + + Other static methods are optional</div> +</li> +</ul> +</div> +<div class="summary"> +<ul class="blockList"> +<li class="blockList"> +<!-- ======== NESTED CLASS SUMMARY ======== --> +<ul class="blockList"> +<li class="blockList"><a name="nested_class_summary"> +<!-- --> +</a> +<h3>Nested Class Summary</h3> +<table class="overviewSummary" border="0" cellpadding="3" cellspacing="0" summary="Nested Class Summary table, listing nested classes, and an explanation"> +<caption><span>Nested Classes</span><span class="tabEnd"> </span></caption> +<tr> +<th class="colFirst" scope="col">Modifier and Type</th> +<th class="colLast" scope="col">Class and Description</th> +</tr> +<tr class="altColor"> +<td class="colFirst"><code>protected static class </code></td> +<td class="colLast"><code><strong><a href="../../../../../../org/apache/accumulo/core/client/mapreduce/InputFormatBase.RecordReaderBase.html" title="class in org.apache.accumulo.core.client.mapreduce">InputFormatBase.RecordReaderBase</a><<a href="../../../../../../org/apache/accumulo/core/client/mapreduce/InputFormatBase.RecordReaderBase.html" title="type parameter in InputFormatBase.RecordReaderBase">K</a>,<a href="../../../../../../org/apache/accumulo/core/client/mapreduce/InputFormatBase.RecordReaderBase.html" title="type parameter in InputFormatBase.RecordReaderBase">V</a>></strong></code> </td> +</tr> +<tr class="rowColor"> +<td class="colFirst"><code>static class </code></td> +<td class="colLast"><code><strong><a href="../../../../../../org/apache/accumulo/core/client/mapreduce/InputFormatBase.RegexType.html" title="enum in org.apache.accumulo.core.client.mapreduce">InputFormatBase.RegexType</a></strong></code> +<div class="block"><strong>Deprecated.</strong> +<div class="block"><i>since 1.4 use <code>RegExFilter</code> and <a href="../../../../../../org/apache/accumulo/core/client/mapreduce/InputFormatBase.html#addIterator(org.apache.hadoop.conf.Configuration,%20org.apache.accumulo.core.client.IteratorSetting)"><code>addIterator(Configuration, IteratorSetting)</code></a></i></div> +</div> +</td> +</tr> +</table> +</li> +</ul> +<!-- =========== FIELD SUMMARY =========== --> +<ul class="blockList"> +<li class="blockList"><a name="field_summary"> +<!-- --> +</a> +<h3>Field Summary</h3> +<table class="overviewSummary" border="0" cellpadding="3" cellspacing="0" summary="Field Summary table, listing fields, and an explanation"> +<caption><span>Fields</span><span class="tabEnd"> </span></caption> +<tr> +<th class="colFirst" scope="col">Modifier and Type</th> +<th class="colLast" scope="col">Field and Description</th> +</tr> +<tr class="altColor"> +<td class="colFirst"><code>protected static org.apache.log4j.Logger</code></td> +<td class="colLast"><code><strong><a href="../../../../../../org/apache/accumulo/core/client/mapreduce/InputFormatBase.html#log">log</a></strong></code> </td> +</tr> +</table> +</li> +</ul> +<!-- ======== CONSTRUCTOR SUMMARY ======== --> +<ul class="blockList"> +<li class="blockList"><a name="constructor_summary"> +<!-- --> +</a> +<h3>Constructor Summary</h3> +<table class="overviewSummary" border="0" cellpadding="3" cellspacing="0" summary="Constructor Summary table, listing constructors, and an explanation"> +<caption><span>Constructors</span><span class="tabEnd"> </span></caption> +<tr> +<th class="colOne" scope="col">Constructor and Description</th> +</tr> +<tr class="altColor"> +<td class="colOne"><code><strong><a href="../../../../../../org/apache/accumulo/core/client/mapreduce/InputFormatBase.html#InputFormatBase()">InputFormatBase</a></strong>()</code> </td> +</tr> +</table> +</li> +</ul> +<!-- ========== METHOD SUMMARY =========== --> +<ul class="blockList"> +<li class="blockList"><a name="method_summary"> +<!-- --> +</a> +<h3>Method Summary</h3> +<table class="overviewSummary" border="0" cellpadding="3" cellspacing="0" summary="Method Summary table, listing methods, and an explanation"> +<caption><span>Methods</span><span class="tabEnd"> </span></caption> +<tr> +<th class="colFirst" scope="col">Modifier and Type</th> +<th class="colLast" scope="col">Method and Description</th> +</tr> +<tr class="altColor"> +<td class="colFirst"><code>static void</code></td> +<td class="colLast"><code><strong><a href="../../../../../../org/apache/accumulo/core/client/mapreduce/InputFormatBase.html#addIterator(org.apache.hadoop.conf.Configuration,%20org.apache.accumulo.core.client.IteratorSetting)">addIterator</a></strong>(org.apache.hadoop.conf.Configuration conf, + <a href="../../../../../../org/apache/accumulo/core/client/IteratorSetting.html" title="class in org.apache.accumulo.core.client">IteratorSetting</a> cfg)</code> +<div class="block">Encode an iterator on the input for this configuration object.</div> +</td> +</tr> +<tr class="rowColor"> +<td class="colFirst"><code>static void</code></td> +<td class="colLast"><code><strong><a href="../../../../../../org/apache/accumulo/core/client/mapreduce/InputFormatBase.html#addIterator(org.apache.hadoop.mapreduce.JobContext,%20org.apache.accumulo.core.client.IteratorSetting)">addIterator</a></strong>(org.apache.hadoop.mapreduce.JobContext job, + <a href="../../../../../../org/apache/accumulo/core/client/IteratorSetting.html" title="class in org.apache.accumulo.core.client">IteratorSetting</a> cfg)</code> +<div class="block"><strong>Deprecated.</strong> +<div class="block"><i>Use <a href="../../../../../../org/apache/accumulo/core/client/mapreduce/InputFormatBase.html#addIterator(org.apache.hadoop.conf.Configuration,%20org.apache.accumulo.core.client.IteratorSetting)"><code>addIterator(Configuration,IteratorSetting)</code></a> instead</i></div> +</div> +</td> +</tr> +<tr class="altColor"> +<td class="colFirst"><code>static <a href="http://docs.oracle.com/javase/6/docs/api/java/util/Set.html?is-external=true" title="class or interface in java.util">Set</a><org.apache.accumulo.core.util.Pair<org.apache.hadoop.io.Text,org.apache.hadoop.io.Text>></code></td> +<td class="colLast"><code><strong><a href="../../../../../../org/apache/accumulo/core/client/mapreduce/InputFormatBase.html#deserializeFetchedColumns(java.lang.String[])">deserializeFetchedColumns</a></strong>(<a href="http://docs.oracle.com/javase/6/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a>[] serialized)</code> </td> +</tr> +<tr class="rowColor"> +<td class="colFirst"><code>static void</code></td> +<td class="colLast"><code><strong><a href="../../../../../../org/apache/accumulo/core/client/mapreduce/InputFormatBase.html#disableAutoAdjustRanges(org.apache.hadoop.conf.Configuration)">disableAutoAdjustRanges</a></strong>(org.apache.hadoop.conf.Configuration conf)</code> +<div class="block">Disables the adjustment of ranges for this configuration object.</div> +</td> +</tr> +<tr class="altColor"> +<td class="colFirst"><code>static void</code></td> +<td class="colLast"><code><strong><a href="../../../../../../org/apache/accumulo/core/client/mapreduce/InputFormatBase.html#disableAutoAdjustRanges(org.apache.hadoop.mapreduce.JobContext)">disableAutoAdjustRanges</a></strong>(org.apache.hadoop.mapreduce.JobContext job)</code> +<div class="block"><strong>Deprecated.</strong> +<div class="block"><i>Use <a href="../../../../../../org/apache/accumulo/core/client/mapreduce/InputFormatBase.html#disableAutoAdjustRanges(org.apache.hadoop.conf.Configuration)"><code>disableAutoAdjustRanges(Configuration)</code></a> instead</i></div> +</div> +</td> +</tr> +<tr class="rowColor"> +<td class="colFirst"><code>static void</code></td> +<td class="colLast"><code><strong><a href="../../../../../../org/apache/accumulo/core/client/mapreduce/InputFormatBase.html#fetchColumns(org.apache.hadoop.conf.Configuration,%20java.util.Collection)">fetchColumns</a></strong>(org.apache.hadoop.conf.Configuration conf, + <a href="http://docs.oracle.com/javase/6/docs/api/java/util/Collection.html?is-external=true" title="class or interface in java.util">Collection</a><org.apache.accumulo.core.util.Pair<org.apache.hadoop.io.Text,org.apache.hadoop.io.Text>> columnFamilyColumnQualifierPairs)</code> +<div class="block">Restricts the columns that will be mapped over for this configuration object.</div> +</td> +</tr> +<tr class="altColor"> +<td class="colFirst"><code>static void</code></td> +<td class="colLast"><code><strong><a href="../../../../../../org/apache/accumulo/core/client/mapreduce/InputFormatBase.html#fetchColumns(org.apache.hadoop.mapreduce.JobContext,%20java.util.Collection)">fetchColumns</a></strong>(org.apache.hadoop.mapreduce.JobContext job, + <a href="http://docs.oracle.com/javase/6/docs/api/java/util/Collection.html?is-external=true" title="class or interface in java.util">Collection</a><org.apache.accumulo.core.util.Pair<org.apache.hadoop.io.Text,org.apache.hadoop.io.Text>> columnFamilyColumnQualifierPairs)</code> +<div class="block"><strong>Deprecated.</strong> +<div class="block"><i>Use <a href="../../../../../../org/apache/accumulo/core/client/mapreduce/InputFormatBase.html#fetchColumns(org.apache.hadoop.conf.Configuration,%20java.util.Collection)"><code>fetchColumns(Configuration,Collection)</code></a> instead</i></div> +</div> +</td> +</tr> +<tr class="rowColor"> +<td class="colFirst"><code>protected static <a href="../../../../../../org/apache/accumulo/core/security/Authorizations.html" title="class in org.apache.accumulo.core.security">Authorizations</a></code></td> +<td class="colLast"><code><strong><a href="../../../../../../org/apache/accumulo/core/client/mapreduce/InputFormatBase.html#getAuthorizations(org.apache.hadoop.conf.Configuration)">getAuthorizations</a></strong>(org.apache.hadoop.conf.Configuration conf)</code> +<div class="block">Gets the authorizations to set for the scans from the configuration.</div> +</td> +</tr> +<tr class="altColor"> +<td class="colFirst"><code>protected static <a href="../../../../../../org/apache/accumulo/core/security/Authorizations.html" title="class in org.apache.accumulo.core.security">Authorizations</a></code></td> +<td class="colLast"><code><strong><a href="../../../../../../org/apache/accumulo/core/client/mapreduce/InputFormatBase.html#getAuthorizations(org.apache.hadoop.mapreduce.JobContext)">getAuthorizations</a></strong>(org.apache.hadoop.mapreduce.JobContext job)</code> +<div class="block"><strong>Deprecated.</strong> +<div class="block"><i>Use <a href="../../../../../../org/apache/accumulo/core/client/mapreduce/InputFormatBase.html#getAuthorizations(org.apache.hadoop.conf.Configuration)"><code>getAuthorizations(Configuration)</code></a> instead</i></div> +</div> +</td> +</tr> +<tr class="rowColor"> +<td class="colFirst"><code>protected static boolean</code></td> +<td class="colLast"><code><strong><a href="../../../../../../org/apache/accumulo/core/client/mapreduce/InputFormatBase.html#getAutoAdjustRanges(org.apache.hadoop.conf.Configuration)">getAutoAdjustRanges</a></strong>(org.apache.hadoop.conf.Configuration conf)</code> +<div class="block">Determines whether a configuration has auto-adjust ranges enabled.</div> +</td> +</tr> +<tr class="altColor"> +<td class="colFirst"><code>protected static boolean</code></td> +<td class="colLast"><code><strong><a href="../../../../../../org/apache/accumulo/core/client/mapreduce/InputFormatBase.html#getAutoAdjustRanges(org.apache.hadoop.mapreduce.JobContext)">getAutoAdjustRanges</a></strong>(org.apache.hadoop.mapreduce.JobContext job)</code> +<div class="block"><strong>Deprecated.</strong> +<div class="block"><i>Use <a href="../../../../../../org/apache/accumulo/core/client/mapreduce/InputFormatBase.html#getAutoAdjustRanges(org.apache.hadoop.conf.Configuration)"><code>getAutoAdjustRanges(Configuration)</code></a> instead</i></div> +</div> +</td> +</tr> +<tr class="rowColor"> +<td class="colFirst"><code>static org.apache.hadoop.conf.Configuration</code></td> +<td class="colLast"><code><strong><a href="../../../../../../org/apache/accumulo/core/client/mapreduce/InputFormatBase.html#getConfiguration(org.apache.hadoop.mapreduce.JobContext)">getConfiguration</a></strong>(org.apache.hadoop.mapreduce.JobContext context)</code> </td> +</tr> +<tr class="altColor"> +<td class="colFirst"><code>protected static <a href="http://docs.oracle.com/javase/6/docs/api/java/util/Set.html?is-external=true" title="class or interface in java.util">Set</a><org.apache.accumulo.core.util.Pair<org.apache.hadoop.io.Text,org.apache.hadoop.io.Text>></code></td> +<td class="colLast"><code><strong><a href="../../../../../../org/apache/accumulo/core/client/mapreduce/InputFormatBase.html#getFetchedColumns(org.apache.hadoop.conf.Configuration)">getFetchedColumns</a></strong>(org.apache.hadoop.conf.Configuration conf)</code> +<div class="block">Gets the columns to be mapped over from this configuration object.</div> +</td> +</tr> +<tr class="rowColor"> +<td class="colFirst"><code>protected static <a href="http://docs.oracle.com/javase/6/docs/api/java/util/Set.html?is-external=true" title="class or interface in java.util">Set</a><org.apache.accumulo.core.util.Pair<org.apache.hadoop.io.Text,org.apache.hadoop.io.Text>></code></td> +<td class="colLast"><code><strong><a href="../../../../../../org/apache/accumulo/core/client/mapreduce/InputFormatBase.html#getFetchedColumns(org.apache.hadoop.mapreduce.JobContext)">getFetchedColumns</a></strong>(org.apache.hadoop.mapreduce.JobContext job)</code> +<div class="block"><strong>Deprecated.</strong> +<div class="block"><i>Use <a href="../../../../../../org/apache/accumulo/core/client/mapreduce/InputFormatBase.html#getFetchedColumns(org.apache.hadoop.conf.Configuration)"><code>getFetchedColumns(Configuration)</code></a> instead</i></div> +</div> +</td> +</tr> +<tr class="altColor"> +<td class="colFirst"><code>protected static <a href="../../../../../../org/apache/accumulo/core/client/Instance.html" title="interface in org.apache.accumulo.core.client">Instance</a></code></td> +<td class="colLast"><code><strong><a href="../../../../../../org/apache/accumulo/core/client/mapreduce/InputFormatBase.html#getInstance(org.apache.hadoop.conf.Configuration)">getInstance</a></strong>(org.apache.hadoop.conf.Configuration conf)</code> +<div class="block">Initializes an Accumulo <a href="../../../../../../org/apache/accumulo/core/client/Instance.html" title="interface in org.apache.accumulo.core.client"><code>Instance</code></a> based on the configuration.</div> +</td> +</tr> +<tr class="rowColor"> +<td class="colFirst"><code>protected static <a href="../../../../../../org/apache/accumulo/core/client/Instance.html" title="interface in org.apache.accumulo.core.client">Instance</a></code></td> +<td class="colLast"><code><strong><a href="../../../../../../org/apache/accumulo/core/client/mapreduce/InputFormatBase.html#getInstance(org.apache.hadoop.mapreduce.JobContext)">getInstance</a></strong>(org.apache.hadoop.mapreduce.JobContext job)</code> +<div class="block"><strong>Deprecated.</strong> +<div class="block"><i>Use <a href="../../../../../../org/apache/accumulo/core/client/mapreduce/InputFormatBase.html#getInstance(org.apache.hadoop.conf.Configuration)"><code>getInstance(Configuration)</code></a> instead</i></div> +</div> +</td> +</tr> +<tr class="altColor"> +<td class="colFirst"><code>protected static <a href="http://docs.oracle.com/javase/6/docs/api/java/util/List.html?is-external=true" title="class or interface in java.util">List</a><org.apache.accumulo.core.client.mapreduce.InputFormatBase.AccumuloIteratorOption></code></td> +<td class="colLast"><code><strong><a href="../../../../../../org/apache/accumulo/core/client/mapreduce/InputFormatBase.html#getIteratorOptions(org.apache.hadoop.conf.Configuration)">getIteratorOptions</a></strong>(org.apache.hadoop.conf.Configuration conf)</code> +<div class="block">Gets a list of the iterator options specified on this configuration.</div> +</td> +</tr> +<tr class="rowColor"> +<td class="colFirst"><code>protected static <a href="http://docs.oracle.com/javase/6/docs/api/java/util/List.html?is-external=true" title="class or interface in java.util">List</a><org.apache.accumulo.core.client.mapreduce.InputFormatBase.AccumuloIteratorOption></code></td> +<td class="colLast"><code><strong><a href="../../../../../../org/apache/accumulo/core/client/mapreduce/InputFormatBase.html#getIteratorOptions(org.apache.hadoop.mapreduce.JobContext)">getIteratorOptions</a></strong>(org.apache.hadoop.mapreduce.JobContext job)</code> +<div class="block"><strong>Deprecated.</strong> +<div class="block"><i>Use <a href="../../../../../../org/apache/accumulo/core/client/mapreduce/InputFormatBase.html#getIteratorOptions(org.apache.hadoop.conf.Configuration)"><code>getIteratorOptions(Configuration)</code></a> instead</i></div> +</div> +</td> +</tr> +<tr class="altColor"> +<td class="colFirst"><code>protected static <a href="http://docs.oracle.com/javase/6/docs/api/java/util/List.html?is-external=true" title="class or interface in java.util">List</a><org.apache.accumulo.core.client.mapreduce.InputFormatBase.AccumuloIterator></code></td> +<td class="colLast"><code><strong><a href="../../../../../../org/apache/accumulo/core/client/mapreduce/InputFormatBase.html#getIterators(org.apache.hadoop.conf.Configuration)">getIterators</a></strong>(org.apache.hadoop.conf.Configuration conf)</code> +<div class="block">Gets a list of the iterator settings (for iterators to apply to a scanner) from this configuration.</div> +</td> +</tr> +<tr class="rowColor"> +<td class="colFirst"><code>protected static <a href="http://docs.oracle.com/javase/6/docs/api/java/util/List.html?is-external=true" title="class or interface in java.util">List</a><org.apache.accumulo.core.client.mapreduce.InputFormatBase.AccumuloIterator></code></td> +<td class="colLast"><code><strong><a href="../../../../../../org/apache/accumulo/core/client/mapreduce/InputFormatBase.html#getIterators(org.apache.hadoop.mapreduce.JobContext)">getIterators</a></strong>(org.apache.hadoop.mapreduce.JobContext job)</code> +<div class="block"><strong>Deprecated.</strong> +<div class="block"><i>Use <a href="../../../../../../org/apache/accumulo/core/client/mapreduce/InputFormatBase.html#getIterators(org.apache.hadoop.conf.Configuration)"><code>getIterators(Configuration)</code></a> instead</i></div> +</div> +</td> +</tr> +<tr class="altColor"> +<td class="colFirst"><code>protected static org.apache.log4j.Level</code></td> +<td class="colLast"><code><strong><a href="../../../../../../org/apache/accumulo/core/client/mapreduce/InputFormatBase.html#getLogLevel(org.apache.hadoop.conf.Configuration)">getLogLevel</a></strong>(org.apache.hadoop.conf.Configuration conf)</code> +<div class="block">Gets the log level from this configuration.</div> +</td> +</tr> +<tr class="rowColor"> +<td class="colFirst"><code>protected static org.apache.log4j.Level</code></td> +<td class="colLast"><code><strong><a href="../../../../../../org/apache/accumulo/core/client/mapreduce/InputFormatBase.html#getLogLevel(org.apache.hadoop.mapreduce.JobContext)">getLogLevel</a></strong>(org.apache.hadoop.mapreduce.JobContext job)</code> +<div class="block"><strong>Deprecated.</strong> +<div class="block"><i>Use <a href="../../../../../../org/apache/accumulo/core/client/mapreduce/InputFormatBase.html#getLogLevel(org.apache.hadoop.conf.Configuration)"><code>getLogLevel(Configuration)</code></a> instead</i></div> +</div> +</td> +</tr> +<tr class="altColor"> +<td class="colFirst"><code>protected static int</code></td> +<td class="colLast"><code><strong><a href="../../../../../../org/apache/accumulo/core/client/mapreduce/InputFormatBase.html#getMaxVersions(org.apache.hadoop.conf.Configuration)">getMaxVersions</a></strong>(org.apache.hadoop.conf.Configuration conf)</code> +<div class="block">Gets the maxVersions to use for the <code>VersioningIterator</code> from this configuration.</div> +</td> +</tr> +<tr class="rowColor"> +<td class="colFirst"><code>protected static int</code></td> +<td class="colLast"><code><strong><a href="../../../../../../org/apache/accumulo/core/client/mapreduce/InputFormatBase.html#getMaxVersions(org.apache.hadoop.mapreduce.JobContext)">getMaxVersions</a></strong>(org.apache.hadoop.mapreduce.JobContext job)</code> +<div class="block"><strong>Deprecated.</strong> +<div class="block"><i>Use <a href="../../../../../../org/apache/accumulo/core/client/mapreduce/InputFormatBase.html#getMaxVersions(org.apache.hadoop.conf.Configuration)"><code>getMaxVersions(Configuration)</code></a> instead</i></div> +</div> +</td> +</tr> +<tr class="altColor"> +<td class="colFirst"><code>protected static byte[]</code></td> +<td class="colLast"><code><strong><a href="../../../../../../org/apache/accumulo/core/client/mapreduce/InputFormatBase.html#getPassword(org.apache.hadoop.conf.Configuration)">getPassword</a></strong>(org.apache.hadoop.conf.Configuration conf)</code> +<div class="block">Gets the password from the configuration.</div> +</td> +</tr> +<tr class="rowColor"> +<td class="colFirst"><code>protected static byte[]</code></td> +<td class="colLast"><code><strong><a href="../../../../../../org/apache/accumulo/core/client/mapreduce/InputFormatBase.html#getPassword(org.apache.hadoop.mapreduce.JobContext)">getPassword</a></strong>(org.apache.hadoop.mapreduce.JobContext job)</code> +<div class="block"><strong>Deprecated.</strong> +<div class="block"><i>Use <a href="../../../../../../org/apache/accumulo/core/client/mapreduce/InputFormatBase.html#getPassword(org.apache.hadoop.conf.Configuration)"><code>getPassword(Configuration)</code></a> instead</i></div> +</div> +</td> +</tr> +<tr class="altColor"> +<td class="colFirst"><code>protected static <a href="http://docs.oracle.com/javase/6/docs/api/java/util/List.html?is-external=true" title="class or interface in java.util">List</a><<a href="../../../../../../org/apache/accumulo/core/data/Range.html" title="class in org.apache.accumulo.core.data">Range</a>></code></td> +<td class="colLast"><code><strong><a href="../../../../../../org/apache/accumulo/core/client/mapreduce/InputFormatBase.html#getRanges(org.apache.hadoop.conf.Configuration)">getRanges</a></strong>(org.apache.hadoop.conf.Configuration conf)</code> +<div class="block">Gets the ranges to scan over from a configuration object.</div> +</td> +</tr> +<tr class="rowColor"> +<td class="colFirst"><code>protected static <a href="http://docs.oracle.com/javase/6/docs/api/java/util/List.html?is-external=true" title="class or interface in java.util">List</a><<a href="../../../../../../org/apache/accumulo/core/data/Range.html" title="class in org.apache.accumulo.core.data">Range</a>></code></td> +<td class="colLast"><code><strong><a href="../../../../../../org/apache/accumulo/core/client/mapreduce/InputFormatBase.html#getRanges(org.apache.hadoop.mapreduce.JobContext)">getRanges</a></strong>(org.apache.hadoop.mapreduce.JobContext job)</code> +<div class="block"><strong>Deprecated.</strong> +<div class="block"><i>Use <a href="../../../../../../org/apache/accumulo/core/client/mapreduce/InputFormatBase.html#getRanges(org.apache.hadoop.conf.Configuration)"><code>getRanges(Configuration)</code></a> instead</i></div> +</div> +</td> +</tr> +<tr class="altColor"> +<td class="colFirst"><code>protected static <a href="http://docs.oracle.com/javase/6/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a></code></td> +<td class="colLast"><code><strong><a href="../../../../../../org/apache/accumulo/core/client/mapreduce/InputFormatBase.html#getRegex(org.apache.hadoop.mapreduce.JobContext,%20org.apache.accumulo.core.client.mapreduce.InputFormatBase.RegexType)">getRegex</a></strong>(org.apache.hadoop.mapreduce.JobContext job, + <a href="../../../../../../org/apache/accumulo/core/client/mapreduce/InputFormatBase.RegexType.html" title="enum in org.apache.accumulo.core.client.mapreduce">InputFormatBase.RegexType</a> type)</code> +<div class="block"><strong>Deprecated.</strong> +<div class="block"><i>since 1.4 use <code>RegExFilter</code> and <a href="../../../../../../org/apache/accumulo/core/client/mapreduce/InputFormatBase.html#addIterator(org.apache.hadoop.conf.Configuration,%20org.apache.accumulo.core.client.IteratorSetting)"><code>addIterator(Configuration, IteratorSetting)</code></a></i></div> +</div> +</td> +</tr> +<tr class="rowColor"> +<td class="colFirst"><code><a href="http://docs.oracle.com/javase/6/docs/api/java/util/List.html?is-external=true" title="class or interface in java.util">List</a><org.apache.hadoop.mapreduce.InputSplit></code></td> +<td class="colLast"><code><strong><a href="../../../../../../org/apache/accumulo/core/client/mapreduce/InputFormatBase.html#getSplits(org.apache.hadoop.mapreduce.JobContext)">getSplits</a></strong>(org.apache.hadoop.mapreduce.JobContext job)</code> +<div class="block">Read the metadata table to get tablets and match up ranges to them.</div> +</td> +</tr> +<tr class="altColor"> +<td class="colFirst"><code>protected static <a href="http://docs.oracle.com/javase/6/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a></code></td> +<td class="colLast"><code><strong><a href="../../../../../../org/apache/accumulo/core/client/mapreduce/InputFormatBase.html#getTablename(org.apache.hadoop.conf.Configuration)">getTablename</a></strong>(org.apache.hadoop.conf.Configuration conf)</code> +<div class="block">Gets the table name from the configuration.</div> +</td> +</tr> +<tr class="rowColor"> +<td class="colFirst"><code>protected static <a href="http://docs.oracle.com/javase/6/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a></code></td> +<td class="colLast"><code><strong><a href="../../../../../../org/apache/accumulo/core/client/mapreduce/InputFormatBase.html#getTablename(org.apache.hadoop.mapreduce.JobContext)">getTablename</a></strong>(org.apache.hadoop.mapreduce.JobContext job)</code> +<div class="block"><strong>Deprecated.</strong> +<div class="block"><i>Use <a href="../../../../../../org/apache/accumulo/core/client/mapreduce/InputFormatBase.html#getTablename(org.apache.hadoop.conf.Configuration)"><code>getTablename(Configuration)</code></a> instead</i></div> +</div> +</td> +</tr> +<tr class="altColor"> +<td class="colFirst"><code>protected static org.apache.accumulo.core.client.impl.TabletLocator</code></td> +<td class="colLast"><code><strong><a href="../../../../../../org/apache/accumulo/core/client/mapreduce/InputFormatBase.html#getTabletLocator(org.apache.hadoop.conf.Configuration)">getTabletLocator</a></strong>(org.apache.hadoop.conf.Configuration conf)</code> +<div class="block">Initializes an Accumulo <code>TabletLocator</code> based on the configuration.</div> +</td> +</tr> +<tr class="rowColor"> +<td class="colFirst"><code>protected static org.apache.accumulo.core.client.impl.TabletLocator</code></td> +<td class="colLast"><code><strong><a href="../../../../../../org/apache/accumulo/core/client/mapreduce/InputFormatBase.html#getTabletLocator(org.apache.hadoop.mapreduce.JobContext)">getTabletLocator</a></strong>(org.apache.hadoop.mapreduce.JobContext job)</code> +<div class="block"><strong>Deprecated.</strong> +<div class="block"><i>Use <a href="../../../../../../org/apache/accumulo/core/client/mapreduce/InputFormatBase.html#getTabletLocator(org.apache.hadoop.conf.Configuration)"><code>getTabletLocator(Configuration)</code></a> instead</i></div> +</div> +</td> +</tr> +<tr class="altColor"> +<td class="colFirst"><code>protected static <a href="http://docs.oracle.com/javase/6/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a></code></td> +<td class="colLast"><code><strong><a href="../../../../../../org/apache/accumulo/core/client/mapreduce/InputFormatBase.html#getUsername(org.apache.hadoop.conf.Configuration)">getUsername</a></strong>(org.apache.hadoop.conf.Configuration conf)</code> +<div class="block">Gets the user name from the configuration.</div> +</td> +</tr> +<tr class="rowColor"> +<td class="colFirst"><code>protected static <a href="http://docs.oracle.com/javase/6/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a></code></td> +<td class="colLast"><code><strong><a href="../../../../../../org/apache/accumulo/core/client/mapreduce/InputFormatBase.html#getUsername(org.apache.hadoop.mapreduce.JobContext)">getUsername</a></strong>(org.apache.hadoop.mapreduce.JobContext job)</code> +<div class="block"><strong>Deprecated.</strong> +<div class="block"><i>Use <a href="../../../../../../org/apache/accumulo/core/client/mapreduce/InputFormatBase.html#getUsername(org.apache.hadoop.conf.Configuration)"><code>getUsername(Configuration)</code></a> instead</i></div> +</div> +</td> +</tr> +<tr class="altColor"> +<td class="colFirst"><code>protected static boolean</code></td> +<td class="colLast"><code><strong><a href="../../../../../../org/apache/accumulo/core/client/mapreduce/InputFormatBase.html#isIsolated(org.apache.hadoop.conf.Configuration)">isIsolated</a></strong>(org.apache.hadoop.conf.Configuration conf)</code> +<div class="block">Determines whether a configuration has isolation enabled.</div> +</td> +</tr> +<tr class="rowColor"> +<td class="colFirst"><code>protected static boolean</code></td> +<td class="colLast"><code><strong><a href="../../../../../../org/apache/accumulo/core/client/mapreduce/InputFormatBase.html#isIsolated(org.apache.hadoop.mapreduce.JobContext)">isIsolated</a></strong>(org.apache.hadoop.mapreduce.JobContext job)</code> +<div class="block"><strong>Deprecated.</strong> +<div class="block"><i>Use <a href="../../../../../../org/apache/accumulo/core/client/mapreduce/InputFormatBase.html#isIsolated(org.apache.hadoop.conf.Configuration)"><code>isIsolated(Configuration)</code></a> instead</i></div> +</div> +</td> +</tr> +<tr class="altColor"> +<td class="colFirst"><code>protected static boolean</code></td> +<td class="colLast"><code><strong><a href="../../../../../../org/apache/accumulo/core/client/mapreduce/InputFormatBase.html#isOfflineScan(org.apache.hadoop.conf.Configuration)">isOfflineScan</a></strong>(org.apache.hadoop.conf.Configuration conf)</code> </td> +</tr> +<tr class="rowColor"> +<td class="colFirst"><code>static <a href="http://docs.oracle.com/javase/6/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a>[]</code></td> +<td class="colLast"><code><strong><a href="../../../../../../org/apache/accumulo/core/client/mapreduce/InputFormatBase.html#serializeColumns(java.util.Collection)">serializeColumns</a></strong>(<a href="http://docs.oracle.com/javase/6/docs/api/java/util/Collection.html?is-external=true" title="class or interface in java.util">Collection</a><org.apache.accumulo.core.util.Pair<org.apache.hadoop.io.Text,org.apache.hadoop.io.Text>> columnFamilyColumnQualifierPairs)</code> </td> +</tr> +<tr class="altColor"> +<td class="colFirst"><code>static void</code></td> +<td class="colLast"><code><strong><a href="../../../../../../org/apache/accumulo/core/client/mapreduce/InputFormatBase.html#setInputInfo(org.apache.hadoop.conf.Configuration,%20java.lang.String,%20byte[],%20java.lang.String,%20org.apache.accumulo.core.security.Authorizations)">setInputInfo</a></strong>(org.apache.hadoop.conf.Configuration conf, + <a href="http://docs.oracle.com/javase/6/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a> user, + byte[] passwd, + <a href="http://docs.oracle.com/javase/6/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a> table, + <a href="../../../../../../org/apache/accumulo/core/security/Authorizations.html" title="class in org.apache.accumulo.core.security">Authorizations</a> auths)</code> +<div class="block">Initialize the user, table, and authorization information for the configuration object that will be used with an Accumulo InputFormat.</div> +</td> +</tr> +<tr class="rowColor"> +<td class="colFirst"><code>static void</code></td> +<td class="colLast"><code><strong><a href="../../../../../../org/apache/accumulo/core/client/mapreduce/InputFormatBase.html#setInputInfo(org.apache.hadoop.mapreduce.JobContext,%20java.lang.String,%20byte[],%20java.lang.String,%20org.apache.accumulo.core.security.Authorizations)">setInputInfo</a></strong>(org.apache.hadoop.mapreduce.JobContext job, + <a href="http://docs.oracle.com/javase/6/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a> user, + byte[] passwd, + <a href="http://docs.oracle.com/javase/6/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a> table, + <a href="../../../../../../org/apache/accumulo/core/security/Authorizations.html" title="class in org.apache.accumulo.core.security">Authorizations</a> auths)</code> +<div class="block"><strong>Deprecated.</strong> +<div class="block"><i>Use <a href="../../../../../../org/apache/accumulo/core/client/mapreduce/InputFormatBase.html#setInputInfo(org.apache.hadoop.conf.Configuration,%20java.lang.String,%20byte[],%20java.lang.String,%20org.apache.accumulo.core.security.Authorizations)"><code>setInputInfo(Configuration,String,byte[],String,Authorizations)</code></a> instead</i></div> +</div> +</td> +</tr> +<tr class="altColor"> +<td class="colFirst"><code>static void</code></td> +<td class="colLast"><code><strong><a href="../../../../../../org/apache/accumulo/core/client/mapreduce/InputFormatBase.html#setIsolated(org.apache.hadoop.conf.Configuration,%20boolean)">setIsolated</a></strong>(org.apache.hadoop.conf.Configuration conf, + boolean enable)</code> +<div class="block">Enable or disable use of the <a href="../../../../../../org/apache/accumulo/core/client/IsolatedScanner.html" title="class in org.apache.accumulo.core.client"><code>IsolatedScanner</code></a> in this configuration object.</div> +</td> +</tr> +<tr class="rowColor"> +<td class="colFirst"><code>static void</code></td> +<td class="colLast"><code><strong><a href="../../../../../../org/apache/accumulo/core/client/mapreduce/InputFormatBase.html#setIsolated(org.apache.hadoop.mapreduce.JobContext,%20boolean)">setIsolated</a></strong>(org.apache.hadoop.mapreduce.JobContext job, + boolean enable)</code> +<div class="block"><strong>Deprecated.</strong> +<div class="block"><i>Use <a href="../../../../../../org/apache/accumulo/core/client/mapreduce/InputFormatBase.html#setIsolated(org.apache.hadoop.conf.Configuration,%20boolean)"><code>setIsolated(Configuration,boolean)</code></a> instead</i></div> +</div> +</td> +</tr> +<tr class="altColor"> +<td class="colFirst"><code>static void</code></td> +<td class="colLast"><code><strong><a href="../../../../../../org/apache/accumulo/core/client/mapreduce/InputFormatBase.html#setIterator(org.apache.hadoop.mapreduce.JobContext,%20int,%20java.lang.String,%20java.lang.String)">setIterator</a></strong>(org.apache.hadoop.mapreduce.JobContext job, + int priority, + <a href="http://docs.oracle.com/javase/6/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a> iteratorClass, + <a href="http://docs.oracle.com/javase/6/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a> iteratorName)</code> +<div class="block"><strong>Deprecated.</strong> +<div class="block"><i>since 1.4, see <a href="../../../../../../org/apache/accumulo/core/client/mapreduce/InputFormatBase.html#addIterator(org.apache.hadoop.conf.Configuration,%20org.apache.accumulo.core.client.IteratorSetting)"><code>addIterator(Configuration, IteratorSetting)</code></a></i></div> +</div> +</td> +</tr> +<tr class="rowColor"> +<td class="colFirst"><code>static void</code></td> +<td class="colLast"><code><strong><a href="../../../../../../org/apache/accumulo/core/client/mapreduce/InputFormatBase.html#setIteratorOption(org.apache.hadoop.mapreduce.JobContext,%20java.lang.String,%20java.lang.String,%20java.lang.String)">setIteratorOption</a></strong>(org.apache.hadoop.mapreduce.JobContext job, + <a href="http://docs.oracle.com/javase/6/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a> iteratorName, + <a href="http://docs.oracle.com/javase/6/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a> key, + <a href="http://docs.oracle.com/javase/6/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a> value)</code> +<div class="block"><strong>Deprecated.</strong> +<div class="block"><i>since 1.4, see <a href="../../../../../../org/apache/accumulo/core/client/mapreduce/InputFormatBase.html#addIterator(org.apache.hadoop.conf.Configuration,%20org.apache.accumulo.core.client.IteratorSetting)"><code>addIterator(Configuration, IteratorSetting)</code></a></i></div> +</div> +</td> +</tr> +<tr class="altColor"> +<td class="colFirst"><code>static void</code></td> +<td class="colLast"><code><strong><a href="../../../../../../org/apache/accumulo/core/client/mapreduce/InputFormatBase.html#setLocalIterators(org.apache.hadoop.conf.Configuration,%20boolean)">setLocalIterators</a></strong>(org.apache.hadoop.conf.Configuration conf, + boolean enable)</code> +<div class="block">Enable or disable use of the <a href="../../../../../../org/apache/accumulo/core/client/ClientSideIteratorScanner.html" title="class in org.apache.accumulo.core.client"><code>ClientSideIteratorScanner</code></a> in this Configuration object.</div> +</td> +</tr> +<tr class="rowColor"> +<td class="colFirst"><code>static void</code></td> +<td class="colLast"><code><strong><a href="../../../../../../org/apache/accumulo/core/client/mapreduce/InputFormatBase.html#setLocalIterators(org.apache.hadoop.mapreduce.JobContext,%20boolean)">setLocalIterators</a></strong>(org.apache.hadoop.mapreduce.JobContext job, + boolean enable)</code> +<div class="block"><strong>Deprecated.</strong> +<div class="block"><i>Use <a href="../../../../../../org/apache/accumulo/core/client/mapreduce/InputFormatBase.html#setLocalIterators(org.apache.hadoop.conf.Configuration,%20boolean)"><code>setLocalIterators(Configuration,boolean)</code></a> instead</i></div> +</div> +</td> +</tr> +<tr class="altColor"> +<td class="colFirst"><code>static void</code></td> +<td class="colLast"><code><strong><a href="../../../../../../org/apache/accumulo/core/client/mapreduce/InputFormatBase.html#setLogLevel(org.apache.hadoop.conf.Configuration,%20org.apache.log4j.Level)">setLogLevel</a></strong>(org.apache.hadoop.conf.Configuration conf, + org.apache.log4j.Level level)</code> +<div class="block">Sets the log level for this configuration object.</div> +</td> +</tr> +<tr class="rowColor"> +<td class="colFirst"><code>static void</code></td> +<td class="colLast"><code><strong><a href="../../../../../../org/apache/accumulo/core/client/mapreduce/InputFormatBase.html#setLogLevel(org.apache.hadoop.mapreduce.JobContext,%20org.apache.log4j.Level)">setLogLevel</a></strong>(org.apache.hadoop.mapreduce.JobContext job, + org.apache.log4j.Level level)</code> +<div class="block"><strong>Deprecated.</strong> +<div class="block"><i>Use <a href="../../../../../../org/apache/accumulo/core/client/mapreduce/InputFormatBase.html#setLogLevel(org.apache.hadoop.conf.Configuration,%20org.apache.log4j.Level)"><code>setLogLevel(Configuration,Level)</code></a> instead</i></div> +</div> +</td> +</tr> +<tr class="altColor"> +<td class="colFirst"><code>static void</code></td> +<td class="colLast"><code><strong><a href="../../../../../../org/apache/accumulo/core/client/mapreduce/InputFormatBase.html#setMaxVersions(org.apache.hadoop.conf.Configuration,%20int)">setMaxVersions</a></strong>(org.apache.hadoop.conf.Configuration conf, + int maxVersions)</code> +<div class="block">Sets the max # of values that may be returned for an individual Accumulo cell.</div> +</td> +</tr> +<tr class="rowColor"> +<td class="colFirst"><code>static void</code></td> +<td class="colLast"><code><strong><a href="../../../../../../org/apache/accumulo/core/client/mapreduce/InputFormatBase.html#setMaxVersions(org.apache.hadoop.mapreduce.JobContext,%20int)">setMaxVersions</a></strong>(org.apache.hadoop.mapreduce.JobContext job, + int maxVersions)</code> +<div class="block"><strong>Deprecated.</strong> +<div class="block"><i>Use <a href="../../../../../../org/apache/accumulo/core/client/mapreduce/InputFormatBase.html#setMaxVersions(org.apache.hadoop.conf.Configuration,%20int)"><code>setMaxVersions(Configuration,int)</code></a> instead</i></div> +</div> +</td> +</tr> +<tr class="altColor"> +<td class="colFirst"><code>static void</code></td> +<td class="colLast"><code><strong><a href="../../../../../../org/apache/accumulo/core/client/mapreduce/InputFormatBase.html#setMockInstance(org.apache.hadoop.conf.Configuration,%20java.lang.String)">setMockInstance</a></strong>(org.apache.hadoop.conf.Configuration conf, + <a href="http://docs.oracle.com/javase/6/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a> instanceName)</code> +<div class="block">Configure a <a href="../../../../../../org/apache/accumulo/core/client/mock/MockInstance.html" title="class in org.apache.accumulo.core.client.mock"><code>MockInstance</code></a> for this configuration object.</div> +</td> +</tr> +<tr class="rowColor"> +<td class="colFirst"><code>static void</code></td> +<td class="colLast"><code><strong><a href="../../../../../../org/apache/accumulo/core/client/mapreduce/InputFormatBase.html#setMockInstance(org.apache.hadoop.mapreduce.JobContext,%20java.lang.String)">setMockInstance</a></strong>(org.apache.hadoop.mapreduce.JobContext job, + <a href="http://docs.oracle.com/javase/6/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a> instanceName)</code> +<div class="block"><strong>Deprecated.</strong> +<div class="block"><i>Use <a href="../../../../../../org/apache/accumulo/core/client/mapreduce/InputFormatBase.html#setMockInstance(org.apache.hadoop.conf.Configuration,%20java.lang.String)"><code>setMockInstance(Configuration,String)</code></a> instead</i></div> +</div> +</td> +</tr> +<tr class="altColor"> +<td class="colFirst"><code>static void</code></td> +<td class="colLast"><code><strong><a href="../../../../../../org/apache/accumulo/core/client/mapreduce/InputFormatBase.html#setRanges(org.apache.hadoop.conf.Configuration,%20java.util.Collection)">setRanges</a></strong>(org.apache.hadoop.conf.Configuration conf, + <a href="http://docs.oracle.com/javase/6/docs/api/java/util/Collection.html?is-external=true" title="class or interface in java.util">Collection</a><<a href="../../../../../../org/apache/accumulo/core/data/Range.html" title="class in org.apache.accumulo.core.data">Range</a>> ranges)</code> +<div class="block">Set the ranges to map over for this configuration object.</div> +</td> +</tr> +<tr class="rowColor"> +<td class="colFirst"><code>static void</code></td> +<td class="colLast"><code><strong><a href="../../../../../../org/apache/accumulo/core/client/mapreduce/InputFormatBase.html#setRanges(org.apache.hadoop.mapreduce.JobContext,%20java.util.Collection)">setRanges</a></strong>(org.apache.hadoop.mapreduce.JobContext job, + <a href="http://docs.oracle.com/javase/6/docs/api/java/util/Collection.html?is-external=true" title="class or interface in java.util">Collection</a><<a href="../../../../../../org/apache/accumulo/core/data/Range.html" title="class in org.apache.accumulo.core.data">Range</a>> ranges)</code> +<div class="block"><strong>Deprecated.</strong> +<div class="block"><i>Use <a href="../../../../../../org/apache/accumulo/core/client/mapreduce/InputFormatBase.html#setRanges(org.apache.hadoop.conf.Configuration,%20java.util.Collection)"><code>setRanges(Configuration,Collection)</code></a> instead</i></div> +</div> +</td> +</tr> +<tr class="altColor"> +<td class="colFirst"><code>static void</code></td> +<td class="colLast"><code><strong><a href="../../../../../../org/apache/accumulo/core/client/mapreduce/InputFormatBase.html#setRegex(org.apache.hadoop.mapreduce.JobContext,%20org.apache.accumulo.core.client.mapreduce.InputFormatBase.RegexType,%20java.lang.String)">setRegex</a></strong>(org.apache.hadoop.mapreduce.JobContext job, + <a href="../../../../../../org/apache/accumulo/core/client/mapreduce/InputFormatBase.RegexType.html" title="enum in org.apache.accumulo.core.client.mapreduce">InputFormatBase.RegexType</a> type, + <a href="http://docs.oracle.com/javase/6/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a> regex)</code> +<div class="block"><strong>Deprecated.</strong> +<div class="block"><i>since 1.4 use <a href="../../../../../../org/apache/accumulo/core/client/mapreduce/InputFormatBase.html#addIterator(org.apache.hadoop.conf.Configuration,%20org.apache.accumulo.core.client.IteratorSetting)"><code>addIterator(Configuration, IteratorSetting)</code></a></i></div> +</div> +</td> +</tr> +<tr class="rowColor"> +<td class="colFirst"><code>static void</code></td> +<td class="colLast"><code><strong><a href="../../../../../../org/apache/accumulo/core/client/mapreduce/InputFormatBase.html#setScanOffline(org.apache.hadoop.conf.Configuration,%20boolean)">setScanOffline</a></strong>(org.apache.hadoop.conf.Configuration conf, + boolean scanOff)</code> +<div class="block"> + Enable reading offline tables.</div> +</td> +</tr> +<tr class="altColor"> +<td class="colFirst"><code>static void</code></td> +<td class="colLast"><code><strong><a href="../../../../../../org/apache/accumulo/core/client/mapreduce/InputFormatBase.html#setZooKeeperInstance(org.apache.hadoop.conf.Configuration,%20java.lang.String,%20java.lang.String)">setZooKeeperInstance</a></strong>(org.apache.hadoop.conf.Configuration conf, + <a href="http://docs.oracle.com/javase/6/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a> instanceName, + <a href="http://docs.oracle.com/javase/6/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a> zooKeepers)</code> +<div class="block">Configure a <a href="../../../../../../org/apache/accumulo/core/client/ZooKeeperInstance.html" title="class in org.apache.accumulo.core.client"><code>ZooKeeperInstance</code></a> for this configuration object.</div> +</td> +</tr> +<tr class="rowColor"> +<td class="colFirst"><code>static void</code></td> +<td class="colLast"><code><strong><a href="../../../../../../org/apache/accumulo/core/client/mapreduce/InputFormatBase.html#setZooKeeperInstance(org.apache.hadoop.mapreduce.JobContext,%20java.lang.String,%20java.lang.String)">setZooKeeperInstance</a></strong>(org.apache.hadoop.mapreduce.JobContext job, + <a href="http://docs.oracle.com/javase/6/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a> instanceName, + <a href="http://docs.oracle.com/javase/6/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a> zooKeepers)</code> +<div class="block"><strong>Deprecated.</strong> +<div class="block"><i>Use <a href="../../../../../../org/apache/accumulo/core/client/mapreduce/InputFormatBase.html#setZooKeeperInstance(org.apache.hadoop.conf.Configuration,%20java.lang.String,%20java.lang.String)"><code>setZooKeeperInstance(Configuration,String,String)</code></a> instead</i></div> +</div> +</td> +</tr> +<tr class="altColor"> +<td class="colFirst"><code>protected static boolean</code></td> +<td class="colLast"><code><strong><a href="../../../../../../org/apache/accumulo/core/client/mapreduce/InputFormatBase.html#usesLocalIterators(org.apache.hadoop.conf.Configuration)">usesLocalIterators</a></strong>(org.apache.hadoop.conf.Configuration conf)</code> +<div class="block">Determines whether a configuration uses local iterators.</div> +</td> +</tr> +<tr class="rowColor"> +<td class="colFirst"><code>protected static boolean</code></td> +<td class="colLast"><code><strong><a href="../../../../../../org/apache/accumulo/core/client/mapreduce/InputFormatBase.html#usesLocalIterators(org.apache.hadoop.mapreduce.JobContext)">usesLocalIterators</a></strong>(org.apache.hadoop.mapreduce.JobContext job)</code> +<div class="block"><strong>Deprecated.</strong> +<div class="block"><i>Use <a href="../../../../../../org/apache/accumulo/core/client/mapreduce/InputFormatBase.html#usesLocalIterators(org.apache.hadoop.conf.Configuration)"><code>usesLocalIterators(Configuration)</code></a> instead</i></div> +</div> +</td> +</tr> +<tr class="altColor"> +<td class="colFirst"><code>protected static void</code></td> +<td class="colLast"><code><strong><a href="../../../../../../org/apache/accumulo/core/client/mapreduce/InputFormatBase.html#validateOptions(org.apache.hadoop.conf.Configuration)">validateOptions</a></strong>(org.apache.hadoop.conf.Configuration conf)</code> +<div class="block">Check whether a configuration is fully configured to be used with an Accumulo <code>InputFormat</code>.</div> +</td> +</tr> +<tr class="rowColor"> +<td class="colFirst"><code>protected static void</code></td> +<td class="colLast"><code><strong><a href="../../../../../../org/apache/accumulo/core/client/mapreduce/InputFormatBase.html#validateOptions(org.apache.hadoop.mapreduce.JobContext)">validateOptions</a></strong>(org.apache.hadoop.mapreduce.JobContext job)</code> +<div class="block"><strong>Deprecated.</strong> +<div class="block"><i>Use <a href="../../../../../../org/apache/accumulo/core/client/mapreduce/InputFormatBase.html#validateOptions(org.apache.hadoop.conf.Configuration)"><code>validateOptions(Configuration)</code></a> instead</i></div> +</div> +</td> +</tr> +</table> +<ul class="blockList"> +<li class="blockList"><a name="methods_inherited_from_class_org.apache.hadoop.mapreduce.InputFormat"> +<!-- --> +</a> +<h3>Methods inherited from class org.apache.hadoop.mapreduce.InputFormat</h3> +<code>createRecordReader</code></li> +</ul> +<ul class="blockList"> +<li class="blockList"><a name="methods_inherited_from_class_java.lang.Object"> +<!-- --> +</a> +<h3>Methods inherited from class java.lang.<a href="http://docs.oracle.com/javase/6/docs/api/java/lang/Object.html?is-external=true" title="class or interface in java.lang">Object</a></h3> +<code><a href="http://docs.oracle.com/javase/6/docs/api/java/lang/Object.html?is-external=true#clone()" title="class or interface in java.lang">clone</a>, <a href="http://docs.oracle.com/javase/6/docs/api/java/lang/Object.html?is-external=true#equals(java.lang.Object)" title="class or interface in java.lang">equals</a>, <a href="http://docs.oracle.com/javase/6/docs/api/java/lang/Object.html?is-external=true#finalize()" title="class or interface in java.lang">finalize</a>, <a href="http://docs.oracle.com/javase/6/docs/api/java/lang/Object.html?is-external=true#getClass()" title="class or interface in java.lang">getClass</a>, <a href="http://docs.oracle.com/javase/6/docs/api/java/lang/Object.html?is-external=true#hashCode()" title="class or interface in java.lang">hashCode</a>, <a href="http://docs.oracle.com/javase/6/docs/api/java/lang/Object.html?is-external=true#notify()" title="class or interface in java.lang">notify</a>, <a href="http://docs.oracle.com/javase/6/docs/api/java/lang /Object.html?is-external=true#notifyAll()" title="class or interface in java.lang">notifyAll</a>, <a href="http://docs.oracle.com/javase/6/docs/api/java/lang/Object.html?is-external=true#toString()" title="class or interface in java.lang">toString</a>, <a href="http://docs.oracle.com/javase/6/docs/api/java/lang/Object.html?is-external=true#wait()" title="class or interface in java.lang">wait</a>, <a href="http://docs.oracle.com/javase/6/docs/api/java/lang/Object.html?is-external=true#wait(long)" title="class or interface in java.lang">wait</a>, <a href="http://docs.oracle.com/javase/6/docs/api/java/lang/Object.html?is-external=true#wait(long,%20int)" title="class or interface in java.lang">wait</a></code></li> +</ul> +</li> +</ul> +</li> +</ul> +</div> +<div class="details"> +<ul class="blockList"> +<li class="blockList"> +<!-- ============ FIELD DETAIL =========== --> +<ul class="blockList"> +<li class="blockList"><a name="field_detail"> +<!-- --> +</a> +<h3>Field Detail</h3> +<a name="log"> +<!-- --> +</a> +<ul class="blockListLast"> +<li class="blockList"> +<h4>log</h4> +<pre>protected static final org.apache.log4j.Logger log</pre> +</li> +</ul> +</li> +</ul> +<!-- ========= CONSTRUCTOR DETAIL ======== --> +<ul class="blockList"> +<li class="blockList"><a name="constructor_detail"> +<!-- --> +</a> +<h3>Constructor Detail</h3> +<a name="InputFormatBase()"> +<!-- --> +</a> +<ul class="blockListLast"> +<li class="blockList"> +<h4>InputFormatBase</h4> +<pre>public InputFormatBase()</pre> +</li> +</ul> +</li> +</ul> +<!-- ============ METHOD DETAIL ========== --> +<ul class="blockList"> +<li class="blockList"><a name="method_detail"> +<!-- --> +</a> +<h3>Method Detail</h3> +<a name="setIsolated(org.apache.hadoop.mapreduce.JobContext, boolean)"> +<!-- --> +</a> +<ul class="blockList"> +<li class="blockList"> +<h4>setIsolated</h4> +<pre><a href="http://docs.oracle.com/javase/6/docs/api/java/lang/Deprecated.html?is-external=true" title="class or interface in java.lang">@Deprecated</a> +public static void setIsolated(org.apache.hadoop.mapreduce.JobContext job, + boolean enable)</pre> +<div class="block"><span class="strong">Deprecated.</span> <i>Use <a href="../../../../../../org/apache/accumulo/core/client/mapreduce/InputFormatBase.html#setIsolated(org.apache.hadoop.conf.Configuration,%20boolean)"><code>setIsolated(Configuration,boolean)</code></a> instead</i></div> +</li> +</ul> +<a name="setIsolated(org.apache.hadoop.conf.Configuration, boolean)"> +<!-- --> +</a> +<ul class="blockList"> +<li class="blockList"> +<h4>setIsolated</h4> +<pre>public static void setIsolated(org.apache.hadoop.conf.Configuration conf, + boolean enable)</pre> +<div class="block">Enable or disable use of the <a href="../../../../../../org/apache/accumulo/core/client/IsolatedScanner.html" title="class in org.apache.accumulo.core.client"><code>IsolatedScanner</code></a> in this configuration object. By default it is not enabled.</div> +<dl><dt><span class="strong">Parameters:</span></dt><dd><code>conf</code> - The Hadoop configuration object</dd><dd><code>enable</code> - if true, enable usage of the IsolatedScanner. Otherwise, disable.</dd></dl> +</li> +</ul> +<a name="setLocalIterators(org.apache.hadoop.mapreduce.JobContext, boolean)"> +<!-- --> +</a> +<ul class="blockList"> +<li class="blockList"> +<h4>setLocalIterators</h4> +<pre><a href="http://docs.oracle.com/javase/6/docs/api/java/lang/Deprecated.html?is-external=true" title="class or interface in java.lang">@Deprecated</a> +public static void setLocalIterators(org.apache.hadoop.mapreduce.JobContext job, + boolean enable)</pre> +<div class="block"><span class="strong">Deprecated.</span> <i>Use <a href="../../../../../../org/apache/accumulo/core/client/mapreduce/InputFormatBase.html#setLocalIterators(org.apache.hadoop.conf.Configuration,%20boolean)"><code>setLocalIterators(Configuration,boolean)</code></a> instead</i></div> +</li> +</ul> +<a name="setLocalIterators(org.apache.hadoop.conf.Configuration, boolean)"> +<!-- --> +</a> +<ul class="blockList"> +<li class="blockList"> +<h4>setLocalIterators</h4> +<pre>public static void setLocalIterators(org.apache.hadoop.conf.Configuration conf, + boolean enable)</pre> +<div class="block">Enable or disable use of the <a href="../../../../../../org/apache/accumulo/core/client/ClientSideIteratorScanner.html" title="class in org.apache.accumulo.core.client"><code>ClientSideIteratorScanner</code></a> in this Configuration object. By default it is not enabled.</div> +<dl><dt><span class="strong">Parameters:</span></dt><dd><code>conf</code> - The Hadoop configuration object</dd><dd><code>enable</code> - if true, enable usage of the ClientSideInteratorScanner. Otherwise, disable.</dd></dl> +</li> +</ul> +<a name="setInputInfo(org.apache.hadoop.mapreduce.JobContext, java.lang.String, byte[], java.lang.String, org.apache.accumulo.core.security.Authorizations)"> +<!-- --> +</a> +<ul class="blockList"> +<li class="blockList"> +<h4>setInputInfo</h4> +<pre><a href="http://docs.oracle.com/javase/6/docs/api/java/lang/Deprecated.html?is-external=true" title="class or interface in java.lang">@Deprecated</a> +public static void setInputInfo(org.apache.hadoop.mapreduce.JobContext job, + <a href="http://docs.oracle.com/javase/6/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a> user, + byte[] passwd, + <a href="http://docs.oracle.com/javase/6/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a> table, + <a href="../../../../../../org/apache/accumulo/core/security/Authorizations.html" title="class in org.apache.accumulo.core.security">Authorizations</a> auths)</pre> +<div class="block"><span class="strong">Deprecated.</span> <i>Use <a href="../../../../../../org/apache/accumulo/core/client/mapreduce/InputFormatBase.html#setInputInfo(org.apache.hadoop.conf.Configuration,%20java.lang.String,%20byte[],%20java.lang.String,%20org.apache.accumulo.core.security.Authorizations)"><code>setInputInfo(Configuration,String,byte[],String,Authorizations)</code></a> instead</i></div> +</li> +</ul> +<a name="setInputInfo(org.apache.hadoop.conf.Configuration, java.lang.String, byte[], java.lang.String, org.apache.accumulo.core.security.Authorizations)"> +<!-- --> +</a> +<ul class="blockList"> +<li class="blockList"> +<h4>setInputInfo</h4> +<pre>public static void setInputInfo(org.apache.hadoop.conf.Configuration conf, + <a href="http://docs.oracle.com/javase/6/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a> user, + byte[] passwd, + <a href="http://docs.oracle.com/javase/6/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a> table, + <a href="../../../../../../org/apache/accumulo/core/security/Authorizations.html" title="class in org.apache.accumulo.core.security">Authorizations</a> auths)</pre> +<div class="block">Initialize the user, table, and authorization information for the configuration object that will be used with an Accumulo InputFormat.</div> +<dl><dt><span class="strong">Parameters:</span></dt><dd><code>conf</code> - the Hadoop configuration object</dd><dd><code>user</code> - a valid accumulo user</dd><dd><code>passwd</code> - the user's password</dd><dd><code>table</code> - the table to read</dd><dd><code>auths</code> - the authorizations used to restrict data read</dd></dl> +</li> +</ul> +<a name="setZooKeeperInstance(org.apache.hadoop.mapreduce.JobContext, java.lang.String, java.lang.String)"> +<!-- --> +</a> +<ul class="blockList"> +<li class="blockList"> +<h4>setZooKeeperInstance</h4> +<pre><a href="http://docs.oracle.com/javase/6/docs/api/java/lang/Deprecated.html?is-external=true" title="class or interface in java.lang">@Deprecated</a> +public static void setZooKeeperInstance(org.apache.hadoop.mapreduce.JobContext job, + <a href="http://docs.oracle.com/javase/6/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a> instanceName, + <a href="http://docs.oracle.com/javase/6/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a> zooKeepers)</pre> +<div class="block"><span class="strong">Deprecated.</span> <i>Use <a href="../../../../../../org/apache/accumulo/core/client/mapreduce/InputFormatBase.html#setZooKeeperInstance(org.apache.hadoop.conf.Configuration,%20java.lang.String,%20java.lang.String)"><code>setZooKeeperInstance(Configuration,String,String)</code></a> instead</i></div> +</li> +</ul> +<a name="setZooKeeperInstance(org.apache.hadoop.conf.Configuration, java.lang.String, java.lang.String)"> +<!-- --> +</a> +<ul class="blockList"> +<li class="blockList"> +<h4>setZooKeeperInstance</h4> +<pre>public static void setZooKeeperInstance(org.apache.hadoop.conf.Configuration conf, + <a href="http://docs.oracle.com/javase/6/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a> instanceName, + <a href="http://docs.oracle.com/javase/6/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a> zooKeepers)</pre> +<div class="block">Configure a <a href="../../../../../../org/apache/accumulo/core/client/ZooKeeperInstance.html" title="class in org.apache.accumulo.core.client"><code>ZooKeeperInstance</code></a> for this configuration object.</div> +<dl><dt><span class="strong">Parameters:</span></dt><dd><code>conf</code> - the Hadoop configuration object</dd><dd><code>instanceName</code> - the accumulo instance name</dd><dd><code>zooKeepers</code> - a comma-separated list of zookeeper servers</dd></dl> +</li> +</ul> +<a name="setMockInstance(org.apache.hadoop.mapreduce.JobContext, java.lang.String)"> +<!-- --> +</a> +<ul class="blockList"> +<li class="blockList"> +<h4>setMockInstance</h4> +<pre><a href="http://docs.oracle.com/javase/6/docs/api/java/lang/Deprecated.html?is-external=true" title="class or interface in java.lang">@Deprecated</a> +public static void setMockInstance(org.apache.hadoop.mapreduce.JobContext job, + <a href="http://docs.oracle.com/javase/6/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a> instanceName)</pre> +<div class="block"><span class="strong">Deprecated.</span> <i>Use <a href="../../../../../../org/apache/accumulo/core/client/mapreduce/InputFormatBase.html#setMockInstance(org.apache.hadoop.conf.Configuration,%20java.lang.String)"><code>setMockInstance(Configuration,String)</code></a> instead</i></div> +</li> +</ul> +<a name="setMockInstance(org.apache.hadoop.conf.Configuration, java.lang.String)"> +<!-- --> +</a> +<ul class="blockList"> +<li class="blockList"> +<h4>setMockInstance</h4> +<pre>public static void setMockInstance(org.apache.hadoop.conf.Configuration conf, + <a href="http://docs.oracle.com/javase/6/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a> instanceName)</pre> +<div class="block">Configure a <a href="../../../../../../org/apache/accumulo/core/client/mock/MockInstance.html" title="class in org.apache.accumulo.core.client.mock"><code>MockInstance</code></a> for this configuration object.</div> +<dl><dt><span class="strong">Parameters:</span></dt><dd><code>conf</code> - the Hadoop configuration object</dd><dd><code>instanceName</code> - the accumulo instance name</dd></dl> +</li> +</ul> +<a name="setRanges(org.apache.hadoop.mapreduce.JobContext, java.util.Collection)"> +<!-- --> +</a> +<ul class="blockList"> +<li class="blockList"> +<h4>setRanges</h4> +<pre><a href="http://docs.oracle.com/javase/6/docs/api/java/lang/Deprecated.html?is-external=true" title="class or interface in java.lang">@Deprecated</a> +public static void setRanges(org.apache.hadoop.mapreduce.JobContext job, + <a href="http://docs.oracle.com/javase/6/docs/api/java/util/Collection.html?is-external=true" title="class or interface in java.util">Collection</a><<a href="../../../../../../org/apache/accumulo/core/data/Range.html" title="class in org.apache.accumulo.core.data">Range</a>> ranges)</pre> +<div class="block"><span class="strong">Deprecated.</span> <i>Use <a href="../../../../../../org/apache/accumulo/core/client/mapreduce/InputFormatBase.html#setRanges(org.apache.hadoop.conf.Configuration,%20java.util.Collection)"><code>setRanges(Configuration,Collection)</code></a> instead</i></div> +</li> +</ul> +<a name="setRanges(org.apache.hadoop.conf.Configuration, java.util.Collection)"> +<!-- --> +</a> +<ul class="blockList"> +<li class="blockList"> +<h4>setRanges</h4> +<pre>public static void setRanges(org.apache.hadoop.conf.Configuration conf, + <a href="http://docs.oracle.com/javase/6/docs/api/java/util/Collection.html?is-external=true" title="class or interface in java.util">Collection</a><<a href="../../../../../../org/apache/accumulo/core/data/Range.html" title="class in org.apache.accumulo.core.data">Range</a>> ranges)</pre> +<div class="block">Set the ranges to map over for this configuration object.</div> +<dl><dt><span class="strong">Parameters:</span></dt><dd><code>conf</code> - the Hadoop configuration object</dd><dd><code>ranges</code> - the ranges that will be mapped over</dd></dl> +</li> +</ul> +<a name="disableAutoAdjustRanges(org.apache.hadoop.mapreduce.JobContext)"> +<!-- --> +</a> +<ul class="blockList"> +<li class="blockList"> +<h4>disableAutoAdjustRanges</h4> +<pre><a href="http://docs.oracle.com/javase/6/docs/api/java/lang/Deprecated.html?is-external=true" title="class or interface in java.lang">@Deprecated</a> +public static void disableAutoAdjustRanges(org.apache.hadoop.mapreduce.JobContext job)</pre> +<div class="block"><span class="strong">Deprecated.</span> <i>Use <a href="../../../../../../org/apache/accumulo/core/client/mapreduce/InputFormatBase.html#disableAutoAdjustRanges(org.apache.hadoop.conf.Configuration)"><code>disableAutoAdjustRanges(Configuration)</code></a> instead</i></div> +</li> +</ul> +<a name="disableAutoAdjustRanges(org.apache.hadoop.conf.Configuration)"> +<!-- --> +</a> +<ul class="blockList"> +<li class="blockList"> +<h4>disableAutoAdjustRanges</h4> +<pre>public static void disableAutoAdjustRanges(org.apache.hadoop.conf.Configuration conf)</pre> +<div class="block">Disables the adjustment of ranges for this configuration object. By default, overlapping ranges will be merged and ranges will be fit to existing tablet + boundaries. Disabling this adjustment will cause there to be exactly one mapper per range set using <a href="../../../../../../org/apache/accumulo/core/client/mapreduce/InputFormatBase.html#setRanges(org.apache.hadoop.conf.Configuration,%20java.util.Collection)"><code>setRanges(Configuration, Collection)</code></a>.</div> +<dl><dt><span class="strong">Parameters:</span></dt><dd><code>conf</code> - the Hadoop configuration object</dd></dl> +</li> +</ul> +<a name="setRegex(org.apache.hadoop.mapreduce.JobContext, org.apache.accumulo.core.client.mapreduce.InputFormatBase.RegexType, java.lang.String)"> +<!-- --> +</a> +<ul class="blockList"> +<li class="blockList"> +<h4>setRegex</h4> +<pre><a href="http://docs.oracle.com/javase/6/docs/api/java/lang/Deprecated.html?is-external=true" title="class or interface in java.lang">@Deprecated</a> +public static void setRegex(org.apache.hadoop.mapreduce.JobContext job, + <a href="../../../../../../org/apache/accumulo/core/client/mapreduce/InputFormatBase.RegexType.html" title="enum in org.apache.accumulo.core.client.mapreduce">InputFormatBase.RegexType</a> type, + <a href="http://docs.oracle.com/javase/6/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a> regex)</pre> +<div class="block"><span class="strong">Deprecated.</span> <i>since 1.4 use <a href="../../../../../../org/apache/accumulo/core/client/mapreduce/InputFormatBase.html#addIterator(org.apache.hadoop.conf.Configuration,%20org.apache.accumulo.core.client.IteratorSetting)"><code>addIterator(Configuration, IteratorSetting)</code></a></i></div> +<dl><dt><span class="strong">Parameters:</span></dt><dd><code>job</code> - </dd><dd><code>type</code> - </dd><dd><code>regex</code> - </dd><dt><span class="strong">See Also:</span></dt><dd><code>RegExFilter.setRegexs(IteratorSetting, String, String, String, String, boolean)</code></dd></dl> +</li> +</ul> +<a name="setMaxVersions(org.apache.hadoop.mapreduce.JobContext, int)"> +<!-- --> +</a> +<ul class="blockList"> +<li class="blockList"> +<h4>setMaxVersions</h4> +<pre><a href="http://docs.oracle.com/javase/6/docs/api/java/lang/Deprecated.html?is-external=true" title="class or interface in java.lang">@Deprecated</a> +public static void setMaxVersions(org.apache.hadoop.mapreduce.JobContext job, + int maxVersions) + throws <a href="http://docs.oracle.com/javase/6/docs/api/java/io/IOException.html?is-external=true" title="class or interface in java.io">IOException</a></pre> +<div class="block"><span class="strong">Deprecated.</span> <i>Use <a href="../../../../../../org/apache/accumulo/core/client/mapreduce/InputFormatBase.html#setMaxVersions(org.apache.hadoop.conf.Configuration,%20int)"><code>setMaxVersions(Configuration,int)</code></a> instead</i></div> +<dl><dt><span class="strong">Throws:</span></dt> +<dd><code><a href="http://docs.oracle.com/javase/6/docs/api/java/io/IOException.html?is-external=true" title="class or interface in java.io">IOException</a></code></dd></dl> +</li> +</ul> +<a name="setMaxVersions(org.apache.hadoop.conf.Configuration, int)"> +<!-- --> +</a> +<ul class="blockList"> +<li class="blockList"> +<h4>setMaxVersions</h4> +<pre>public static void setMaxVersions(org.apache.hadoop.conf.Configuration conf, + int maxVersions) + throws <a href="http://docs.oracle.com/javase/6/docs/api/java/io/IOException.html?is-external=true" title="class or interface in java.io">IOException</a></pre> +<div class="block">Sets the max # of values that may be returned for an individual Accumulo cell. By default, applied before all other Accumulo iterators (highest priority) + leveraged in the scan by the record reader. To adjust priority use setIterator() & setIteratorOptions() w/ the VersioningIterator type explicitly.</div> +<dl><dt><span class="strong">Parameters:</span></dt><dd><code>conf</code> - the Hadoop configuration object</dd><dd><code>maxVersions</code> - the max number of versions per accumulo cell</dd> +<dt><span class="strong">Throws:</span></dt> +<dd><code><a href="http://docs.oracle.com/javase/6/docs/api/java/io/IOException.html?is-external=true" title="class or interface in java.io">IOException</a></code> - if maxVersions is < 1</dd></dl> +</li> +</ul> +<a name="setScanOffline(org.apache.hadoop.conf.Configuration, boolean)"> +<!-- --> +</a> +<ul class="blockList"> +<li class="blockList"> +<h4>setScanOffline</h4> +<pre>public static void setScanOffline(org.apache.hadoop.conf.Configuration conf, + boolean scanOff)</pre> +<div class="block"><p> + Enable reading offline tables. This will make the map reduce job directly read the tables files. If the table is not offline, then the job will fail. If + the table comes online during the map reduce job, its likely that the job will fail. + + <p> + To use this option, the map reduce user will need access to read the accumulo directory in HDFS. + + <p> + Reading the offline table will create the scan time iterator stack in the map process. So any iterators that are configured for the table will need to be + on the mappers classpath. + + <p> + One way to use this feature is to clone a table, take the clone offline, and use the clone as the input table for a map reduce job. If you plan to map + reduce over the data many times, it may be better to the compact the table, clone it, take it offline, and use the clone for all map reduce jobs. The + reason to do this is that compaction will reduce each tablet in the table to one file, and its faster to read from one file. + + <p> + There are two possible advantages to reading a tables file directly out of HDFS. First, you may see better read performance. Second, it will support + speculative execution better. When reading an online table speculative execution can put more load on an already slow tablet server.</div> +<dl><dt><span class="strong">Parameters:</span></dt><dd><code>conf</code> - the job</dd><dd><code>scanOff</code> - pass true to read offline tables</dd></dl> +</li> +</ul> +<a name="fetchColumns(org.apache.hadoop.mapreduce.JobContext, java.util.Collection)"> +<!-- --> +</a> +<ul class="blockList"> +<li class="blockList"> +<h4>fetchColumns</h4> +<pre><a href="http://docs.oracle.com/javase/6/docs/api/java/lang/Deprecated.html?is-external=true" title="class or interface in java.lang">@Deprecated</a> +public static void fetchColumns(org.apache.hadoop.mapreduce.JobContext job, + <a href="http://docs.oracle.com/javase/6/docs/api/java/util/Collection.html?is-external=true" title="class or interface in java.util">Collection</a><org.apache.accumulo.core.util.Pair<org.apache.hadoop.io.Text,org.apache.hadoop.io.Text>> columnFamilyColumnQualifierPairs)</pre> +<div class="block"><span class="strong">Deprecated.</span> <i>Use <a href="../../../../../../org/apache/accumulo/core/client/mapreduce/InputFormatBase.html#fetchColumns(org.apache.hadoop.conf.Configuration,%20java.util.Collection)"><code>fetchColumns(Configuration,Collection)</code></a> instead</i></div> +</li> +</ul> +<a name="fetchColumns(org.apache.hadoop.conf.Configuration, java.util.Collection)"> +<!-- --> +</a> +<ul class="blockList"> +<li class="blockList"> +<h4>fetchColumns</h4> +<pre>public static void fetchColumns(org.apache.hadoop.conf.Configuration conf, + <a href="http://docs.oracle.com/javase/6/docs/api/java/util/Collection.html?is-external=true" title="class or interface in java.util">Collection</a><org.apache.accumulo.core.util.Pair<org.apache.hadoop.io.Text,org.apache.hadoop.io.Text>> columnFamilyColumnQualifierPairs)</pre> +<div class="block">Restricts the columns that will be mapped over for this configuration object.</div> +<dl><dt><span class="strong">Parameters:</span></dt><dd><code>conf</code> - the Hadoop configuration object</dd><dd><code>columnFamilyColumnQualifierPairs</code> - A pair of <code>Text</code> objects corresponding to column family and column qualifier. If the column qualifier is null, the entire column family is + selected. An empty set is the default and is equivalent to scanning the all columns.</dd></dl> +</li> +</ul> +<a name="serializeColumns(java.util.Collection)"> +<!-- --> +</a> +<ul class="blockList"> +<li class="blockList"> +<h4>serializeColumns</h4> +<pre>public static <a href="http://docs.oracle.com/javase/6/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a>[] serializeColumns(<a href="http://docs.oracle.com/javase/6/docs/api/java/util/Collection.html?is-external=true" title="class or interface in java.util">Collection</a><org.apache.accumulo.core.util.Pair<org.apache.hadoop.io.Text,org.apache.hadoop.io.Text>> columnFamilyColumnQualifierPairs)</pre> +</li> +</ul> +<a name="setLogLevel(org.apache.hadoop.mapreduce.JobContext, org.apache.log4j.Level)"> +<!-- --> +</a> +<ul class="blockList"> +<li class="blockList"> +<h4>setLogLevel</h4> +<pre><a href="http://docs.oracle.com/javase/6/docs/api/java/lang/Deprecated.html?is-external=true" title="class or interface in java.lang">@Deprecated</a> +public static void setLogLevel(org.apache.hadoop.mapreduce.JobContext job, + org.apache.log4j.Level level)</pre> +<div class="block"><span class="strong">Deprecated.</span> <i>Use <a href="../../../../../../org/apache/accumulo/core/client/mapreduce/InputFormatBase.html#setLogLevel(org.apache.hadoop.conf.Configuration,%20org.apache.log4j.Level)"><code>setLogLevel(Configuration,Level)</code></a> instead</i></div> +</li> +</ul> +<a name="setLogLevel(org.apache.hadoop.conf.Configuration, org.apache.log4j.Level)"> +<!-- --> +</a> +<ul class="blockList"> +<li class="blockList"> +<h4>setLogLevel</h4> +<pre>public static void setLogLevel(org.apache.hadoop.conf.Configuration conf, + org.apache.log4j.Level level)</pre> +<div class="block">Sets the log level for this configuration object.</div> +<dl><dt><span class="strong">Parameters:</span></dt><dd><code>conf</code> - the Hadoop configuration object</dd><dd><code>level</code> - the logging level</dd></dl> +</li> +</ul> +<a name="addIterator(org.apache.hadoop.mapreduce.JobContext, org.apache.accumulo.core.client.IteratorSetting)"> +<!-- --> +</a> +<ul class="blockList"> +<li class="blockList"> +<h4>addIterator</h4> +<pre><a href="http://docs.oracle.com/javase/6/docs/api/java/lang/Deprecated.html?is-external=true" title="class or interface in java.lang">@Deprecated</a> +public static void addIterator(org.apache.hadoop.mapreduce.JobContext job, + <a href="../../../../../../org/apache/accumulo/core/client/IteratorSetting.html" title="class in org.apache.accumulo.core.client">IteratorSetting</a> cfg)</pre> +<div class="block"><span class="strong">Deprecated.</span> <i>Use <a href="../../../../../../org/apache/accumulo/core/client/mapreduce/InputFormatBase.html#addIterator(org.apache.hadoop.conf.Configuration,%20org.apache.accumulo.core.client.IteratorSetting)"><code>addIterator(Configuration,IteratorSetting)</code></a> instead</i></div> +</li> +</ul> +<a name="addIterator(org.apache.hadoop.conf.Configuration, org.apache.accumulo.core.client.IteratorSetting)"> +<!-- --> +</a> +<ul class="blockList"> +<li class="blockList"> +<h4>addIterator</h4> +<pre>public static void addIterator(org.apache.hadoop.conf.Configuration conf, + <a href="../../../../../../org/apache/accumulo/core/client/IteratorSetting.html" title="class in org.apache.accumulo.core.client">IteratorSetting</a> cfg)</pre> +<div class="block">Encode an iterator on the input for this configuration object.</div> +<dl><dt><span class="strong">Parameters:</span></dt><dd><code>conf</code> - The Hadoop configuration in which to save the iterator configuration</dd><dd><code>cfg</code> - The configuration of the iterator</dd></dl> +</li> +</ul> +<a name="setIterator(org.apache.hadoop.mapreduce.JobContext, int, java.lang.String, java.lang.String)"> +<!-- --> +</a> +<ul class="blockList"> +<li class="blockList"> +<h4>setIterator</h4> +<pre><a href="http://docs.oracle.com/javase/6/docs/api/java/lang/Deprecated.html?is-external=true" title="class or interface in java.lang">@Deprecated</a> +public static void setIterator(org.apache.hadoop.mapreduce.JobContext job, + int priority, + <a href="http://docs.oracle.com/javase/6/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a> iteratorClass, + <a href="http://docs.oracle.com/javase/6/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a> iteratorName)</pre> +<div class="block"><span class="strong">Deprecated.</span> <i>since 1.4, see <a href="../../../../../../org/apache/accumulo/core/client/mapreduce/InputFormatBase.html#addIterator(org.apache.hadoop.conf.Configuration,%20org.apache.accumulo.core.client.IteratorSetting)"><code>addIterator(Configuration, IteratorSetting)</code></a></i></div> +<div class="block">Specify an Accumulo iterator type to manage the behavior of the underlying table scan this InputFormat's RecordReader will conduct, w/ priority dictating + the order in which specified iterators are applied. Repeat calls to specify multiple iterators are allowed.</div> +<dl><dt><span class="strong">Parameters:</span></dt><dd><code>job</code> - the job</dd><dd><code>priority</code> - the priority</dd><dd><code>iteratorClass</code> - the iterator class</dd><dd><code>iteratorName</code> - the iterator name</dd></dl> +</li> +</ul> +<a name="setIteratorOption(org.apache.hadoop.mapreduce.JobContext, java.lang.String, java.lang.String, java.lang.String)"> +<!-- --> +</a> +<ul class="blockList"> +<li class="blockList"> +<h4>setIteratorOption</h4> +<pre><a href="http://docs.oracle.com/javase/6/docs/api/java/lang/Deprecated.html?is-external=true" title="class or interface in java.lang">@Deprecated</a> +public static void setIteratorOption(org.apache.hadoop.mapreduce.JobContext job, + <a href="http://docs.oracle.com/javase/6/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a> iteratorName, + <a href="http://docs.oracle.com/javase/6/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a> key, + <a href="http://docs.oracle.com/javase/6/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a> value)</pre> +<div class="block"><span class="strong">Deprecated.</span> <i>since 1.4, see <a href="../../../../../../org/apache/accumulo/core/client/mapreduce/InputFormatBase.html#addIterator(org.apache.hadoop.conf.Configuration,%20org.apache.accumulo.core.client.IteratorSetting)"><code>addIterator
<TRUNCATED>
