Interface OutputFormatBuilder.ClientParams<T>
-
- All Known Implementing Classes:
OutputFormatBuilderImpl
- Enclosing interface:
- OutputFormatBuilder
public static interface OutputFormatBuilder.ClientParams<T>
Required params for client- Since:
- 2.0
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description OutputFormatBuilder.OutputOptions<T>
clientProperties(Properties clientProperties)
Set the connection information needed to communicate with Accumulo in this job.OutputFormatBuilder.OutputOptions<T>
clientPropertiesPath(String clientPropsPath)
Set path to DFS location containing accumulo-client.properties file.
-
-
-
Method Detail
-
clientProperties
OutputFormatBuilder.OutputOptions<T> clientProperties(Properties clientProperties)
Set the connection information needed to communicate with Accumulo in this job. clientProperties param can be created usingAccumulo.newClientProperties()
. Client properties will be serialized into configuration. Therefore it is more secure to useclientPropertiesPath(String)
- Parameters:
clientProperties
- Accumulo connection information
-
clientPropertiesPath
OutputFormatBuilder.OutputOptions<T> clientPropertiesPath(String clientPropsPath)
Set path to DFS location containing accumulo-client.properties file. This setting is more secure thanclientProperties(Properties)
- Parameters:
clientPropsPath
- DFS path to accumulo-client.properties
-
-