vttablet
A VTTablet server controls a running MySQL server. VTTablet supports two primary types of deployments:
- Managed MySQL (most common)
- External MySQL
In addition to these deployment types, a partially managed VTTablet is also possible by setting -disable_active_reparents
.
Example Usage #
Managed MySQL #
In this mode, Vitess actively manages MySQL:
export TOPOLOGY_FLAGS="-topo_implementation etcd2 -topo_global_server_address localhost:2379 -topo_global_root /vitess/global"
export VTDATAROOT="/tmp"
vttablet \
$TOPOLOGY_FLAGS
-tablet-path $alias
-init_keyspace $keyspace
-init_shard $shard
-init_tablet_type $tablet_type
-port $port
-grpc_port $grpc_port
-service_map 'grpc-queryservice,grpc-tabletmanager,grpc-updatestream'
$alias
needs to be of the form: <cell>-id
, and the cell should match one of the local cells that was created in the topology. The id can be left padded with zeroes: cell-100
and cell-000000100
are synonymous.
External MySQL #
In this mode, an external MySQL can be used such as AWS RDS, AWS Aurora, Google CloudSQL; or just an existing (vanilla) MySQL installation.
See Unmanaged Tablet for the full guide.
Even if a MySQL is external, you can still make vttablet perform some management functions. They are as follows:
-disable_active_reparents
: If this flag is set, then any reparent or replica commands will not be allowed. These are InitShardPrimary, PlannedReparentShard, EmergencyReparentShard, and ReparentTablet. In this mode, you should use the TabletExternallyReparented command to inform vitess of the current primary.-replication_connect_retry
: This value is give to mysql when it connects a replica to the primary as the retry duration parameter.-enable_replication_reporter
: If this flag is set, then vttablet will transmit replica lag related information to the vtgates, which will allow it to balance load better. Additionally, enabling this will also cause vttablet to restart replication if it was stopped. However, it will do this only if -disable_active_reparents was not turned on.-enable_semi_sync
: This option will automatically enable semi-sync on new replicas as well as on any tablet that transitions into a replica type. This includes the demotion of a primary to a replica.-heartbeat_enable
and-heartbeat interval duration
: cause vttablet to write heartbeats to the sidecar database. This information is also used by the replication reporter to assess replica lag.
Options #
The following global options apply to vttablet
:
Name | Type | Definition |
---|---|---|
-alsologtostderr | boolean | Log to standard error as well as files |
-app_idle_timeout | duration | Idle timeout for app connections (default 1m0s) |
-app_pool_size | int | Size of the connection pool for app connections (default 40) |
-azblob_backup_account_key_file | string | Path to a file containing the Azure Storage account key; if this flag is unset, the environment variable VT_AZBLOB_ACCOUNT_KEY will be used as the key itself (NOT a file path) |
-azblob_backup_account_name | string | Azure Storage Account name for backups; if this flag is unset, the environment variable VT_AZBLOB_ACCOUNT_NAME will be used |
-azblob_backup_container_name | string | Azure Blob Container Name |
-azblob_backup_parallelism | int | Azure Blob operation parallelism (requires extra memory when increased) (default 1) |
-azblob_backup_storage_root | string | Root prefix for all backup-related Azure Blobs; this should exclude both initial and trailing '/' (e.g. just 'a/b' not '/a/b/') |
-backup_engine_implementation | string | Specifies which implementation to use for creating new backups (builtin or xtrabackup). Restores will always be done with whichever engine created a given backup (default "builtin") |
-backup_storage_block_size | int | If backup_storage_compress is true, backup_storage_block_size sets the byte size for each block while compressing (default 250000) |
-backup_storage_compress | boolean | If set, the backup files will be compressed. Set to false for instance if a backup_storage_hook is specified and it compresses the data (default true) |
-backup_storage_hook | string | If set, sends the contents of the backup files through this hook |
-backup_storage_implementation | string | Which implementation to use for the backup storage feature |
-backup_storage_number_blocks | int | If backup_storage_compress is true, backup_storage_number_blocks sets the number of blocks that can be processed, at once, before the writer blocks, during compression. It should be equal to the number of CPUs available for compression (default 2) |
-binlog_host | string | PITR restore parameter: hostname/IP of binlog server |
-binlog_password | string | PITR restore parameter: password of binlog server |
-binlog_player_grpc_ca | string | The server CA to use to validate servers when connecting |
-binlog_player_grpc_cert | string | The cert to use to connect |
-binlog_player_grpc_crl | string | The server crl to use to validate server certificates when connecting |
-binlog_player_grpc_key | string | The key to use to connect |
-binlog_player_grpc_server_name | string | The server name to use to validate server certificate |
-binlog_player_protocol | string | The protocol to download binlogs from a vttablet (default "grpc") |
-binlog_port | int | PITR restore parameter: port of binlog server |
-binlog_ssl_ca | string | PITR restore parameter: Filename containing TLS CA certificate to verify binlog server TLS certificate against |
-binlog_ssl_cert | string | PITR restore parameter: Filename containing mTLS client certificate to present to binlog server as authentication |
-binlog_ssl_key | string | PITR restore parameter: Filename containing mTLS client private key for use in binlog server authentication |
-binlog_ssl_server_name | string | PITR restore parameter: TLS server name (common name) to verify against for the binlog server we are connecting to (If not set: use the hostname or IP supplied in -binlog_host) |
-binlog_use_v3_resharding_mode | boolean | True if the binlog streamer should use V3-style sharding, which doesn't require a preset sharding key column (default true) |
-binlog_user | string | PITR restore parameter: username of binlog server. |
-builtinbackup_mysqld_timeout | duration | How long to wait for MySQL to shutdown at the start of the backup (default 10m0s) |
-builtinbackup_progress | duration | How often to send progress updates when backing up large files (default 5s) |
-catch-sigpipe | boolean | Catch and ignore SIGPIPE on stdout and stderr if specified |
-ceph_backup_storage_config | string | Path to JSON config file for ceph backup storage (default "ceph_backup_config.json") |
-client-found-rows-pool-size | int | Deprecated: queryserver-config-transaction-cap will be used instead |
-consul_auth_static_file | string | JSON File to read the topos/tokens from. |
-cpu_profile | string | Deprecated: use '-pprof=cpu' instead |
-datadog-agent-host | string | Host to send spans to; if empty, no tracing will be done |
-datadog-agent-port | string | Port to send spans to; if empty, no tracing will be done |
-db-config-allprivs-charset | string | Deprecated: use db_charset (default "utf8mb4") |
-db-config-allprivs-flags | uint | Deprecated: use db_flags |
-db-config-allprivs-flavor | string | Deprecated: use db_flavor |
-db-config-allprivs-host | string | Deprecated: use db_host |
-db-config-allprivs-pass | string | Deprecated: use db_allprivs_password |
-db-config-allprivs-port | int | Deprecated: use db_port |
-db-config-allprivs-server_name | string | Deprecated: use db_server_name |
-db-config-allprivs-ssl-ca | string | Deprecated: use db_ssl_ca |
-db-config-allprivs-ssl-ca-path | string | Deprecated: use db_ssl_ca_path |
-db-config-allprivs-ssl-cert | string | Deprecated: use db_ssl_cert |
-db-config-allprivs-ssl-key | string | Deprecated: use db_ssl_key |
-db-config-allprivs-uname | string | Deprecated: use db_allprivs_user (default "vt_allprivs") |
-db-config-allprivs-unixsocket | string | Deprecated: use db_socket |
-db-config-app-charset | string | Deprecated: use db_charset (default "utf8mb4") |
-db-config-app-flags | uint | Deprecated: use db_flags |
-db-config-app-flavor | string | Deprecated: use db_flavor |
-db-config-app-host | string | Deprecated: use db_host |
-db-config-app-pass | string | Deprecated: use db_app_password |
-db-config-app-port | int | Deprecated: use db_port |
-db-config-app-server_name | string | Deprecated: use db_server_name |
-db-config-app-ssl-ca | string | Deprecated: use db_ssl_ca |
-db-config-app-ssl-ca-path | string | Deprecated: use db_ssl_ca_path |
-db-config-app-ssl-cert | string | Deprecated: use db_ssl_cert |
-db-config-app-ssl-key | string | Deprecated: use db_ssl_key |
-db-config-app-uname | string | Deprecated: use db_app_user (default "vt_app") |
-db-config-app-unixsocket | string | Deprecated: use db_socket |
-db-config-appdebug-charset | string | Deprecated: use db_charset (default "utf8mb4") |
-db-config-appdebug-flags | uint | Deprecated: use db_flags |
-db-config-appdebug-flavor | string | Deprecated: use db_flavor |
-db-config-appdebug-host | string | Deprecated: use db_host |
-db-config-appdebug-pass | string | Deprecated: use db_appdebug_password |
-db-config-appdebug-port | int | Deprecated: use db_port |
-db-config-appdebug-server_name | string | Deprecated: use db_server_name |
-db-config-appdebug-ssl-ca | string | Deprecated: use db_ssl_ca |
-db-config-appdebug-ssl-ca-path | string | Deprecated: use db_ssl_ca_path |
-db-config-appdebug-ssl-cert | string | Deprecated: use db_ssl_cert |
-db-config-appdebug-ssl-key | string | Deprecated: use db_ssl_key |
-db-config-appdebug-uname | string | Deprecated: use db_appdebug_user (default "vt_appdebug") |
-db-config-appdebug-unixsocket | string | Deprecated: use db_socket |
-db-config-dba-charset | string | Deprecated: use db_charset (default "utf8mb4") |
-db-config-dba-flags | uint | Deprecated: use db_flags |
-db-config-dba-flavor | string | Deprecated: use db_flavor |
-db-config-dba-host | string | Deprecated: use db_host |
-db-config-dba-pass | string | Deprecated: use db_dba_password |
-db-config-dba-port | int | Deprecated: use db_port |
-db-config-dba-server_name | string | Deprecated: use db_server_name |
-db-config-dba-ssl-ca | string | Deprecated: use db_ssl_ca |
-db-config-dba-ssl-ca-path | string | Deprecated: use db_ssl_ca_path |
-db-config-dba-ssl-cert | string | Deprecated: use db_ssl_cert |
-db-config-dba-ssl-key | string | Deprecated: use db_ssl_key |
-db-config-dba-uname | string | Deprecated: use db_dba_user (default "vt_dba") |
-db-config-dba-unixsocket | string | Deprecated: use db_socket |
-db-config-erepl-charset | string | Deprecated: use db_charset (default "utf8mb4") |
-db-config-erepl-dbname | string | Deprecated: dbname does not need to be explicitly configured |
-db-config-erepl-flags | uint | Deprecated: use db_flags |
-db-config-erepl-flavor | string | Deprecated: use db_flavor |
-db-config-erepl-host | string | Deprecated: use db_host |
-db-config-erepl-pass | string | Deprecated: use db_erepl_password |
-db-config-erepl-port | int | Deprecated: use db_port |
-db-config-erepl-server_name | string | Deprecated: use db_server_name |
-db-config-erepl-ssl-ca | string | Deprecated: use db_ssl_ca |
-db-config-erepl-ssl-ca-path | string | Deprecated: use db_ssl_ca_path |
-db-config-erepl-ssl-cert | string | Deprecated: use db_ssl_cert |
-db-config-erepl-ssl-key | string | Deprecated: use db_ssl_key |
-db-config-erepl-uname | string | Deprecated: use db_erepl_user (default "vt_erepl") |
-db-config-erepl-unixsocket | string | Deprecated: use db_socket |
-db-config-filtered-charset | string | Deprecated: use db_charset (default "utf8mb4") |
-db-config-filtered-flags | uint | Deprecated: use db_flags |
-db-config-filtered-flavor | string | Deprecated: use db_flavor |
-db-config-filtered-host | string | Deprecated: use db_host |
-db-config-filtered-pass | string | Deprecated: use db_filtered_password |
-db-config-filtered-port | int | Deprecated: use db_port |
-db-config-filtered-server_name | string | Deprecated: use db_server_name |
-db-config-filtered-ssl-ca | string | Deprecated: use db_ssl_ca |
-db-config-filtered-ssl-ca-path | string | Deprecated: use db_ssl_ca_path |
-db-config-filtered-ssl-cert | string | Deprecated: use db_ssl_cert |
-db-config-filtered-ssl-key | string | Deprecated: use db_ssl_key |
-db-config-filtered-uname | string | Deprecated: use db_filtered_user (default "vt_filtered") |
-db-config-filtered-unixsocket | string | Deprecated: use db_socket |
-db-config-repl-charset | string | Deprecated: use db_charset (default "utf8mb4") |
-db-config-repl-flags | uint | Deprecated: use db_flags |
-db-config-repl-flavor | string | Deprecated: use db_flavor |
-db-config-repl-host | string | Deprecated: use db_host |
-db-config-repl-pass | string | Deprecated: use db_repl_password |
-db-config-repl-port | int | Deprecated: use db_port |
-db-config-repl-server_name | string | Deprecated: use db_server_name |
-db-config-repl-ssl-ca | string | Deprecated: use db_ssl_ca |
-db-config-repl-ssl-ca-path | string | Deprecated: use db_ssl_ca_path |
-db-config-repl-ssl-cert | string | Deprecated: use db_ssl_cert |
-db-config-repl-ssl-key | string | Deprecated: use db_ssl_key |
-db-config-repl-uname | string | Deprecated: use db_repl_user (default "vt_repl") |
-db-config-repl-unixsocket | string | Deprecated: use db_socket |
-db-credentials-file | string | db credentials file; send SIGHUP to reload this file |
-db-credentials-server | string | db credentials server type ('file' - file implementation; 'vault' - HashiCorp Vault implementation) (default "file") |
-db-credentials-vault-addr | string | URL to Vault server |
-db-credentials-vault-path | string | Vault path to credentials JSON blob, e.g.: secret/data/prod/dbcreds |
-db-credentials-vault-role-mountpoint | string | Vault AppRole mountpoint; can also be passed using VAULT_MOUNTPOINT environment variable (default "approle") |
-db-credentials-vault-role-secretidfile | string | Path to file containing Vault AppRole secret_id; can also be passed using VAULT_SECRETID environment variable |
-db-credentials-vault-roleid | string | Vault AppRole id; can also be passed using VAULT_ROLEID environment variable |
-db-credentials-vault-timeout | duration | Timeout for vault API operations (default 10s) |
-db-credentials-vault-tls-ca | string | Path to CA PEM for validating Vault server certificate |
-db-credentials-vault-tokenfile | string | Path to file containing Vault auth token; token can also be passed using VAULT_TOKEN environment variable |
-db-credentials-vault-ttl | duration | How long to cache DB credentials from the Vault server (default 30m0s) |
-db_allprivs_password | string | db allprivs password |
-db_allprivs_use_ssl | boolean | Set this flag to false to make the allprivs connection not use SSL (default true) |
-db_allprivs_user | string | db allprivs user userKey (default "vt_allprivs") |
-db_app_password | string | db app password |
-db_app_use_ssl | boolean | Set this flag to false to make the app connection not use SSL (default true) |
-db_app_user | string | db app user userKey (default "vt_app") |
-db_appdebug_password | string | db appdebug password |
-db_appdebug_use_ssl | boolean | Set this flag to false to make the appdebug connection not use SSL (default true) |
-db_appdebug_user | string | db appdebug user userKey (default "vt_appdebug") |
-db_charset | string | Character set used for this tablet (default "utf8mb4") |
-db_connect_timeout_ms | int | Connection timeout to mysqld in milliseconds (0 for no timeout) |
-db_dba_password | string | db dba password |
-db_dba_use_ssl | boolean | Set this flag to false to make the dba connection not use SSL (default true) |
-db_dba_user | string | db dba user userKey (default "vt_dba") |
-db_erepl_password | string | db erepl password |
-db_erepl_use_ssl | boolean | Set this flag to false to make the erepl connection not use SSL (default true) |
-db_erepl_user | string | db erepl user userKey (default "vt_erepl") |
-db_filtered_password | string | db filtered password |
-db_filtered_use_ssl | boolean | Set this flag to false to make the filtered connection not use SSL (default true) |
-db_filtered_user | string | db filtered user userKey (default "vt_filtered") |
-db_flags | uint | Flag values as defined by MySQL. |
-db_flavor | string | Flavor override. Valid value is FilePos |
-db_host | string | The host name for the tcp connection |
-db_port | int | tcp port |
-db_repl_password | string | db repl password |
-db_repl_use_ssl | boolean | Set this flag to false to make the repl connection not use SSL (default true) |
-db_repl_user | string | db repl user userKey (default "vt_repl") |
-db_server_name | string | Server name of the DB we are connecting to |
-db_socket | string | The unix socket to connect on. If this is specified, host and port will not be used |
-db_ssl_ca | string | Connection SSL CA |
-db_ssl_ca_path | string | Connection SSL CA path |
-db_ssl_cert | string | Connection SSL certificate |
-db_ssl_key | string | Connection SSL key |
-db_ssl_mode | value | SSL mode to connect with. One of disabled, preferred, required, verify_ca & verify_identity |
-db_tls_min_version | string | Configures the minimal TLS version negotiated when SSL is enabled. Options: TLSv1.0, TLSv1.1, TLSv1.2, TLSv1.3 (Defaults to TLSv1.2) |
-dba_idle_timeout | duration | Idle timeout for dba connections (default 1m0s) |
-dba_pool_size | int | Size of the connection pool for dba connections (default 20) |
-degraded_threshold | duration | Replication lag after which a replica is considered degraded (default 30s) |
-disable_active_reparents | boolean | If set, do not allow active reparents. Use this to protect a cluster using external reparents |
-discovery_high_replication_lag_minimum_serving | duration | The replication lag considered too high when applying the min_number_serving_vttablets threshold (default 2h0m0s) |
-discovery_low_replication_lag | duration | The replication lag considered low enough to be healthy (default 30s) |
-emit_stats | boolean | If set, emit stats to push-based monitoring and stats backends |
-enable-autocommit | boolean | This flag is deprecated. Autocommit is always allowed (default true) |
-enable-consolidator | boolean | Synonym to -enable_consolidator (default true) |
-enable-consolidator-replicas | boolean | Synonym to -enable_consolidator_replicas |
-enable-lag-throttler | boolean | Synonym to -enable_lag_throttler |
-enable-query-plan-field-caching | boolean | Synonym to -enable_query_plan_field_caching (default true) |
-enable-tx-throttler | boolean | Synonym to -enable_tx_throttler |
-enable_consolidator | boolean | This option enables the query consolidator (default true) |
-enable_consolidator_replicas | boolean | This option enables the query consolidator only on replicas |
-enable_hot_row_protection | boolean | If true, incoming transactions for the same row (range) will be queued and cannot consume all txpool slots |
-enable_hot_row_protection_dry_run | boolean | If true, hot row protection is not enforced but logs if transactions would have been queued |
-enable_lag_throttler | boolean | If true, vttablet will run a throttler service, and will implicitly enable heartbeats |
-enable_query_plan_field_caching | boolean | This option fetches & caches fields (columns) when storing query plans (default true) |
-enable_replication_reporter | boolean | Use polling to track replication lag |
-enable_semi_sync | boolean | Enable semi-sync when configuring replication, on primary and replica tablets only (rdonly tablets will not ack) |
-enable_transaction_limit | boolean | If true, limit on number of transactions open at the same time will be enforced for all users. User trying to open a new transaction after exhausting their limit will receive an error immediately, regardless of whether there are available slots or not |
-enable_transaction_limit_dry_run | boolean | If true, limit on number of transactions open at the same time will be tracked for all users, but not enforced |
-enable_tx_throttler | boolean | If true replication-lag-based throttling on transactions will be enabled |
-enforce-tableacl-config | boolean | If this flag is true, vttablet will fail to start if a valid tableacl config does not exist |
-enforce_strict_trans_tables | boolean | If true, vttablet requires MySQL to run with STRICT_TRANS_TABLES or STRICT_ALL_TABLES on. It is recommended to not turn this flag off. Otherwise MySQL may alter your supplied values before saving them to the database (default true) |
-file_backup_storage_root | string | Root directory for the file backup storage |
-filecustomrules | string | File based custom rule path |
-filecustomrules_watch | boolean | Set up a watch on the target file and reload query rules when it changes |
-gc_check_interval | duration | Interval between garbage collection checks (default 1h0m0s) |
-gc_purge_check_interval | duration | Interval between purge discovery checks (default 1m0s) |
-gcs_backup_storage_bucket | string | Google Cloud Storage bucket to use for backups |
-gcs_backup_storage_root | string | Root prefix for all backup-related object names |
-gh-ost-path | string | Override default gh-ost binary full path |
-grpc_auth_mode | string | Which auth plugin implementation to use (eg: static) |
-grpc_auth_mtls_allowed_substrings | string | List of substrings of at least one of the client certificate names (separated by colon) |
-grpc_auth_static_client_creds | string | When using grpc_static_auth in the server, this file provides the credentials to use to authenticate with server |
-grpc_auth_static_password_file | string | JSON File to read the users/passwords from |
-grpc_ca | string | Server CA to use for gRPC connections, requires TLS, and enforces client certificate check |
-grpc_cert | string | Server certificate to use for gRPC connections, requires grpc_key, enables TLS |
-grpc_compression | string | Which protocol to use for compressing gRPC. Supported: snappy (Default: nothing) |
-grpc_crl | string | Path to a certificate revocation list in PEM format, client certificates will be further verified against this file during TLS handshake |
-grpc_enable_optional_tls | boolean | Enable optional TLS mode when a server accepts both TLS and plain-text connections on the same port |
-grpc_enable_tracing | boolean | Enable GRPC tracing |
-grpc_initial_conn_window_size | int | gRPC initial connection window size |
-grpc_initial_window_size | int | gRPC initial window size |
-grpc_keepalive_time | duration | After a duration of this time, if the client doesn't see any activity, it pings the server to see if the transport is still alive (default 10s) |
-grpc_keepalive_timeout | duration | After having pinged for keepalive check, the client waits for a duration of Timeout and if no activity is seen even after that the connection is closed. (default 10s) |
-grpc_key | string | Server private key to use for gRPC connections, requires grpc_cert, enables TLS |
-grpc_max_connection_age | duration | Maximum age of a client connection before GoAway is sent (default 2562047h47m16.854775807s) |
-grpc_max_connection_age_grace | duration | Additional grace period after grpc_max_connection_age, after which connections are forcibly closed (default 2562047h47m16.854775807s) |
-grpc_max_message_size | int | Maximum allowed RPC message size. Larger messages will be rejected by gRPC with the error 'exceeding the max size' (default 16777216) |
-grpc_port | int | Port to listen on for gRPC calls |
-grpc_prometheus | boolean | Enable gRPC monitoring with Prometheus |
-grpc_server_ca | string | path to server CA in PEM format, which will be combine with server cert, return full certificate chain to clients |
-grpc_server_initial_conn_window_size | int | gRPC server initial connection window size |
-grpc_server_initial_window_size | int | gRPC server initial window size |
-grpc_server_keepalive_enforcement_policy_min_time | duration | gRPC server minimum keepalive time (default 10s) |
-grpc_server_keepalive_enforcement_policy_permit_without_stream | boolean | gRPC server permit client keepalive pings even when there are no active streams (RPCs) |
-health_check_interval | duration | Interval between health checks (default 20s) |
-heartbeat_enable | boolean | If true, vttablet records (if primary) or checks (if replica) the current time of a replication heartbeat in the table _vt.heartbeat. The result is used to inform the serving state of the vttablet via healthchecks. |
-heartbeat_interval | duration | How frequently to read and write replication heartbeat. (default 1s) |
-hot_row_protection_concurrent_transactions | int | Number of concurrent transactions let through to the txpool/MySQL for the same hot row. Should be > 1 to have enough 'ready' transactions in MySQL and benefit from a pipelining effect (default 5) |
-hot_row_protection_max_global_queue_size | int | Global queue limit across all row (ranges). Useful to prevent that the queue can grow unbounded (default 1000) |
-hot_row_protection_max_queue_size | int | Maximum number of BeginExecute RPCs which will be queued for the same row (range) (default 20) |
-init_db_name_override | string | (init parameter) Override the name of the db used by vttablet. Without this flag, the db name defaults to vt_ |
-init_keyspace | string | (init parameter) Keyspace to use for this tablet |
-init_populate_metadata | boolean | (init parameter) Populate metadata tables even if restore_from_backup is disabled. If restore_from_backup is enabled, metadata tables are always populated regardless of this flag |
-init_shard | string | (init parameter) Shard to use for this tablet |
-init_tablet_type | string | (init parameter) The tablet type to use for this tablet |
-init_tags | value | (init parameter) Comma separated list of key:value pairs used to tag the tablet |
-init_timeout | duration | (init parameter) Timeout to use for the init phase (default 1m0s) |
-jaeger-agent-host | string | Host and port to send spans to; if empty, no tracing will be done |
-keep_logs | duration | Keep logs for this long (using ctime) (zero to keep forever) |
-keep_logs_by_mtime | duration | Keep logs for this long (using mtime) (zero to keep forever) |
-keyspaces_to_watch | value | Specifies which keyspaces this vtgate should have access to while routing queries or accessing the vschema |
-lameduck-period | duration | Keep running at least this long after SIGTERM before stopping (default 50ms) |
-legacy_replication_lag_algorithm | boolean | Use the legacy algorithm when selecting the vttablets for serving (default true) |
-lock_tables_timeout | duration | How long to keep the table locked before timing out (default 1m0s) |
-log_backtrace_at | value | When logging hits line file:N, emit a stack trace |
-log_dir | string | If non-empty, write log files in this directory |
-log_err_stacks | boolean | Log stack traces for errors |
-log_queries | boolean | Enable query logging to syslog. |
-log_queries_to_file | string | Enable query logging to the specified file |
-log_rotate_max_size | uint | Size in bytes at which logs are rotated (glog.MaxSize) (default 1887436800) |
-logtostderr | boolean | Log to standard error instead of files |
-master_connect_retry | duration | Deprecated, use -replication_connect_retry (default 10s) |
-mem-profile-rate | int | Deprecated: use '-pprof=mem' instead (default 524288) |
-migration_check_interval | duration | Interval between migration checks (default 1m0s) |
-min_number_serving_vttablets | int | The minimum number of vttablets for each replicating tablet_type (e.g. replica, rdonly) that will be continue to be used even with replication lag above discovery_low_replication_lag, but still below discovery_high_replication_lag_minimum_serving (default 2) |
-mutex-profile-fraction | int | Deprecated: use '-pprof=mutex' instead |
-mycnf-file | string | Path to my.cnf, if reading all config params from there |
-mycnf_bin_log_path | string | MySQL binlog path |
-mycnf_data_dir | string | Data directory for mysql |
-mycnf_error_log_path | string | MySQL error log path |
-mycnf_general_log_path | string | MySQL general log path |
-mycnf_innodb_data_home_dir | string | Innodb data home directory |
-mycnf_innodb_log_group_home_dir | string | Innodb log group home directory |
-mycnf_master_info_file | string | MySQL master.info file |
-mycnf_mysql_port | int | Port MySQL is listening on |
-mycnf_pid_file | string | MySQL pid file |
-mycnf_relay_log_index_path | string | MySQL relay log index path |
-mycnf_relay_log_info_path | string | MySQL relay log info path |
-mycnf_relay_log_path | string | MySQL relay log path |
-mycnf_secure_file_priv | string | MySQL path for loading secure files |
-mycnf_server_id | int | MySQL server id of the server (if specified, mycnf-file will be ignored) |
-mycnf_slow_log_path | string | MySQL slow query log path |
-mycnf_socket_file | string | MySQL socket file |
-mycnf_tmp_dir | string | MySQL tmp directory |
-mysql_auth_server_static_file | string | JSON File to read the users/passwords from |
-mysql_auth_server_static_string | string | JSON representation of the users/passwords config |
-mysql_auth_static_reload_interval | duration | Ticker to reload credentials |
-mysql_clientcert_auth_method | string | Client-side authentication method to use. Supported values: mysql_clear_password, dialog (default "mysql_clear_password") |
-mysql_server_flush_delay | duration | Delay after which buffered response will be flushed to the client (default 100ms) |
-mysql_server_version | string | MySQL server version to advertise. |
-mysqlctl_client_protocol | string | The protocol to use to talk to the mysqlctl server (default "grpc") |
-mysqlctl_mycnf_template | string | Template file to use for generating the my.cnf file during server init |
-mysqlctl_socket | string | Socket file to use for remote mysqlctl actions (empty for local actions) |
-onclose_timeout | duration | Wait no more than this for OnClose handlers before stopping (default 1ns) |
-onterm_timeout | duration | Wait no more than this for OnTermSync handlers before stopping (default 10s) |
-opentsdb_uri | string | URI of opentsdb /api/put method |
-orc_api_password | string | (Optional) Basic auth password to authenticate with Orchestrator's HTTP API |
-orc_api_url | string | Address of Orchestrator's HTTP API (e.g. http://host:port/api/). Leave empty to disable Orchestrator integration |
-orc_api_user | string | (Optional) Basic auth username to authenticate with Orchestrator's HTTP API. Leave empty to disable basic auth |
-orc_discover_interval | duration | How often to ping Orchestrator's HTTP API endpoint to tell it we exist. 0 means never |
-orc_timeout | duration | Timeout for calls to Orchestrator's HTTP API (default 30s) |
-pid_file | string | If set, the process will write its pid to the named file, and delete it on graceful shutdown |
-pitr_gtid_lookup_timeout | duration | PITR restore parameter: timeout for fetching gtid from timestamp (default 1m0s) |
-pool-name-prefix | string | Deprecated |
-pool_hostname_resolve_interval | duration | If set force an update to all hostnames and reconnect if changed, defaults to 0 (disabled) |
-port | int | Port for the server |
-pprof | string | Enable profiling |
-pt-osc-path | string | Override default pt-online-schema-change binary full path |
-publish_retry_interval | duration | How long vttablet waits to retry publishing the tablet record (default 30s) |
-purge_logs_interval | duration | How often try to remove old logs (default 1h0m0s) |
-query-log-stream-handler | string | URL handler for streaming queries log (default "/debug/querylog") |
-querylog-filter-tag | string | String that must be present in the query for it to be logged; if using a value as the tag, you need to disable query normalization |
-querylog-format | string | Format for query logs ("text" or "json") (default "text") |
-querylog-row-threshold | uint | Number of rows a query has to return or affect before being logged; not useful for streaming queries. 0 means all queries will be logged |
-queryserver-config-acl-exempt-acl | string | An acl that exempt from table acl checking (this acl is free to access any vitess tables). |
-queryserver-config-allowunsafe-dmls | boolean | Deprecated |
-queryserver-config-annotate-queries | boolean | Prefix queries to MySQL backend with comment indicating vtgate principal (user) and target tablet type |
-queryserver-config-enable-table-acl-dry-run | boolean | If this flag is enabled, tabletserver will emit monitoring metrics and let the request pass regardless of table acl check results |
-queryserver-config-idle-timeout | float | Query server idle timeout (in seconds), vttablet manages various mysql connection pools. This config means if a connection has not been used in given idle timeout, this connection will be removed from pool. This effectively manages number of connection objects and optimize the pool performance (default 1800) |
-queryserver-config-max-dml-rows | int | Query server max dml rows per statement, maximum number of rows allowed to return at a time for an update or delete with either 1) an equality where clauses on primary keys, or 2) a subselect statement. For update and delete statements in above two categories, vttablet will split the original query into multiple small queries based on this configuration value |
-queryserver-config-max-result-size | int | Query server max result size, maximum number of rows allowed to return from vttablet for non-streaming queries (default 10000) |
-queryserver-config-message-conn-pool-prefill-parallelism | int | Deprecated: Unused |
-queryserver-config-message-conn-pool-size | int | Deprecated |
-queryserver-config-message-postpone-cap | int | Query server message postpone cap is the maximum number of messages that can be postponed at any given time. Set this number to substantially lower than transaction cap, so that the transaction pool isn't exhausted by the message subsystem (default 4) |
-queryserver-config-passthrough-dmls | boolean | Query server pass through all dml statements without rewriting |
-queryserver-config-pool-prefill-parallelism | int | Query server read pool pre-fill parallelism, a non-zero value will pre-fill the pool using the specified parallism |
-queryserver-config-pool-size | int | Query server read pool size, connection pool is used by regular queries (non streaming, not in a transaction) (default 16) |
-queryserver-config-query-cache-lfu | boolean | Query server cache algorithm. When set to true, a new cache algorithm based on a TinyLFU admission policy will be used to improve cache behavior and prevent pollution from sparse queries (default true) |
-queryserver-config-query-cache-memory | int | Query server query cache size in bytes, maximum amount of memory to be used for caching. vttablet analyzes every incoming query and generate a query plan, these plans are being cached in a lru cache. This config controls the capacity of the lru cache (default 33554432) |
-queryserver-config-query-cache-size | int | Query server query cache size, maximum number of queries to be cached. vttablet analyzes every incoming query and generate a query plan, these plans are being cached in a lru cache. This config controls the capacity of the lru cache (default 5000) |
-queryserver-config-query-pool-timeout | float | Query server query pool timeout (in seconds), is how long vttablet waits for a connection from the query pool. If set to 0 (default) then the overall query timeout is used instead |
-queryserver-config-query-pool-waiter-cap | int | Query server query pool waiter limit, this is the maximum number of queries that can be queued waiting to get a connection (default 5000) |
-queryserver-config-query-timeout | float | Query server query timeout (in seconds), this is the query timeout in vttablet side. If a query takes more than this timeout, it will be killed (default 30) |
-queryserver-config-schema-change-signal | boolean | Query server schema signal, will signal connected vtgates that schema has changed whenever this is detected. VTGates will need to have -schema_change_signal enabled for this to work |
-queryserver-config-schema-change-signal-interval | float | Query server schema change signal interval defines at which interval the query server shall send schema updates to vtgate (default 5) |
-queryserver-config-schema-reload-time | float | Query server schema reload time, how often vttablet reloads schemas from underlying MySQL instance in seconds. vttablet keeps table schemas in its own memory and periodically refreshes it from MySQL. This config controls the reload time (default 1800) |
-queryserver-config-stream-buffer-size | int | Query server stream buffer size, the maximum number of bytes sent from vttablet for each stream call. It's recommended to keep this value in sync with vtgate's stream_buffer_size (default 32768) |
-queryserver-config-stream-pool-prefill-parallelism | int | Query server stream pool pre-fill parallelism, a non-zero value will pre-fill the pool using the specified parallelism |
-queryserver-config-stream-pool-size | int | Query server stream connection pool size, stream pool is used by stream queries: queries that return results to client in a streaming fashion (default 200) |
-queryserver-config-stream-pool-timeout | float | Query server stream pool timeout (in seconds), is how long vttablet waits for a connection from the stream pool. If set to 0 (default) then there is no timeout |
-queryserver-config-stream-pool-waiter-cap | int | Query server stream pool waiter limit, is the maximum number of streaming queries that can be queued waiting to get a connection |
-queryserver-config-strict-table-acl | boolean | Only allow queries that pass table acl checks |
-queryserver-config-terse-errors | boolean | Prevent bind vars from escaping in client error messages |
-queryserver-config-transaction-cap | int | Query server transaction cap is the maximum number of transactions allowed to happen at any given point of a time for a single vttablet. E.g. by setting transaction cap to 100, at most 100 transactions will be processed by a vttablet and the 101th transaction will be blocked (and fail if it cannot get connection within specified timeout) (default 20) |
-queryserver-config-transaction-prefill-parallelism | int | Query server transaction pre-fill parallelism, a non-zero value will pre-fill the pool using the specified parallism |
-queryserver-config-transaction-timeout | float | Query server transaction timeout (in seconds), a transaction will be killed if it takes longer than this value (default 30) |
-queryserver-config-txpool-timeout | float | Query server transaction pool timeout, is how long vttablet waits if tx pool is full (default 1) |
-queryserver-config-txpool-waiter-cap | int | Query server transaction pool waiter limit, this is the maximum number of transactions that can be queued waiting to get a connection (default 5000) |
-queryserver-config-warn-result-size | int | Query server result size warning threshold, warn if number of rows returned from vttablet for non-streaming queries exceeds this |
-queryserver_enable_online_ddl | boolean | Enable online DDL. (default true) |
-redact-debug-ui-queries | boolean | Redact full queries and bind variables from debug UI |
-relay_log_max_items | int | Maximum number of rows for VReplication target buffering (default 5000) |
-relay_log_max_size | int | Maximum buffer size (in bytes) for VReplication target buffering. If single rows are larger than this, a single row is buffered at a time (default 250000) |
-remote_operation_timeout | duration | Time to wait for a remote operation (default 30s) |
-replication_connect_retry | duration | How long to wait in between replica reconnect attempts. Only precise to the second (default 10s) |
-restore_concurrency | int | (init restore parameter) How many concurrent files to restore at once (default 4) |
-restore_from_backup | boolean | (init restore parameter) Will check BackupStorage for a recent backup at startup and start there |
-restore_from_backup_ts | string | (init restore parameter) If set, restore the latest backup taken at or before this timestamp. Example: '2021-04-29.133050' |
-retain_online_ddl_tables | duration | How long should vttablet keep an old migrated table before purging it (default 24h0m0s) |
-s3_backup_aws_endpoint | string | Endpoint of the S3 backend (region must be provided) |
-s3_backup_aws_region | string | AWS region to use (default "us-east-1") |
-s3_backup_aws_retries | int | AWS request retries (default -1) |
-s3_backup_force_path_style | boolean | Force the S3 path style |
-s3_backup_log_level | string | Determine the S3 loglevel to use from LogOff, LogDebug, LogDebugWithSigning, LogDebugWithHTTPBody, LogDebugWithRequestRetries, LogDebugWithRequestErrors (default "LogOff") |
-s3_backup_server_side_encryption | string | Server-side encryption algorithm (e.g., AES256, aws:kms, sse_c:/path/to/key/file) |
-s3_backup_storage_bucket | string | S3 bucket to use for backups |
-s3_backup_storage_root | string | Root prefix for all backup-related object names |
-s3_backup_tls_skip_verify_cert | boolean | Skip the 'certificate is valid' check for SSL connections |
-sanitize_log_messages | bool | Remove potentially sensitive information in tablet INFO, WARNING, and ERROR log messages such as query parameters |
-security_policy | string | The name of a registered security policy to use for controlling access to URLs - empty means allow all for anyone (built-in policies: deny-all, read-only) |
-service_map | value | Comma separated list of services to enable (or disable if prefixed with '-') Example: grpc-vtworker |
-serving_state_grace_period | duration | How long to pause after broadcasting health to vtgate, before enforcing a new serving state |
-shard_sync_retry_delay | duration | Delay between retries of updates to keep the tablet and its shard record in sync (default 30s) |
-shutdown_grace_period | float | How long to wait (in seconds) for queries and transactions to complete during graceful shutdown |
-sql-max-length-errors | int | Truncate queries in error logs to the given length (default unlimited) |
-sql-max-length-ui | int | Truncate queries in debug UIs to the given length (default 512) |
-srv_topo_cache_refresh | duration | How frequently to refresh the topology for cached entries (default 1s) |
-srv_topo_cache_ttl | duration | How long to use cached entries for topology (default 1s) |
-srv_topo_timeout | duration | Topo server timeout (default 5s) |
-stats_backend | string | The name of the registered push-based monitoring/stats backend uses |
-stats_combine_dimensions | string | List of dimensions to be combined into a single "all" value in exported stats vars |
-stats_common_tags | string | Comma-separated list of common tags for the stats backend. It provides both label and values. Example: label1:value1,label2:value2 |
-stats_drop_variables | string | Variables to be dropped from the list of exported variables. |
-stats_emit_period | duration | Interval between emitting stats to all registered backends (default 1m0s) |
-statsd_address | string | Address for statsd client |
-statsd_sample_rate | float | (default 1) |
-stderrthreshold | value | Logs at or above this threshold go to stderr (default 1) |
-stream_health_buffer_size | uint | Max streaming health entries to buffer per streaming health client (default 20) |
-table-acl-config | string | Path to table access checker config file; send SIGHUP to reload this file |
-table-acl-config-reload-interval | duration | Ticker to reload ACLs. Duration flag, format e.g.: 30s. (Default: do not reload) |
-table_gc_lifecycle | string | States for a DROP TABLE garbage collection cycle. Default is 'hold,purge,evac,drop', use any subset ('drop' implcitly always included) (default "hold,purge,evac,drop") |
-tablet-path | string | Tablet alias |
-tablet_config | string | YAML file config for tablet |
-tablet_dir | string | The directory within the vtdataroot to store vttablet/mysql files. Defaults to being generated by the tablet uid |
-tablet_filters | value | Specifies a comma-separated list of 'keyspace |
-tablet_grpc_ca | string | The server CA to use to validate servers when connecting |
-tablet_grpc_cert | string | The cert to use to connect |
-tablet_grpc_crl | string | The server crl to use to validate server certificates when connecting |
-tablet_grpc_key | string | The key to use to connect |
-tablet_grpc_server_name | string | The server name to use to validate server certificate |
-tablet_hostname | string | If not empty, this hostname will be assumed instead of trying to resolve it |
-tablet_manager_grpc_ca | string | The server CA to use to validate servers when connecting |
-tablet_manager_grpc_cert | string | The cert to use to connect |
-tablet_manager_grpc_concurrency | int | Concurrency to use to talk to a vttablet server for performance-sensitive RPCs (like ExecuteFetchAs{Dba,AllPrivs,App}) (default 8) |
-tablet_manager_grpc_connpool_size | int | Number of tablets to keep tmclient connections open to (default 100) |
-tablet_manager_grpc_crl | string | The server crl to use to validate server certificates when connecting |
-tablet_manager_grpc_key | string | The key to use to connect |
-tablet_manager_grpc_server_name | string | The server name to use to validate server certificate |
-tablet_manager_protocol | string | The protocol to use to talk to vttablet (default "grpc") |
-tablet_protocol | string | How to talk to the vttablets (default "grpc") |
-tablet_refresh_interval | duration | Tablet refresh interval (default 1m0s) |
-tablet_refresh_known_tablets | boolean | Tablet refresh reloads the tablet address/port map from topo in case it changes (default true) |
-tablet_url_template | string | Format string describing debug tablet url formatting. See the Go code for getTabletDebugURL() how to customize this (default "http://{{.GetTabletHostPort}}") |
-throttle_check_as_check_self | boolean | Should throttler/check return a throttler/check-self result (changes throttler behavior for writes) |
-throttle_metrics_query | SELECT | Override default heartbeat/lag metric. Use either SELECT (must return single row, single value) or SHOW GLOBAL ... LIKE ... queries. Set -throttle_metrics_threshold respectively |
-throttle_metrics_threshold | float | Override default throttle threshold, respective to -throttle_metrics_query (default 1.7976931348623157e+308) |
-throttle_tablet_types | string | Comma separated VTTablet types to be considered by the throttler. example: 'replica,rdonly'. 'replica' aways implicitly included (default "replica") |
-throttle_threshold | duration | Replication lag threshold for default lag throttling (default 1s) |
-topo_consul_lock_delay | duration | LockDelay for consul session (default 15s) |
-topo_consul_lock_session_checks | string | List of checks for consul session (default "serfHealth") |
-topo_consul_lock_session_ttl | string | TTL for consul session. |
-topo_consul_watch_poll_duration | duration | Time of the long poll for watch queries. (default 30s) |
-topo_etcd_lease_ttl | int | Lease TTL for locks and leader election. The client will use KeepAlive to keep the lease going (default 30) |
-topo_etcd_tls_ca | string | Path to the CA to use to validate the server cert when connecting to the etcd topo server |
-topo_etcd_tls_cert | string | Path to the client cert to use to connect to the etcd topo server, requires topo_etcd_tls_key, enables TLS |
-topo_etcd_tls_key | string | Path to the client key to use to connect to the etcd topo server, enables TLS |
-topo_global_root | string | Path of the global topology data in the global topology server |
-topo_global_server_address | string | Address of the global topology server |
-topo_implementation | string | Topology implementation to use |
-topo_k8s_context | string | The kubeconfig context to use, overrides the 'current-context' from the config |
-topo_k8s_kubeconfig | string | Path to a valid kubeconfig file. When running as a k8s pod inside the same cluster you wish to use as the topo, you may omit this and the below arguments, and Vitess is capable of auto-discovering the correct values. https://kubernetes.io/docs/tasks/access-application-cluster/access-cluster/#accessing-the-api-from-a-pod |
-topo_k8s_namespace | string | The kubernetes namespace to use for all objects. Default comes from the context or in-cluster config |
-topo_read_concurrency | int | Concurrent topo reads (default 32) |
-topo_zk_auth_file | string | Auth to use when connecting to the zk topo server, file contents should be |
-topo_zk_base_timeout | duration | zk base timeout (see zk.Connect) (default 30s) |
-topo_zk_max_concurrency | int | Maximum number of pending requests to send to a Zookeeper server. (default 64) |
-topo_zk_tls_ca | string | The server CA to use to validate servers when connecting to the zk topo server |
-topo_zk_tls_cert | string | The cert to use to connect to the zk topo server, requires topo_zk_tls_key, enables TLS |
-topo_zk_tls_key | string | The key to use to connect to the zk topo server, enables TLS |
-topocustomrule_cell | string | Topo cell for customrules file. (default "global") |
-topocustomrule_path | string | Path for customrules file. Disabled if empty |
-tracer | string | Tracing service to use (default "noop") |
-tracing-enable-logging | boolean | Whether to enable logging in the tracing service |
-tracing-sampling-rate | value | Sampling rate for the probabilistic jaeger sampler (default 0.1) |
-tracing-sampling-type | value | Sampling strategy to use for jaeger. Possible values are 'const', 'probabilistic', 'rateLimiting', or 'remote' (default const) |
-track_schema_versions | boolean | When enabled, vttablet will store versions of schemas at each position that a DDL is applied and allow retrieval of the schema corresponding to a position |
-transaction-log-stream-handler | string | URL handler for streaming transactions log (default "/debug/txlog") |
-transaction_limit_by_component | boolean | Include CallerID.component when considering who the user is for the purpose of transaction limit |
-transaction_limit_by_principal | boolean | Include CallerID.principal when considering who the user is for the purpose of transaction limit (default true) |
-transaction_limit_by_subcomponent | boolean | Include CallerID.subcomponent when considering who the user is for the purpose of transaction limit |
-transaction_limit_by_username | boolean | Include VTGateCallerID.username when considering who the user is for the purpose of transaction limit (default true) |
-transaction_limit_per_user | float | Maximum number of transactions a single user is allowed to use at any time, represented as fraction of -transaction_cap (default 0.4) |
-transaction_shutdown_grace_period | float | Deprecated: use shutdown_grace_period instead. |
-twopc_abandon_age | float | Time in seconds. Any unresolved transaction older than this time will be sent to the coordinator to be resolved |
-twopc_coordinator_address | string | Address of the (VTGate) process(es) that will be used to notify of abandoned transactions |
-twopc_enable | boolean | If the flag is on, 2pc is enabled. Other 2pc flags must be supplied |
-tx-throttler-config | string | Synonym to -tx_throttler_config (default "target_replication_lag_sec: 2\nmax_replication_lag_sec: 10\ninitial_rate: 100\nmax_increase: 1\nemergency_decrease: 0.5\nmin_duration_between_increases_sec: 40\nmax_duration_between_increases_sec: 62\nmin_duration_between_decreases_sec: 20\nspread_backlog_across_sec: 20\nage_bad_rate_after_sec: 180\nbad_rate_increase: 0.1\nmax_rate_approach_threshold: 0.9\n") |
-tx-throttler-healthcheck-cells | value | Synonym to -tx_throttler_healthcheck_cells |
-tx_throttler_config | string | The configuration of the transaction throttler as a text formatted throttlerdata.Configuration protocol buffer message (default "target_replication_lag_sec: 2\nmax_replication_lag_sec: 10\ninitial_rate: 100\nmax_increase: 1\nemergency_decrease: 0.5\nmin_duration_between_increases_sec: 40\nmax_duration_between_increases_sec: 62\nmin_duration_between_decreases_sec: 20\nspread_backlog_across_sec: 20\nage_bad_rate_after_sec: 180\nbad_rate_increase: 0.1\nmax_rate_approach_threshold: 0.9\n") |
-tx_throttler_healthcheck_cells | value | A comma-separated list of cells. Only tabletservers running in these cells will be monitored for replication lag by the transaction throttler |
-unhealthy_threshold | duration | Replication lag after which a replica is considered unhealthy (default 2h0m0s) |
-use_super_read_only | boolean | Set super_read_only flag when performing planned failover (default true) |
-v | value | Log level for V logs |
-version | boolean | Print binary version |
-vmodule | value | Comma-separated list of pattern=N settings for file-filtered logging |
-vreplication_copy_phase_duration | duration | Duration for each copy phase loop before running the next catchup (default 1h0m0s) |
-vreplication_experimental_flags | int | (Bitmask) of experimental features in vreplication to enable (default 1) |
-vreplication_healthcheck_retry_delay | duration | healthcheck retry delay (default 5s) |
-vreplication_healthcheck_timeout | duration | healthcheck retry delay (default 1m0s) |
-vreplication_healthcheck_topology_refresh | duration | Refresh interval for re-reading the topology (default 30s) |
-vreplication_heartbeat_update_interval | int | Frequency (in seconds, max 60) at which the time_updated column of a vreplication stream when idling (default 1) |
-vreplication_replica_lag_tolerance | duration | Replica lag threshold duration: once lag is below this we switch from copy phase to the replication (streaming) phase (default 1m0s) |
-vreplication_retry_delay | duration | Delay before retrying a failed binlog connection (default 5s) |
-vreplication_store_compressed_gtid | boolean | Store compressed gtids in the pos column of _vt.vreplication |
-vreplication_tablet_type | string | Comma separated list of tablet types used as a source (default "PRIMARY,REPLICA") |
-vstream_dynamic_packet_size | boolean | Enable dynamic packet sizing for VReplication. This will adjust the packet size during replication to improve performance (default true) |
-vstream_packet_size | int | Suggested packet size for VReplication streamer. This is used only as a recommendation. The actual packet size may be more or less than this amount (default 250000) |
-vtctld_addr | string | Address of a vtctld instance |
-vtgate_protocol | string | How to talk to vtgate (default "grpc") |
-vttablet_skip_buildinfo_tags | string | Comma-separated list of buildinfo tags to skip from merging with -init_tags. Each tag is either an exact match or a regular expression of the form '/regexp/' (default "/.*/") |
-wait_for_backup_interval | duration | (init restore parameter) If this is greater than 0, instead of starting up empty when no backups are found, keep checking at this interval for a backup to appear |
-watch_replication_stream | boolean | When enabled, vttablet will stream the MySQL replication stream from the local server, and use it to update schema when it sees a DDL. |
-xbstream_restore_flags | string | Flags to pass to xbstream command during restore. These should be space separated and will be added to the end of the command. These need to match the ones used for backup e.g. --compress / --decompress, --encrypt / --decrypt |
-xtrabackup_backup_flags | string | Flags to pass to backup command. These should be space separated and will be added to the end of the command |
-xtrabackup_prepare_flags | string | Flags to pass to prepare command. These should be space separated and will be added to the end of the command |
-xtrabackup_root_path | string | Directory location of the xtrabackup and xbstream executables, e.g., /usr/bin |
-xtrabackup_stream_mode | string | Which mode to use if streaming, valid values are tar and xbstream (default "tar") |
-xtrabackup_stripe_block_size | uint | Size in bytes of each block that gets sent to a given stripe before rotating to the next stripe (default 102400) |
-xtrabackup_stripes | uint | If greater than 0, use data striping across this many destination files to parallelize data transfer and decompression |
-xtrabackup_user | string | User that xtrabackup will use to connect to the database server. This user must have all necessary privileges. For details, please refer to xtrabackup documentation |
Key Options #
-restore_from_backup: The default value for this flag is false. If set to true, and the my.cnf file was successfully loaded, then vttablet can perform automatic restores as follows:
- If started against a mysql instance that has no data files, it will search the list of backups for the latest one, and initiate a restore. After this, it will point the mysql to the current primary and wait for replication to catch up. Once replication is caught up to the specified tolerance limit, it will advertise itself as serving. This will cause the vtgates to add it to the list of healthy tablets to serve queries from.
- If this flag is true, but my.cnf was not loaded, then vttablet will fatally exit with an error message.
- You can additionally control the level of concurrency for a restore with the
-restore_concurrency
flag. This is typically useful in cloud environments to prevent the restore process from becoming a 'noisy' neighbor by consuming all available disk IOPS.