forked from vitessio/vitess
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'master' into jacques_ubi
Signed-off-by: Jacques Grove <[email protected]>
- Loading branch information
Showing
98 changed files
with
7,431 additions
and
6,258 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,115 @@ | ||
tabletID: zone-1234 | ||
|
||
init: | ||
dbName: # init_db_name_override | ||
keyspace: # init_keyspace | ||
shard: # init_shard | ||
tabletType: # init_tablet_type | ||
timeoutSeconds: 60 # init_timeout | ||
|
||
db: | ||
socket: # db_socket | ||
host: # db_host | ||
port: 0 # db_port | ||
charSet: # db_charset | ||
flags: 0 # db_flags | ||
flavor: # db_flavor | ||
sslCa: # db_ssl_ca | ||
sslCaPath: # db_ssl_ca_path | ||
sslCert: # db_ssl_cert | ||
sslKey: # db_ssl_key | ||
serverName: # db_server_name | ||
connectTimeoutMilliseconds: 0 # db_connect_timeout_ms | ||
app: | ||
user: vt_app # db_app_user | ||
password: # db_app_password | ||
useSsl: true # db_app_use_ssl | ||
preferSocket: true | ||
dba: | ||
user: vt_dba # db_dba_user | ||
password: # db_dba_password | ||
useSsl: true # db_dba_use_ssl | ||
preferSocket: true | ||
filtered: | ||
user: vt_filtered # db_filtered_user | ||
password: # db_filtered_password | ||
useSsl: true # db_filtered_use_ssl | ||
preferSocket: true | ||
repl: | ||
user: vt_repl # db_repl_user | ||
password: # db_repl_password | ||
useSsl: true # db_repl_use_ssl | ||
preferSocket: true | ||
appdebug: | ||
user: vt_appdebug # db_appdebug_user | ||
password: # db_appdebug_password | ||
useSsl: true # db_appdebug_use_ssl | ||
preferSocket: true | ||
allprivs: | ||
user: vt_allprivs # db_allprivs_user | ||
password: # db_allprivs_password | ||
useSsl: true # db_allprivs_use_ssl | ||
preferSocket: true | ||
|
||
oltpReadPool: | ||
size: 16 # queryserver-config-pool-size | ||
timeoutSeconds: 0 # queryserver-config-query-pool-timeout | ||
idleTimeoutSeconds: 1800 # queryserver-config-idle-timeout | ||
prefillParallelism: 0 # queryserver-config-pool-prefill-parallelism | ||
maxWaiters: 50000 # queryserver-config-query-pool-waiter-cap | ||
|
||
olapReadPool: | ||
size: 200 # queryserver-config-stream-pool-size | ||
timeoutSeconds: 0 # queryserver-config-query-pool-timeout | ||
idleTimeoutSeconds: 1800 # queryserver-config-idle-timeout | ||
prefillParallelism: 0 # queryserver-config-stream-pool-prefill-parallelism | ||
maxWaiters: 0 | ||
|
||
txPool: | ||
size: 20 # queryserver-config-transaction-cap | ||
timeoutSeconds: 1 # queryserver-config-txpool-timeout | ||
idleTimeoutSeconds: 1800 # queryserver-config-idle-timeout | ||
prefillParallelism: 0 # queryserver-config-transaction-prefill-parallelism | ||
maxWaiters: 50000 # queryserver-config-txpool-waiter-cap | ||
|
||
oltp: | ||
queryTimeoutSeconds: 30 # queryserver-config-query-timeout | ||
txTimeoutSeconds: 30 # queryserver-config-transaction-timeout | ||
maxRows: 10000 # queryserver-config-max-result-size | ||
warnRows: 0 # queryserver-config-warn-result-size | ||
|
||
hotRowProtection: | ||
mode: disable|dryRun|enable # enable_hot_row_protection, enable_hot_row_protection_dry_run | ||
# Default value is same as txPool.size. | ||
maxQueueSize: 20 # hot_row_protection_max_queue_size | ||
maxGlobalQueueSize: 1000 # hot_row_protection_max_global_queue_size | ||
maxConcurrency: 5 # hot_row_protection_concurrent_transactions | ||
|
||
consolidator: enable|disable|notOnMaster # enable-consolidator, enable-consolidator-replicas | ||
heartbeatIntervalMilliseconds: 0 # heartbeat_enable, heartbeat_interval | ||
shutdownGracePeriodSeconds: 0 # transaction_shutdown_grace_period | ||
passthroughDML: false # queryserver-config-passthrough-dmls | ||
streamBufferSize: 32768 # queryserver-config-stream-buffer-size | ||
queryCacheSize: 5000 # queryserver-config-query-cache-size | ||
schemaReloadIntervalSeconds: 1800 # queryserver-config-schema-reload-time | ||
watchReplication: false # watch_replication_stream | ||
terseErrors: false # queryserver-config-terse-errors | ||
messagePostponeParallelism: 4 # queryserver-config-message-postpone-cap | ||
cacheResultFields: true # enable-query-plan-field-caching | ||
|
||
|
||
# The following flags are currently not supported. | ||
# enforce_strict_trans_tables | ||
# queryserver-config-strict-table-acl | ||
# queryserver-config-enable-table-acl-dry-run | ||
# queryserver-config-acl-exempt-acl | ||
# enable-tx-throttler | ||
# tx-throttler-config | ||
# tx-throttler-healthcheck-cells | ||
# enable_transaction_limit | ||
# enable_transaction_limit_dry_run | ||
# transaction_limit_per_user | ||
# transaction_limit_by_username | ||
# transaction_limit_by_principal | ||
# transaction_limit_by_component | ||
# transaction_limit_by_subcomponent |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.