Interface InputFormatBuilder.TableParams<T>
-
- All Known Subinterfaces:
InputFormatBuilder.InputFormatOptions<T>
- All Known Implementing Classes:
InputFormatBuilderImpl
- Enclosing interface:
- InputFormatBuilder
public static interface InputFormatBuilder.TableParams<T>
Required params for builder- Since:
- 2.0
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description void
store(T j)
Finish configuring, verify and serialize options into the JobConf or JobInputFormatBuilder.InputFormatOptions<T>
table(String tableName)
Sets the name of the input table, over which this job will scan.
-
-
-
Method Detail
-
table
InputFormatBuilder.InputFormatOptions<T> table(String tableName)
Sets the name of the input table, over which this job will scan. At least one table is required before calling store(Job)- Parameters:
tableName
- the table to use when the tablename is null in the write call
-
store
void store(T j) throws AccumuloException, AccumuloSecurityException
Finish configuring, verify and serialize options into the JobConf or Job
-
-