Interface TableOperations.ImportOptions
- All Known Subinterfaces:
TableOperations.ImportMappingOptions
- Enclosing interface:
- TableOperations
public static interface TableOperations.ImportOptions
- Since:
- 2.0.0
-
Method Summary
Modifier and TypeMethodDescriptionignoreEmptyDir
(boolean ignore) Ignores empty bulk import source directory, rather than throwing an IllegalArgumentException.void
load()
Loads the files into the table.tableTime
(boolean value) Use table's next timestamp to override all timestamps in imported files.
-
Method Details
-
tableTime
Use table's next timestamp to override all timestamps in imported files. The type of timestamp used depends on how the table was created.- Parameters:
value
- override the time values in the input files, and use the current time for all mutations- See Also:
-
ignoreEmptyDir
Ignores empty bulk import source directory, rather than throwing an IllegalArgumentException.- Since:
- 2.1.0
-
load
void load() throws TableNotFoundException, IOException, AccumuloException, AccumuloSecurityExceptionLoads the files into the table.
-