Class FileOutputConfigurator
java.lang.Object
org.apache.accumulo.core.client.mapreduce.lib.util.ConfiguratorBase
org.apache.accumulo.core.client.mapreduce.lib.util.FileOutputConfigurator
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.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 org.apache.accumulo.core.conf.AccumuloConfiguration
getAccumuloConfiguration
(Class<?> implementingClass, org.apache.hadoop.conf.Configuration conf) Deprecated.since 1.6.0; Configure your job with the appropriate InputFormat or OutputFormat.protected static Boolean
isSupportedAccumuloProperty
(org.apache.accumulo.core.conf.Property property) Deprecated.since 1.6.0; Configure your job with the appropriate InputFormat or OutputFormat.static void
setCompressionType
(Class<?> implementingClass, org.apache.hadoop.conf.Configuration conf, String compressionType) Deprecated.since 1.6.0; Configure your job with the appropriate InputFormat or OutputFormat.static void
setDataBlockSize
(Class<?> implementingClass, org.apache.hadoop.conf.Configuration conf, long dataBlockSize) Deprecated.since 1.6.0; Configure your job with the appropriate InputFormat or OutputFormat.static void
setFileBlockSize
(Class<?> implementingClass, org.apache.hadoop.conf.Configuration conf, long fileBlockSize) Deprecated.since 1.6.0; Configure your job with the appropriate InputFormat or OutputFormat.static void
setIndexBlockSize
(Class<?> implementingClass, org.apache.hadoop.conf.Configuration conf, long indexBlockSize) Deprecated.since 1.6.0; Configure your job with the appropriate InputFormat or OutputFormat.static void
setReplication
(Class<?> implementingClass, org.apache.hadoop.conf.Configuration conf, int replication) 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
-
FileOutputConfigurator
public FileOutputConfigurator()Deprecated.
-
-
Method Details
-
isSupportedAccumuloProperty
@Deprecated protected static Boolean isSupportedAccumuloProperty(org.apache.accumulo.core.conf.Property property) Deprecated.since 1.6.0; Configure your job with the appropriate InputFormat or OutputFormat.The supported Accumulo properties we set in this OutputFormat, that change the behavior of the RecordWriter.
These properties correspond to the supported public static setter methods available to this class.- Parameters:
property
- the Accumulo property to check- Since:
- 1.5.0
-
getAccumuloConfiguration
@Deprecated public static org.apache.accumulo.core.conf.AccumuloConfiguration getAccumuloConfiguration(Class<?> implementingClass, org.apache.hadoop.conf.Configuration conf) Deprecated.since 1.6.0; Configure your job with the appropriate InputFormat or OutputFormat.This helper method provides an AccumuloConfiguration object constructed from the Accumulo defaults, and overridden with Accumulo properties that have been stored in the Job's configuration.- Parameters:
implementingClass
- the class whose name will be used as a prefix for the property configuration keyconf
- the Hadoop configuration object to configure- Since:
- 1.5.0
-
setCompressionType
@Deprecated public static void setCompressionType(Class<?> implementingClass, org.apache.hadoop.conf.Configuration conf, String compressionType) Deprecated.since 1.6.0; Configure your job with the appropriate InputFormat or OutputFormat.Sets the compression type to use for data blocks. Specifying a compression may require additional libraries to be available to your Job.- Parameters:
implementingClass
- the class whose name will be used as a prefix for the property configuration keyconf
- the Hadoop configuration object to configurecompressionType
- one of "none", "gz", "lzo", or "snappy"- Since:
- 1.5.0
-
setDataBlockSize
@Deprecated public static void setDataBlockSize(Class<?> implementingClass, org.apache.hadoop.conf.Configuration conf, long dataBlockSize) Deprecated.since 1.6.0; Configure your job with the appropriate InputFormat or OutputFormat.Sets the size for data blocks within each file.
Data blocks are a span of key/value pairs stored in the file that are compressed and indexed as a group.Making this value smaller may increase seek performance, but at the cost of increasing the size of the indexes (which can also affect seek performance).
- Parameters:
implementingClass
- the class whose name will be used as a prefix for the property configuration keyconf
- the Hadoop configuration object to configuredataBlockSize
- the block size, in bytes- Since:
- 1.5.0
-
setFileBlockSize
@Deprecated public static void setFileBlockSize(Class<?> implementingClass, org.apache.hadoop.conf.Configuration conf, long fileBlockSize) Deprecated.since 1.6.0; Configure your job with the appropriate InputFormat or OutputFormat.Sets the size for file blocks in the file system; file blocks are managed, and replicated, by the underlying file system.- Parameters:
implementingClass
- the class whose name will be used as a prefix for the property configuration keyconf
- the Hadoop configuration object to configurefileBlockSize
- the block size, in bytes- Since:
- 1.5.0
-
setIndexBlockSize
@Deprecated public static void setIndexBlockSize(Class<?> implementingClass, org.apache.hadoop.conf.Configuration conf, long indexBlockSize) Deprecated.since 1.6.0; Configure your job with the appropriate InputFormat or OutputFormat.Sets the size for index blocks within each file; smaller blocks means a deeper index hierarchy within the file, while larger blocks mean a more shallow index hierarchy within the file. This can affect the performance of queries.- Parameters:
implementingClass
- the class whose name will be used as a prefix for the property configuration keyconf
- the Hadoop configuration object to configureindexBlockSize
- the block size, in bytes- Since:
- 1.5.0
-
setReplication
@Deprecated public static void setReplication(Class<?> implementingClass, org.apache.hadoop.conf.Configuration conf, int replication) Deprecated.since 1.6.0; Configure your job with the appropriate InputFormat or OutputFormat.Sets the file system replication factor for the resulting file, overriding the file system default.- Parameters:
implementingClass
- the class whose name will be used as a prefix for the property configuration keyconf
- the Hadoop configuration object to configurereplication
- the number of replicas for produced files- Since:
- 1.5.0
-