Class OutputConfigurator
java.lang.Object
org.apache.accumulo.core.client.mapreduce.lib.util.ConfiguratorBase
org.apache.accumulo.core.client.mapreduce.lib.util.OutputConfigurator
Deprecated.
since 1.6.0; Configure your job with the appropriate InputFormat or OutputFormat.
- Since:
- 1.5.0
-
Nested Class Summary
Nested ClassesModifier and TypeClassDescriptionstatic enum
Deprecated.since 1.6.0; Configure your job with the appropriate InputFormat or OutputFormat.static enum
Deprecated.since 1.6.0; Configure your job with the appropriate InputFormat or OutputFormat.Nested classes/interfaces inherited from class org.apache.accumulo.core.client.mapreduce.lib.util.ConfiguratorBase
ConfiguratorBase.ConnectorInfo, ConfiguratorBase.GeneralOpts, ConfiguratorBase.InstanceOpts
-
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionstatic Boolean
canCreateTables
(Class<?> implementingClass, org.apache.hadoop.conf.Configuration conf) Deprecated.since 1.6.0; Configure your job with the appropriate InputFormat or OutputFormat.static BatchWriterConfig
getBatchWriterOptions
(Class<?> implementingClass, org.apache.hadoop.conf.Configuration conf) Deprecated.since 1.6.0; Configure your job with the appropriate InputFormat or OutputFormat.static String
getDefaultTableName
(Class<?> implementingClass, org.apache.hadoop.conf.Configuration conf) Deprecated.since 1.6.0; Configure your job with the appropriate InputFormat or OutputFormat.static Boolean
getSimulationMode
(Class<?> implementingClass, org.apache.hadoop.conf.Configuration conf) Deprecated.since 1.6.0; Configure your job with the appropriate InputFormat or OutputFormat.static void
setBatchWriterOptions
(Class<?> implementingClass, org.apache.hadoop.conf.Configuration conf, BatchWriterConfig bwConfig) Deprecated.since 1.6.0; Configure your job with the appropriate InputFormat or OutputFormat.static void
setCreateTables
(Class<?> implementingClass, org.apache.hadoop.conf.Configuration conf, boolean enableFeature) Deprecated.since 1.6.0; Configure your job with the appropriate InputFormat or OutputFormat.static void
setDefaultTableName
(Class<?> implementingClass, org.apache.hadoop.conf.Configuration conf, String tableName) Deprecated.since 1.6.0; Configure your job with the appropriate InputFormat or OutputFormat.static void
setSimulationMode
(Class<?> implementingClass, org.apache.hadoop.conf.Configuration conf, boolean enableFeature) Deprecated.since 1.6.0; Configure your job with the appropriate InputFormat or OutputFormat.Methods inherited from class org.apache.accumulo.core.client.mapreduce.lib.util.ConfiguratorBase
enumToConfKey, getInstance, getLogLevel, getPrincipal, getToken, getTokenClass, isConnectorInfoSet, setConnectorInfo, setLogLevel, setMockInstance, setZooKeeperInstance
-
Constructor Details
-
OutputConfigurator
public OutputConfigurator()Deprecated.
-
-
Method Details
-
setDefaultTableName
@Deprecated public static void setDefaultTableName(Class<?> implementingClass, org.apache.hadoop.conf.Configuration conf, String tableName) Deprecated.since 1.6.0; Configure your job with the appropriate InputFormat or OutputFormat.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:
implementingClass
- the class whose name will be used as a prefix for the property configuration keyconf
- the Hadoop configuration object to configuretableName
- the table to use when the tablename is null in the write call- Since:
- 1.5.0
-
getDefaultTableName
@Deprecated public static String getDefaultTableName(Class<?> implementingClass, org.apache.hadoop.conf.Configuration conf) Deprecated.since 1.6.0; Configure your job with the appropriate InputFormat or OutputFormat.Gets the default table name from the configuration.- Parameters:
implementingClass
- the class whose name will be used as a prefix for the property configuration keyconf
- the Hadoop configuration object to configure- Returns:
- the default table name
- Since:
- 1.5.0
- See Also:
-
setBatchWriterOptions
@Deprecated public static void setBatchWriterOptions(Class<?> implementingClass, org.apache.hadoop.conf.Configuration conf, BatchWriterConfig bwConfig) Deprecated.since 1.6.0; Configure your job with the appropriate InputFormat or OutputFormat.Sets the configuration for for the job'sBatchWriter
instances. If not set, a newBatchWriterConfig
, with sensible built-in defaults is used. Setting the configuration multiple times overwrites any previous configuration.- Parameters:
implementingClass
- the class whose name will be used as a prefix for the property configuration keyconf
- the Hadoop configuration object to configurebwConfig
- the configuration for theBatchWriter
- Since:
- 1.5.0
-
getBatchWriterOptions
@Deprecated public static BatchWriterConfig getBatchWriterOptions(Class<?> implementingClass, org.apache.hadoop.conf.Configuration conf) Deprecated.since 1.6.0; Configure your job with the appropriate InputFormat or OutputFormat.Gets theBatchWriterConfig
settings.- Parameters:
implementingClass
- the class whose name will be used as a prefix for the property configuration keyconf
- the Hadoop configuration object to configure- Returns:
- the configuration object
- Since:
- 1.5.0
- See Also:
-
setCreateTables
@Deprecated public static void setCreateTables(Class<?> implementingClass, org.apache.hadoop.conf.Configuration conf, boolean enableFeature) Deprecated.since 1.6.0; Configure your job with the appropriate InputFormat or OutputFormat.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:
implementingClass
- the class whose name will be used as a prefix for the property configuration keyconf
- the Hadoop configuration object to configureenableFeature
- the feature is enabled if true, disabled otherwise- Since:
- 1.5.0
-
canCreateTables
@Deprecated public static Boolean canCreateTables(Class<?> implementingClass, org.apache.hadoop.conf.Configuration conf) Deprecated.since 1.6.0; Configure your job with the appropriate InputFormat or OutputFormat.Determines whether tables are permitted to be created as needed.- Parameters:
implementingClass
- the class whose name will be used as a prefix for the property configuration keyconf
- the Hadoop configuration object to configure- Returns:
- true if the feature is disabled, false otherwise
- Since:
- 1.5.0
- See Also:
-
setSimulationMode
@Deprecated public static void setSimulationMode(Class<?> implementingClass, org.apache.hadoop.conf.Configuration conf, boolean enableFeature) Deprecated.since 1.6.0; Configure your job with the appropriate InputFormat or OutputFormat.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:
implementingClass
- the class whose name will be used as a prefix for the property configuration keyconf
- the Hadoop configuration object to configureenableFeature
- the feature is enabled if true, disabled otherwise- Since:
- 1.5.0
-
getSimulationMode
@Deprecated public static Boolean getSimulationMode(Class<?> implementingClass, org.apache.hadoop.conf.Configuration conf) Deprecated.since 1.6.0; Configure your job with the appropriate InputFormat or OutputFormat.Determines whether this feature is enabled.- Parameters:
implementingClass
- the class whose name will be used as a prefix for the property configuration keyconf
- the Hadoop configuration object to configure- Returns:
- true if the feature is enabled, false otherwise
- Since:
- 1.5.0
- See Also:
-