public enum OrcConf extends Enum<OrcConf>
NOTE: The file was copied and modified to support zstd-jni. This feature is only supported in ORC 2.0, but 2.0 only supports JDK17. We need to support JDK8.
Modifier and Type | Method and Description |
---|---|
String |
getAttribute() |
boolean |
getBoolean(org.apache.hadoop.conf.Configuration conf) |
boolean |
getBoolean(Properties tbl,
org.apache.hadoop.conf.Configuration conf) |
Object |
getDefaultValue() |
String |
getDescription() |
double |
getDouble(org.apache.hadoop.conf.Configuration conf) |
double |
getDouble(Properties tbl,
org.apache.hadoop.conf.Configuration conf) |
String |
getHiveConfName() |
int |
getInt(org.apache.hadoop.conf.Configuration conf) |
void |
getInt(org.apache.hadoop.conf.Configuration conf,
int value)
Deprecated.
Use
getInt(Configuration) instead. This method was incorrectly added and
shouldn't be used anymore. |
int |
getInt(Properties tbl,
org.apache.hadoop.conf.Configuration conf) |
long |
getLong(org.apache.hadoop.conf.Configuration conf) |
long |
getLong(Properties tbl,
org.apache.hadoop.conf.Configuration conf) |
String |
getString(org.apache.hadoop.conf.Configuration conf) |
String |
getString(Properties tbl,
org.apache.hadoop.conf.Configuration conf) |
List<String> |
getStringAsList(org.apache.hadoop.conf.Configuration conf) |
void |
setBoolean(org.apache.hadoop.conf.Configuration conf,
boolean value) |
void |
setDouble(org.apache.hadoop.conf.Configuration conf,
double value) |
void |
setInt(org.apache.hadoop.conf.Configuration conf,
int value) |
void |
setLong(org.apache.hadoop.conf.Configuration conf,
long value) |
void |
setString(org.apache.hadoop.conf.Configuration conf,
String value) |
static OrcConf |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static OrcConf[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final OrcConf STRIPE_SIZE
public static final OrcConf STRIPE_ROW_COUNT
public static final OrcConf BLOCK_SIZE
public static final OrcConf ENABLE_INDEXES
public static final OrcConf ROW_INDEX_STRIDE
public static final OrcConf BUFFER_SIZE
public static final OrcConf BASE_DELTA_RATIO
public static final OrcConf BLOCK_PADDING
public static final OrcConf COMPRESS
public static final OrcConf WRITE_FORMAT
public static final OrcConf ENFORCE_COMPRESSION_BUFFER_SIZE
public static final OrcConf ENCODING_STRATEGY
public static final OrcConf COMPRESSION_STRATEGY
public static final OrcConf COMPRESSION_ZSTD_LEVEL
public static final OrcConf COMPRESSION_ZSTD_WINDOWLOG
public static final OrcConf BLOCK_PADDING_TOLERANCE
public static final OrcConf BLOOM_FILTER_FPP
public static final OrcConf USE_ZEROCOPY
public static final OrcConf SKIP_CORRUPT_DATA
public static final OrcConf TOLERATE_MISSING_SCHEMA
public static final OrcConf MEMORY_POOL
public static final OrcConf DICTIONARY_KEY_SIZE_THRESHOLD
public static final OrcConf ROW_INDEX_STRIDE_DICTIONARY_CHECK
public static final OrcConf DICTIONARY_IMPL
public static final OrcConf BLOOM_FILTER_COLUMNS
public static final OrcConf BLOOM_FILTER_WRITE_VERSION
public static final OrcConf IGNORE_NON_UTF8_BLOOM_FILTERS
public static final OrcConf MAX_FILE_LENGTH
public static final OrcConf MAPRED_INPUT_SCHEMA
public static final OrcConf MAPRED_SHUFFLE_KEY_SCHEMA
public static final OrcConf MAPRED_SHUFFLE_VALUE_SCHEMA
public static final OrcConf MAPRED_OUTPUT_SCHEMA
public static final OrcConf INCLUDE_COLUMNS
public static final OrcConf KRYO_SARG
public static final OrcConf KRYO_SARG_BUFFER
public static final OrcConf SARG_COLUMNS
public static final OrcConf FORCE_POSITIONAL_EVOLUTION
public static final OrcConf FORCE_POSITIONAL_EVOLUTION_LEVEL
public static final OrcConf ROWS_BETWEEN_CHECKS
public static final OrcConf OVERWRITE_OUTPUT_FILE
public static final OrcConf IS_SCHEMA_EVOLUTION_CASE_SENSITIVE
public static final OrcConf ALLOW_SARG_TO_FILTER
public static final OrcConf READER_USE_SELECTED
public static final OrcConf ALLOW_PLUGIN_FILTER
public static final OrcConf WRITE_VARIABLE_LENGTH_BLOCKS
public static final OrcConf DIRECT_ENCODING_COLUMNS
public static final OrcConf ORC_MAX_DISK_RANGE_CHUNK_LIMIT
public static final OrcConf ORC_MIN_DISK_SEEK_SIZE
public static final OrcConf ORC_MIN_DISK_SEEK_SIZE_TOLERANCE
public static final OrcConf ENCRYPTION
public static final OrcConf DATA_MASK
public static final OrcConf KEY_PROVIDER
public static final OrcConf PROLEPTIC_GREGORIAN
public static final OrcConf PROLEPTIC_GREGORIAN_DEFAULT
public static final OrcConf ROW_BATCH_SIZE
public static final OrcConf ROW_BATCH_CHILD_LIMIT
public static OrcConf[] values()
for (OrcConf c : OrcConf.values()) System.out.println(c);
public static OrcConf valueOf(String name)
name
- the name of the enum constant to be returned.IllegalArgumentException
- if this enum type has no constant with the specified nameNullPointerException
- if the argument is nullpublic String getAttribute()
public String getHiveConfName()
public Object getDefaultValue()
public String getDescription()
public int getInt(Properties tbl, org.apache.hadoop.conf.Configuration conf)
public int getInt(org.apache.hadoop.conf.Configuration conf)
@Deprecated public void getInt(org.apache.hadoop.conf.Configuration conf, int value)
getInt(Configuration)
instead. This method was incorrectly added and
shouldn't be used anymore.public void setInt(org.apache.hadoop.conf.Configuration conf, int value)
public long getLong(Properties tbl, org.apache.hadoop.conf.Configuration conf)
public long getLong(org.apache.hadoop.conf.Configuration conf)
public void setLong(org.apache.hadoop.conf.Configuration conf, long value)
public String getString(Properties tbl, org.apache.hadoop.conf.Configuration conf)
public String getString(org.apache.hadoop.conf.Configuration conf)
public void setString(org.apache.hadoop.conf.Configuration conf, String value)
public boolean getBoolean(Properties tbl, org.apache.hadoop.conf.Configuration conf)
public boolean getBoolean(org.apache.hadoop.conf.Configuration conf)
public void setBoolean(org.apache.hadoop.conf.Configuration conf, boolean value)
public double getDouble(Properties tbl, org.apache.hadoop.conf.Configuration conf)
public double getDouble(org.apache.hadoop.conf.Configuration conf)
public void setDouble(org.apache.hadoop.conf.Configuration conf, double value)
Copyright © 2023–2024 The Apache Software Foundation. All rights reserved.