public static enum MetastoreConf.ConfVars extends Enum<MetastoreConf.ConfVars>
| Modifier and Type | Method and Description |
|---|---|
Object |
getDefaultVal() |
String |
getDescription() |
String |
getHiveName()
Use this method if you need to set a system property and are going to instantiate the
configuration file via HiveConf.
|
String |
getVarname()
If you are calling this, you're probably doing it wrong.
|
boolean |
isCaseSensitive() |
String |
toString()
This is useful if you need the variable name for a LOG message or
System.setProperty(String, String), beware however that you should only use this with
setProperty if you're going to create a configuration via MetastoreConf.newMetastoreConf(). |
void |
validate(String value) |
static MetastoreConf.ConfVars |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static MetastoreConf.ConfVars[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final MetastoreConf.ConfVars CLIENT_CONNECT_RETRY_DELAY
public static final MetastoreConf.ConfVars CLIENT_KERBEROS_PRINCIPAL
public static final MetastoreConf.ConfVars CLIENT_SOCKET_LIFETIME
public static final MetastoreConf.ConfVars CLIENT_SOCKET_TIMEOUT
public static final MetastoreConf.ConfVars CLIENT_CONNECTION_TIMEOUT
public static final MetastoreConf.ConfVars DUMP_CONFIG_ON_CREATION
public static final MetastoreConf.ConfVars KERBEROS_PRINCIPAL
public static final MetastoreConf.ConfVars SSL_KEYSTORE_PASSWORD
public static final MetastoreConf.ConfVars SSL_TRUSTSTORE_PATH
public static final MetastoreConf.ConfVars SSL_TRUSTSTORE_PASSWORD
public static final MetastoreConf.ConfVars SSL_TRUSTSTORE_TYPE
public static final MetastoreConf.ConfVars SSL_TRUSTMANAGERFACTORY_ALGORITHM
public static final MetastoreConf.ConfVars THRIFT_TRANSPORT_MODE
public static final MetastoreConf.ConfVars THRIFT_HTTP_PATH
public static final MetastoreConf.ConfVars THRIFT_CONNECTION_RETRIES
public static final MetastoreConf.ConfVars THRIFT_FAILURE_RETRIES
public static final MetastoreConf.ConfVars THRIFT_URIS
public static final MetastoreConf.ConfVars THRIFT_METASTORE_CLIENT_MAX_MESSAGE_SIZE
public static final MetastoreConf.ConfVars THRIFT_SERVICE_DISCOVERY_MODE
public static final MetastoreConf.ConfVars THRIFT_ZOOKEEPER_CLIENT_PORT
public static final MetastoreConf.ConfVars THRIFT_ZOOKEEPER_SESSION_TIMEOUT
public static final MetastoreConf.ConfVars THRIFT_ZOOKEEPER_CONNECTION_TIMEOUT
public static final MetastoreConf.ConfVars THRIFT_ZOOKEEPER_NAMESPACE
public static final MetastoreConf.ConfVars THRIFT_ZOOKEEPER_CONNECTION_MAX_RETRIES
public static final MetastoreConf.ConfVars THRIFT_ZOOKEEPER_CONNECTION_BASESLEEPTIME
public static final MetastoreConf.ConfVars THRIFT_URI_SELECTION
public static final MetastoreConf.ConfVars TOKEN_SIGNATURE
public static final MetastoreConf.ConfVars URI_RESOLVER
public static final MetastoreConf.ConfVars METASTORE_CLIENT_THRIFT_TRANSPORT_MODE
public static final MetastoreConf.ConfVars USE_SSL
public static final MetastoreConf.ConfVars USE_THRIFT_SASL
public static final MetastoreConf.ConfVars METASTORE_CLIENT_AUTH_MODE
public static final MetastoreConf.ConfVars METASTORE_CLIENT_ADDITIONAL_HEADERS
public static final MetastoreConf.ConfVars METASTORE_CLIENT_PLAIN_USERNAME
public static final MetastoreConf.ConfVars USE_THRIFT_FRAMED_TRANSPORT
public static final MetastoreConf.ConfVars USE_THRIFT_COMPACT_PROTOCOL
public static MetastoreConf.ConfVars[] values()
for (MetastoreConf.ConfVars c : MetastoreConf.ConfVars.values()) System.out.println(c);
public static MetastoreConf.ConfVars 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 void validate(String value) throws IllegalArgumentException
IllegalArgumentExceptionpublic boolean isCaseSensitive()
public String getVarname()
Configuration.get(String) you are undermining that.public String getHiveName()
Configuration.get(String) you are
undermining that.public Object getDefaultVal()
public String getDescription()
public String toString()
System.setProperty(String, String), beware however that you should only use this with
setProperty if you're going to create a configuration via MetastoreConf.newMetastoreConf(). If you are going to create it with HiveConf, then use
getHiveName().toString in class Enum<MetastoreConf.ConfVars>Copyright © 2022 The Apache Software Foundation. All rights reserved.