Interface OutputFormatBuilder.OutputOptions<T>
-
- All Known Implementing Classes:
OutputFormatBuilderImpl
- Enclosing interface:
- OutputFormatBuilder
public static interface OutputFormatBuilder.OutputOptions<T>
Builder options- Since:
- 2.0
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description OutputFormatBuilder.OutputOptions<T>
createTables(boolean value)
Enables the directive to create new tables, as necessary.OutputFormatBuilder.OutputOptions<T>
defaultTable(String tableName)
Sets the default table name to use if one emits a null in place of a table name for a given mutation.void
store(T j)
Finish configuring, verify and serialize options into the Job or JobConf
-
-
-
Method Detail
-
defaultTable
OutputFormatBuilder.OutputOptions<T> defaultTable(String tableName)
Sets the default table name to use if one emits a null in place of a table name for a given mutation. Table names can only be alpha-numeric and underscores.- Parameters:
tableName
- the table to use when the tablename is null in the write call
-
createTables
OutputFormatBuilder.OutputOptions<T> createTables(boolean value)
Enables the directive to create new tables, as necessary. Table names can only be alpha-numeric and underscores.By default, this feature is disabled.
-
store
void store(T j)
Finish configuring, verify and serialize options into the Job or JobConf
-
-