Interface InputFormatBuilder.ClientParams<T>
- Enclosing interface:
- InputFormatBuilder
public static interface InputFormatBuilder.ClientParams<T>
Required params for builder
- Since:
- 2.0
-
Method Summary
Modifier and TypeMethodDescriptionclientProperties
(Properties clientProperties) Set client properties needed to communicate with Accumulo for this job.clientPropertiesPath
(String clientPropsPath) Set path to DFS location containing accumulo-client.properties file.
-
Method Details
-
clientProperties
Set client properties needed to communicate with Accumulo for this job. This information will be serialized into the configuration. Therefore, it is more secure to useclientPropertiesPath(String)
. Client properties can be created usingAccumulo.newClientProperties()
- Parameters:
clientProperties
- Accumulo connection information
-
clientPropertiesPath
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
-