public enum MetadataPartitionType extends Enum<MetadataPartitionType>
| Enum Constant and Description |
|---|
BLOOM_FILTERS |
COLUMN_STATS |
FILES |
RECORD_INDEX |
| Modifier and Type | Method and Description |
|---|---|
static Set<String> |
getAllPartitionPaths()
Returns the set of all metadata partition names.
|
String |
getFileIdPrefix() |
static List<MetadataPartitionType> |
getMetadataPartitionsNeedingWriteStatusTracking()
Returns the list of metadata table partitions which require WriteStatus to track written records.
|
String |
getPartitionPath() |
String |
toString() |
static MetadataPartitionType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static MetadataPartitionType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final MetadataPartitionType FILES
public static final MetadataPartitionType COLUMN_STATS
public static final MetadataPartitionType BLOOM_FILTERS
public static final MetadataPartitionType RECORD_INDEX
public static MetadataPartitionType[] values()
for (MetadataPartitionType c : MetadataPartitionType.values()) System.out.println(c);
public static MetadataPartitionType 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 getPartitionPath()
public String getFileIdPrefix()
public static List<MetadataPartitionType> getMetadataPartitionsNeedingWriteStatusTracking()
These partitions need the list of written records so that they can update their metadata.
public static Set<String> getAllPartitionPaths()
public String toString()
toString in class Enum<MetadataPartitionType>Copyright © 2024 The Apache Software Foundation. All rights reserved.