Class AccumuloOutputFormat
java.lang.Object
org.apache.hadoop.mapreduce.OutputFormat<org.apache.hadoop.io.Text,Mutation>
org.apache.accumulo.core.client.mapreduce.AccumuloOutputFormat
public class AccumuloOutputFormat
extends org.apache.hadoop.mapreduce.OutputFormat<org.apache.hadoop.io.Text,Mutation>
This class allows MapReduce jobs to use Accumulo as the sink for data. This
OutputFormat
accepts keys and values of type Text (for a table name) and Mutation from the Map
and Reduce functions.
The user must specify the following via static configurator methods:
Other static methods are optional.-
Nested Class Summary
Nested ClassesModifier and TypeClassDescriptionprotected static classA base class to be used to createRecordWriterinstances that write to Accumulo. -
Field Summary
Fields -
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionprotected static BooleancanCreateTables(org.apache.hadoop.mapreduce.JobContext context) Determines whether tables are permitted to be created as needed.voidcheckOutputSpecs(org.apache.hadoop.mapreduce.JobContext job) protected static AuthenticationTokengetAuthenticationToken(org.apache.hadoop.mapreduce.JobContext context) Gets the authenticated token from either the specified token file or directly from the configuration, whichever was used when the job was configured.protected static BatchWriterConfiggetBatchWriterOptions(org.apache.hadoop.mapreduce.JobContext context) Gets theBatchWriterConfigsettings.protected static StringgetDefaultTableName(org.apache.hadoop.mapreduce.JobContext context) Gets the default table name from the configuration.protected static InstancegetInstance(org.apache.hadoop.mapreduce.JobContext context) Initializes an AccumuloInstancebased on the configuration.protected static org.apache.log4j.LevelgetLogLevel(org.apache.hadoop.mapreduce.JobContext context) Gets the log level from this configuration.org.apache.hadoop.mapreduce.OutputCommittergetOutputCommitter(org.apache.hadoop.mapreduce.TaskAttemptContext context) protected static StringgetPrincipal(org.apache.hadoop.mapreduce.JobContext context) Gets the user name from the configuration.org.apache.hadoop.mapreduce.RecordWriter<org.apache.hadoop.io.Text,Mutation> getRecordWriter(org.apache.hadoop.mapreduce.TaskAttemptContext attempt) protected static BooleangetSimulationMode(org.apache.hadoop.mapreduce.JobContext context) Determines whether this feature is enabled.protected static byte[]getToken(org.apache.hadoop.mapreduce.JobContext context) Deprecated.protected static StringgetTokenClass(org.apache.hadoop.mapreduce.JobContext context) Deprecated.since 1.6.0; UsegetAuthenticationToken(JobContext)instead.protected static BooleanisConnectorInfoSet(org.apache.hadoop.mapreduce.JobContext context) Determines if the connector has been configured.static voidsetBatchWriterOptions(org.apache.hadoop.mapreduce.Job job, BatchWriterConfig bwConfig) Sets the configuration for for the job'sBatchWriterinstances.static voidsetConnectorInfo(org.apache.hadoop.mapreduce.Job job, String principal, String tokenFile) Sets the connector information needed to communicate with Accumulo in this job.static voidsetConnectorInfo(org.apache.hadoop.mapreduce.Job job, String principal, AuthenticationToken token) Sets the connector information needed to communicate with Accumulo in this job.static voidsetCreateTables(org.apache.hadoop.mapreduce.Job job, boolean enableFeature) Sets the directive to create new tables, as necessary.static voidsetDefaultTableName(org.apache.hadoop.mapreduce.Job job, String tableName) Sets the default table name to use if one emits a null in place of a table name for a given mutation.static voidsetLogLevel(org.apache.hadoop.mapreduce.Job job, org.apache.log4j.Level level) Sets the log level for this job.static voidsetMockInstance(org.apache.hadoop.mapreduce.Job job, String instanceName) Deprecated.static voidsetSimulationMode(org.apache.hadoop.mapreduce.Job job, boolean enableFeature) Sets the directive to use simulation mode for this job.static voidsetZooKeeperInstance(org.apache.hadoop.mapreduce.Job job, String instanceName, String zooKeepers) Deprecated.since 1.6.0; UsesetZooKeeperInstance(Job, ClientConfiguration)instead.static voidsetZooKeeperInstance(org.apache.hadoop.mapreduce.Job job, ClientConfiguration clientConfig) Configures aZooKeeperInstancefor this job.
-
Field Details
-
log
protected static final org.apache.log4j.Logger log
-
-
Constructor Details
-
AccumuloOutputFormat
public AccumuloOutputFormat()
-
-
Method Details
-
setConnectorInfo
public static void setConnectorInfo(org.apache.hadoop.mapreduce.Job job, String principal, AuthenticationToken token) throws AccumuloSecurityException Sets the connector information needed to communicate with Accumulo in this job.WARNING: Some tokens, when serialized, divulge sensitive information in the configuration as a means to pass the token to MapReduce tasks. This information is BASE64 encoded to provide a charset safe conversion to a string, but this conversion is not intended to be secure.
PasswordTokenis one example that is insecure in this way; howeverDelegationTokens, acquired usingSecurityOperations.getDelegationToken(DelegationTokenConfig), is not subject to this concern.- Parameters:
job- the Hadoop job instance to be configuredprincipal- a valid Accumulo user name (user must have Table.CREATE permission ifsetCreateTables(Job, boolean)is set to true)token- the user's password- Throws:
AccumuloSecurityException- Since:
- 1.5.0
-
setConnectorInfo
public static void setConnectorInfo(org.apache.hadoop.mapreduce.Job job, String principal, String tokenFile) throws AccumuloSecurityException Sets the connector information needed to communicate with Accumulo in this job.Stores the password in a file in HDFS and pulls that into the Distributed Cache in an attempt to be more secure than storing it in the Configuration.
- Parameters:
job- the Hadoop job instance to be configuredprincipal- a valid Accumulo user name (user must have Table.CREATE permission ifsetCreateTables(Job, boolean)is set to true)tokenFile- the path to the token file- Throws:
AccumuloSecurityException- Since:
- 1.6.0
-
isConnectorInfoSet
Determines if the connector has been configured.- Parameters:
context- the Hadoop context for the configured job- Returns:
- true if the connector has been configured, false otherwise
- Since:
- 1.5.0
- See Also:
-
getPrincipal
Gets the user name from the configuration.- Parameters:
context- the Hadoop context for the configured job- Returns:
- the user name
- Since:
- 1.5.0
- See Also:
-
getTokenClass
Deprecated.since 1.6.0; UsegetAuthenticationToken(JobContext)instead.Gets the serialized token class from either the configuration or the token file.- Since:
- 1.5.0
-
getToken
Deprecated.since 1.6.0; UsegetAuthenticationToken(JobContext)instead.Gets the serialized token from either the configuration or the token file.- Since:
- 1.5.0
-
getAuthenticationToken
protected static AuthenticationToken getAuthenticationToken(org.apache.hadoop.mapreduce.JobContext context) Gets the authenticated token from either the specified token file or directly from the configuration, whichever was used when the job was configured.- Parameters:
context- the Hadoop context for the configured job- Returns:
- the principal's authentication token
- Since:
- 1.6.0
- See Also:
-
setZooKeeperInstance
@Deprecated public static void setZooKeeperInstance(org.apache.hadoop.mapreduce.Job job, String instanceName, String zooKeepers) Deprecated.since 1.6.0; UsesetZooKeeperInstance(Job, ClientConfiguration)instead.Configures aZooKeeperInstancefor this job.- Parameters:
job- the Hadoop job instance to be configuredinstanceName- the Accumulo instance namezooKeepers- a comma-separated list of zookeeper servers- Since:
- 1.5.0
-
setZooKeeperInstance
public static void setZooKeeperInstance(org.apache.hadoop.mapreduce.Job job, ClientConfiguration clientConfig) Configures aZooKeeperInstancefor this job.- Parameters:
job- the Hadoop job instance to be configuredclientConfig- client configuration for specifying connection timeouts, SSL connection options, etc.- Since:
- 1.6.0
-
setMockInstance
@Deprecated public static void setMockInstance(org.apache.hadoop.mapreduce.Job job, String instanceName) Deprecated.Configures aMockInstancefor this job.- Parameters:
job- the Hadoop job instance to be configuredinstanceName- the Accumulo instance name- Since:
- 1.5.0
-
getInstance
Initializes an AccumuloInstancebased on the configuration.- Parameters:
context- the Hadoop context for the configured job- Returns:
- an Accumulo instance
- Since:
- 1.5.0
- See Also:
-
setLogLevel
public static void setLogLevel(org.apache.hadoop.mapreduce.Job job, org.apache.log4j.Level level) Sets the log level for this job.- Parameters:
job- the Hadoop job instance to be configuredlevel- the logging level- Since:
- 1.5.0
-
getLogLevel
protected static org.apache.log4j.Level getLogLevel(org.apache.hadoop.mapreduce.JobContext context) Gets the log level from this configuration.- Parameters:
context- the Hadoop context for the configured job- Returns:
- the log level
- Since:
- 1.5.0
- See Also:
-
setDefaultTableName
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:
job- the Hadoop job instance to be configuredtableName- the table to use when the tablename is null in the write call- Since:
- 1.5.0
-
getDefaultTableName
Gets the default table name from the configuration.- Parameters:
context- the Hadoop context for the configured job- Returns:
- the default table name
- Since:
- 1.5.0
- See Also:
-
setBatchWriterOptions
public static void setBatchWriterOptions(org.apache.hadoop.mapreduce.Job job, BatchWriterConfig bwConfig) Sets the configuration for for the job'sBatchWriterinstances. If not set, a newBatchWriterConfig, with sensible built-in defaults is used. Setting the configuration multiple times overwrites any previous configuration.- Parameters:
job- the Hadoop job instance to be configuredbwConfig- the configuration for theBatchWriter- Since:
- 1.5.0
-
getBatchWriterOptions
protected static BatchWriterConfig getBatchWriterOptions(org.apache.hadoop.mapreduce.JobContext context) Gets theBatchWriterConfigsettings.- Parameters:
context- the Hadoop context for the configured job- Returns:
- the configuration object
- Since:
- 1.5.0
- See Also:
-
setCreateTables
public static void setCreateTables(org.apache.hadoop.mapreduce.Job job, boolean enableFeature) Sets the directive to create new tables, as necessary. Table names can only be alpha-numeric and underscores.By default, this feature is disabled.
- Parameters:
job- the Hadoop job instance to be configuredenableFeature- the feature is enabled if true, disabled otherwise- Since:
- 1.5.0
-
canCreateTables
Determines whether tables are permitted to be created as needed.- Parameters:
context- the Hadoop context for the configured job- Returns:
- true if the feature is disabled, false otherwise
- Since:
- 1.5.0
- See Also:
-
setSimulationMode
public static void setSimulationMode(org.apache.hadoop.mapreduce.Job job, boolean enableFeature) Sets the directive to use simulation mode for this job. In simulation mode, no output is produced. This is useful for testing.By default, this feature is disabled.
- Parameters:
job- the Hadoop job instance to be configuredenableFeature- the feature is enabled if true, disabled otherwise- Since:
- 1.5.0
-
getSimulationMode
Determines whether this feature is enabled.- Parameters:
context- the Hadoop context for the configured job- Returns:
- true if the feature is enabled, false otherwise
- Since:
- 1.5.0
- See Also:
-
checkOutputSpecs
- Specified by:
checkOutputSpecsin classorg.apache.hadoop.mapreduce.OutputFormat<org.apache.hadoop.io.Text,Mutation> - Throws:
IOException
-
getOutputCommitter
public org.apache.hadoop.mapreduce.OutputCommitter getOutputCommitter(org.apache.hadoop.mapreduce.TaskAttemptContext context) - Specified by:
getOutputCommitterin classorg.apache.hadoop.mapreduce.OutputFormat<org.apache.hadoop.io.Text,Mutation>
-
getRecordWriter
public org.apache.hadoop.mapreduce.RecordWriter<org.apache.hadoop.io.Text,Mutation> getRecordWriter(org.apache.hadoop.mapreduce.TaskAttemptContext attempt) throws IOException - Specified by:
getRecordWriterin classorg.apache.hadoop.mapreduce.OutputFormat<org.apache.hadoop.io.Text,Mutation> - Throws:
IOException
-
getAuthenticationToken(JobContext)instead.