public enum ConfigurationPropertyKey extends Enum<ConfigurationPropertyKey> implements TypedPropertyKey
| Enum Constant and Description |
|---|
CHECK_TABLE_METADATA_ENABLED
Whether validate table meta data consistency when application startup or updated.
|
EXECUTOR_SIZE
The max thread size of worker group to execute SQL.
|
LOCK_ENABLED
Whether enable lock.
|
LOCK_WAIT_TIMEOUT_MILLISECONDS
The length of time in milliseconds an SQL waits for a global lock before giving up.
|
MAX_CONNECTIONS_SIZE_PER_QUERY
Max opened connection size for each query.
|
PROXY_FRONTEND_DATABASE_PROTOCOL_TYPE
Frontend database protocol type for ShardingSphere-Proxy.
|
PROXY_FRONTEND_FLUSH_THRESHOLD
Flush threshold for every records from databases for ShardingSphere-Proxy.
|
PROXY_HINT_ENABLED
Whether enable hint for ShardingSphere-Proxy.
|
PROXY_OPENTRACING_ENABLED
Whether enable opentracing for ShardingSphere-Proxy.
|
PROXY_TRANSACTION_TYPE
Transaction type of proxy.
|
SHOW_PROCESS_LIST_ENABLED
Whether enable show process list.
|
SQL_SHOW
Whether show SQL in log.
|
SQL_SIMPLE
Whether show SQL details in simple style.
|
XA_TRANSACTION_MANAGER_TYPE
XA transaction manager type of proxy.
|
| Modifier and Type | Method and Description |
|---|---|
static ConfigurationPropertyKey |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ConfigurationPropertyKey[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
clone, compareTo, equals, finalize, getDeclaringClass, hashCode, name, ordinal, toString, valueOfgetDefaultValue, getKey, getTypepublic static final ConfigurationPropertyKey SQL_SHOW
public static final ConfigurationPropertyKey SQL_SIMPLE
public static final ConfigurationPropertyKey EXECUTOR_SIZE
public static final ConfigurationPropertyKey MAX_CONNECTIONS_SIZE_PER_QUERY
public static final ConfigurationPropertyKey CHECK_TABLE_METADATA_ENABLED
public static final ConfigurationPropertyKey PROXY_FRONTEND_DATABASE_PROTOCOL_TYPE
public static final ConfigurationPropertyKey PROXY_FRONTEND_FLUSH_THRESHOLD
public static final ConfigurationPropertyKey PROXY_TRANSACTION_TYPE
LOCAL: ShardingSphere-Proxy will run with LOCAL transaction.
XA: ShardingSphere-Proxy will run with XA transaction.
BASE: ShardingSphere-Proxy will run with BASE transaction.
public static final ConfigurationPropertyKey XA_TRANSACTION_MANAGER_TYPE
Atomikos: ShardingSphere-Proxy will run with XA transaction with Atomikos.
Narayana: ShardingSphere-Proxy will run with XA transaction with Narayana.
Bitronix: ShardingSphere-Proxy will run with XA transaction with Bitronix.
public static final ConfigurationPropertyKey PROXY_OPENTRACING_ENABLED
public static final ConfigurationPropertyKey PROXY_HINT_ENABLED
public static final ConfigurationPropertyKey SHOW_PROCESS_LIST_ENABLED
public static final ConfigurationPropertyKey LOCK_WAIT_TIMEOUT_MILLISECONDS
public static final ConfigurationPropertyKey LOCK_ENABLED
public static ConfigurationPropertyKey[] values()
for (ConfigurationPropertyKey c : ConfigurationPropertyKey.values()) System.out.println(c);
public static ConfigurationPropertyKey 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 nullCopyright © 2021 The Apache Software Foundation. All rights reserved.