Interface InputFormatBuilder.ClientParams<T>
-
- All Known Implementing Classes:
InputFormatBuilderImpl
- Enclosing interface:
- InputFormatBuilder
public static interface InputFormatBuilder.ClientParams<T>
Required params for builder- Since:
- 2.0
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description InputFormatBuilder.TableParams<T>
clientProperties(Properties clientProperties)
Set client properties needed to communicate with Accumulo for this job.InputFormatBuilder.TableParams<T>
clientPropertiesPath(String clientPropsPath)
Set path to DFS location containing accumulo-client.properties file.
-
-
-
Method Detail
-
clientProperties
InputFormatBuilder.TableParams<T> clientProperties(Properties 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
InputFormatBuilder.TableParams<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
-
-