Class OutputConfigurator


  • @Deprecated
    public class OutputConfigurator
    extends ConfiguratorBase
    Deprecated.
    since 1.6.0; Configure your job with the appropriate InputFormat or OutputFormat.
    Since:
    1.5.0
    • Constructor Detail

      • OutputConfigurator

        public OutputConfigurator()
        Deprecated.
    • Method Detail

      • 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 key
        conf - the Hadoop configuration object to configure
        tableName - 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 key
        conf - the Hadoop configuration object to configure
        Returns:
        the default table name
        Since:
        1.5.0
        See Also:
        setDefaultTableName(Class, Configuration, String)
      • 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's BatchWriter instances. If not set, a new BatchWriterConfig, 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 key
        conf - the Hadoop configuration object to configure
        bwConfig - the configuration for the BatchWriter
        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 the BatchWriterConfig settings.
        Parameters:
        implementingClass - the class whose name will be used as a prefix for the property configuration key
        conf - the Hadoop configuration object to configure
        Returns:
        the configuration object
        Since:
        1.5.0
        See Also:
        setBatchWriterOptions(Class, Configuration, BatchWriterConfig)
      • 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 key
        conf - the Hadoop configuration object to configure
        enableFeature - 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 key
        conf - the Hadoop configuration object to configure
        Returns:
        true if the feature is disabled, false otherwise
        Since:
        1.5.0
        See Also:
        setCreateTables(Class, Configuration, boolean)
      • 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 key
        conf - the Hadoop configuration object to configure
        enableFeature - 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 key
        conf - the Hadoop configuration object to configure
        Returns:
        true if the feature is enabled, false otherwise
        Since:
        1.5.0
        See Also:
        setSimulationMode(Class, Configuration, boolean)