public enum ConfigurationPropertyKey extends Enum<ConfigurationPropertyKey> implements TypedPropertyKey
| 枚举常量和说明 |
|---|
CHECK_TABLE_METADATA_ENABLED
Whether validate table meta data consistency when application startup or updated.
|
KERNEL_EXECUTOR_SIZE
The max thread size of worker group to execute SQL.
|
MAX_CONNECTIONS_SIZE_PER_QUERY
Max opened connection size for each query.
|
PROXY_BACKEND_DRIVER_TYPE
Proxy backend driver type..
|
PROXY_BACKEND_EXECUTOR_SUITABLE
Available options of proxy backend executor suitable: OLAP(default), OLTP.
|
PROXY_BACKEND_QUERY_FETCH_SIZE
Proxy backend query fetch size.
|
PROXY_DEFAULT_PORT
Proxy default start port.
|
PROXY_FRONTEND_DATABASE_PROTOCOL_TYPE
Frontend database protocol type for ShardingSphere-Proxy.
|
PROXY_FRONTEND_EXECUTOR_SIZE
Proxy frontend executor size.
|
PROXY_FRONTEND_FLUSH_THRESHOLD
Flush threshold for every records from databases for ShardingSphere-Proxy.
|
PROXY_FRONTEND_MAX_CONNECTIONS
Less than or equal to 0 means no limitation.
|
PROXY_HINT_ENABLED
Whether enable hint for ShardingSphere-Proxy.
|
PROXY_INSTANCE_TYPE
Proxy instance type.
|
PROXY_MYSQL_DEFAULT_VERSION
Proxy MySQL default version.
|
PROXY_NETTY_BACKLOG
Proxy Netty backlog size.
|
SQL_FEDERATION_ENABLED
Whether enable SQL federation.
|
SQL_SHOW
Whether show SQL in log.
|
SQL_SIMPLE
Whether show SQL details in simple style.
|
| 限定符和类型 | 方法和说明 |
|---|---|
static Collection<String> |
getKeyNames()
Get property key names.
|
static ConfigurationPropertyKey |
valueOf(String name)
返回带有指定名称的该类型的枚举常量。
|
static ConfigurationPropertyKey[] |
values()
按照声明该枚举类型的常量的顺序, 返回
包含这些常量的数组。
|
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 KERNEL_EXECUTOR_SIZE
public static final ConfigurationPropertyKey MAX_CONNECTIONS_SIZE_PER_QUERY
public static final ConfigurationPropertyKey CHECK_TABLE_METADATA_ENABLED
public static final ConfigurationPropertyKey SQL_FEDERATION_ENABLED
public static final ConfigurationPropertyKey PROXY_FRONTEND_DATABASE_PROTOCOL_TYPE
public static final ConfigurationPropertyKey PROXY_FRONTEND_FLUSH_THRESHOLD
public static final ConfigurationPropertyKey PROXY_HINT_ENABLED
public static final ConfigurationPropertyKey PROXY_BACKEND_QUERY_FETCH_SIZE
public static final ConfigurationPropertyKey PROXY_FRONTEND_EXECUTOR_SIZE
public static final ConfigurationPropertyKey PROXY_BACKEND_EXECUTOR_SUITABLE
PROXY_FRONTEND_EXECUTOR_SIZE, especially executing slow SQL.public static final ConfigurationPropertyKey PROXY_FRONTEND_MAX_CONNECTIONS
public static final ConfigurationPropertyKey PROXY_BACKEND_DRIVER_TYPE
public static final ConfigurationPropertyKey PROXY_MYSQL_DEFAULT_VERSION
public static final ConfigurationPropertyKey PROXY_DEFAULT_PORT
public static final ConfigurationPropertyKey PROXY_NETTY_BACKLOG
public static final ConfigurationPropertyKey PROXY_INSTANCE_TYPE
public static ConfigurationPropertyKey[] values()
for (ConfigurationPropertyKey c : ConfigurationPropertyKey.values()) System.out.println(c);
public static ConfigurationPropertyKey valueOf(String name)
name - 要返回的枚举常量的名称。IllegalArgumentException - 如果该枚举类型没有带有指定名称的常量NullPointerException - 如果参数为空值public static Collection<String> getKeyNames()
Copyright © 2022 The Apache Software Foundation. All rights reserved.