You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
1013 lines
54 KiB
1013 lines
54 KiB
// Copyright 2015 PingCAP, Inc.
|
|
//
|
|
// Licensed under the Apache License, Version 2.0 (the "License");
|
|
// you may not use this file except in compliance with the License.
|
|
// You may obtain a copy of the License at
|
|
//
|
|
// http://www.apache.org/licenses/LICENSE-2.0
|
|
//
|
|
// Unless required by applicable law or agreed to in writing, software
|
|
// distributed under the License is distributed on an "AS IS" BASIS,
|
|
// See the License for the specific language governing permissions and
|
|
// limitations under the License.
|
|
|
|
package variable
|
|
|
|
import (
|
|
"strconv"
|
|
"strings"
|
|
"sync/atomic"
|
|
|
|
"github.com/pingcap/parser/mysql"
|
|
"github.com/pingcap/tidb/config"
|
|
"github.com/pingcap/tidb/kv"
|
|
"github.com/pingcap/tidb/util/logutil"
|
|
"github.com/pingcap/tidb/util/versioninfo"
|
|
)
|
|
|
|
// ScopeFlag is for system variable whether can be changed in global/session dynamically or not.
|
|
type ScopeFlag uint8
|
|
|
|
const (
|
|
// ScopeNone means the system variable can not be changed dynamically.
|
|
ScopeNone ScopeFlag = 0
|
|
// ScopeGlobal means the system variable can be changed globally.
|
|
ScopeGlobal ScopeFlag = 1 << 0
|
|
// ScopeSession means the system variable can only be changed in current session.
|
|
ScopeSession ScopeFlag = 1 << 1
|
|
)
|
|
|
|
// SysVar is for system variable.
|
|
type SysVar struct {
|
|
// Scope is for whether can be changed or not
|
|
Scope ScopeFlag
|
|
|
|
// Name is the variable name.
|
|
Name string
|
|
|
|
// Value is the variable value.
|
|
Value string
|
|
}
|
|
|
|
// SysVars is global sys vars map.
|
|
var SysVars map[string]*SysVar
|
|
|
|
// GetSysVar returns sys var info for name as key.
|
|
func GetSysVar(name string) *SysVar {
|
|
name = strings.ToLower(name)
|
|
return SysVars[name]
|
|
}
|
|
|
|
// PluginVarNames is global plugin var names set.
|
|
var PluginVarNames []string
|
|
|
|
func init() {
|
|
SysVars = make(map[string]*SysVar)
|
|
for _, v := range defaultSysVars {
|
|
SysVars[v.Name] = v
|
|
}
|
|
initSynonymsSysVariables()
|
|
}
|
|
|
|
// BoolToIntStr converts bool to int string, for example "0" or "1".
|
|
func BoolToIntStr(b bool) string {
|
|
if b {
|
|
return "1"
|
|
}
|
|
return "0"
|
|
}
|
|
|
|
func boolToOnOff(b bool) string {
|
|
if b {
|
|
return "on"
|
|
}
|
|
return "off"
|
|
}
|
|
|
|
// BoolToInt32 converts bool to int32
|
|
func BoolToInt32(b bool) int32 {
|
|
if b {
|
|
return 1
|
|
}
|
|
return 0
|
|
}
|
|
|
|
// we only support MySQL now
|
|
var defaultSysVars = []*SysVar{
|
|
{ScopeGlobal, "gtid_mode", "OFF"},
|
|
{ScopeGlobal, FlushTime, "0"},
|
|
{ScopeSession, PseudoSlaveMode, ""},
|
|
{ScopeNone, "performance_schema_max_mutex_classes", "200"},
|
|
{ScopeGlobal | ScopeSession, LowPriorityUpdates, "0"},
|
|
{ScopeGlobal | ScopeSession, SessionTrackGtids, "OFF"},
|
|
{ScopeGlobal | ScopeSession, "ndbinfo_max_rows", ""},
|
|
{ScopeGlobal | ScopeSession, "ndb_index_stat_option", ""},
|
|
{ScopeGlobal | ScopeSession, OldPasswords, "0"},
|
|
{ScopeNone, "innodb_version", "5.6.25"},
|
|
{ScopeGlobal, MaxConnections, "151"},
|
|
{ScopeGlobal | ScopeSession, BigTables, "0"},
|
|
{ScopeNone, "skip_external_locking", "1"},
|
|
{ScopeGlobal, "slave_pending_jobs_size_max", "16777216"},
|
|
{ScopeNone, "innodb_sync_array_size", "1"},
|
|
{ScopeSession, "rand_seed2", ""},
|
|
{ScopeGlobal, ValidatePasswordCheckUserName, "0"},
|
|
{ScopeGlobal, "validate_password_number_count", "1"},
|
|
{ScopeSession, "gtid_next", ""},
|
|
{ScopeGlobal | ScopeSession, SQLSelectLimit, "18446744073709551615"},
|
|
{ScopeGlobal, "ndb_show_foreign_key_mock_tables", ""},
|
|
{ScopeNone, "multi_range_count", "256"},
|
|
{ScopeGlobal | ScopeSession, DefaultWeekFormat, "0"},
|
|
{ScopeGlobal | ScopeSession, "binlog_error_action", "IGNORE_ERROR"},
|
|
{ScopeGlobal, "slave_transaction_retries", "10"},
|
|
{ScopeGlobal | ScopeSession, "default_storage_engine", "InnoDB"},
|
|
{ScopeNone, "ft_query_expansion_limit", "20"},
|
|
{ScopeGlobal, MaxConnectErrors, "100"},
|
|
{ScopeGlobal, SyncBinlog, "0"},
|
|
{ScopeNone, "max_digest_length", "1024"},
|
|
{ScopeNone, "innodb_force_load_corrupted", "0"},
|
|
{ScopeNone, "performance_schema_max_table_handles", "4000"},
|
|
{ScopeGlobal, InnodbFastShutdown, "1"},
|
|
{ScopeNone, "ft_max_word_len", "84"},
|
|
{ScopeGlobal, "log_backward_compatible_user_definitions", ""},
|
|
{ScopeNone, "lc_messages_dir", "/usr/local/mysql-5.6.25-osx10.8-x86_64/share/"},
|
|
{ScopeGlobal, "ft_boolean_syntax", "+ -><()~*:\"\"&|"},
|
|
{ScopeGlobal, TableDefinitionCache, "-1"},
|
|
{ScopeNone, SkipNameResolve, "0"},
|
|
{ScopeNone, "performance_schema_max_file_handles", "32768"},
|
|
{ScopeSession, "transaction_allow_batching", ""},
|
|
{ScopeGlobal | ScopeSession, SQLModeVar, mysql.DefaultSQLMode},
|
|
{ScopeNone, "performance_schema_max_statement_classes", "168"},
|
|
{ScopeGlobal, "server_id", "0"},
|
|
{ScopeGlobal, "innodb_flushing_avg_loops", "30"},
|
|
{ScopeGlobal | ScopeSession, TmpTableSize, "16777216"},
|
|
{ScopeGlobal, "innodb_max_purge_lag", "0"},
|
|
{ScopeGlobal | ScopeSession, "preload_buffer_size", "32768"},
|
|
{ScopeGlobal, "slave_checkpoint_period", "300"},
|
|
{ScopeGlobal, CheckProxyUsers, "0"},
|
|
{ScopeNone, "have_query_cache", "YES"},
|
|
{ScopeGlobal, "innodb_flush_log_at_timeout", "1"},
|
|
{ScopeGlobal, "innodb_max_undo_log_size", ""},
|
|
{ScopeGlobal | ScopeSession, "range_alloc_block_size", "4096"},
|
|
{ScopeGlobal, ConnectTimeout, "10"},
|
|
{ScopeGlobal | ScopeSession, MaxExecutionTime, "0"},
|
|
{ScopeGlobal | ScopeSession, CollationServer, mysql.DefaultCollationName},
|
|
{ScopeNone, "have_rtree_keys", "YES"},
|
|
{ScopeGlobal, "innodb_old_blocks_pct", "37"},
|
|
{ScopeGlobal, "innodb_file_format", "Antelope"},
|
|
{ScopeGlobal, "innodb_compression_failure_threshold_pct", "5"},
|
|
{ScopeNone, "performance_schema_events_waits_history_long_size", "10000"},
|
|
{ScopeGlobal, "innodb_checksum_algorithm", "innodb"},
|
|
{ScopeNone, "innodb_ft_sort_pll_degree", "2"},
|
|
{ScopeNone, "thread_stack", "262144"},
|
|
{ScopeGlobal, "relay_log_info_repository", "FILE"},
|
|
{ScopeGlobal | ScopeSession, SQLLogBin, "1"},
|
|
{ScopeGlobal, SuperReadOnly, "0"},
|
|
{ScopeGlobal | ScopeSession, "max_delayed_threads", "20"},
|
|
{ScopeNone, "protocol_version", "10"},
|
|
{ScopeGlobal | ScopeSession, "new", "OFF"},
|
|
{ScopeGlobal | ScopeSession, "myisam_sort_buffer_size", "8388608"},
|
|
{ScopeGlobal | ScopeSession, "optimizer_trace_offset", "-1"},
|
|
{ScopeGlobal, InnodbBufferPoolDumpAtShutdown, "0"},
|
|
{ScopeGlobal | ScopeSession, SQLNotes, "1"},
|
|
{ScopeGlobal, InnodbCmpPerIndexEnabled, "0"},
|
|
{ScopeGlobal, "innodb_ft_server_stopword_table", ""},
|
|
{ScopeNone, "performance_schema_max_file_instances", "7693"},
|
|
{ScopeNone, "log_output", "FILE"},
|
|
{ScopeGlobal, "binlog_group_commit_sync_delay", ""},
|
|
{ScopeGlobal, "binlog_group_commit_sync_no_delay_count", ""},
|
|
{ScopeNone, "have_crypt", "YES"},
|
|
{ScopeGlobal, "innodb_log_write_ahead_size", ""},
|
|
{ScopeNone, "innodb_log_group_home_dir", "./"},
|
|
{ScopeNone, "performance_schema_events_statements_history_size", "10"},
|
|
{ScopeGlobal, GeneralLog, "0"},
|
|
{ScopeGlobal, "validate_password_dictionary_file", ""},
|
|
{ScopeGlobal, BinlogOrderCommits, "1"},
|
|
{ScopeGlobal, MasterVerifyChecksum, "0"},
|
|
{ScopeGlobal, "key_cache_division_limit", "100"},
|
|
{ScopeGlobal, "rpl_semi_sync_master_trace_level", ""},
|
|
{ScopeGlobal | ScopeSession, "max_insert_delayed_threads", "20"},
|
|
{ScopeNone, "performance_schema_session_connect_attrs_size", "512"},
|
|
{ScopeGlobal | ScopeSession, "time_zone", "SYSTEM"},
|
|
{ScopeGlobal, "innodb_max_dirty_pages_pct", "75"},
|
|
{ScopeGlobal, InnodbFilePerTable, "1"},
|
|
{ScopeGlobal, InnodbLogCompressedPages, "1"},
|
|
{ScopeGlobal, "master_info_repository", "FILE"},
|
|
{ScopeGlobal, "rpl_stop_slave_timeout", "31536000"},
|
|
{ScopeNone, "skip_networking", "0"},
|
|
{ScopeGlobal, "innodb_monitor_reset", ""},
|
|
{ScopeNone, "have_ssl", "DISABLED"},
|
|
{ScopeNone, "have_openssl", "DISABLED"},
|
|
{ScopeNone, "ssl_ca", ""},
|
|
{ScopeNone, "ssl_cert", ""},
|
|
{ScopeNone, "ssl_key", ""},
|
|
{ScopeNone, "ssl_cipher", ""},
|
|
{ScopeNone, "tls_version", "TLSv1,TLSv1.1,TLSv1.2"},
|
|
{ScopeNone, "system_time_zone", "CST"},
|
|
{ScopeGlobal, InnodbPrintAllDeadlocks, "0"},
|
|
{ScopeNone, "innodb_autoinc_lock_mode", "1"},
|
|
{ScopeGlobal, "slave_net_timeout", "3600"},
|
|
{ScopeGlobal, "key_buffer_size", "8388608"},
|
|
{ScopeGlobal | ScopeSession, ForeignKeyChecks, "OFF"},
|
|
{ScopeGlobal, "host_cache_size", "279"},
|
|
{ScopeGlobal, DelayKeyWrite, "ON"},
|
|
{ScopeNone, "metadata_locks_cache_size", "1024"},
|
|
{ScopeNone, "innodb_force_recovery", "0"},
|
|
{ScopeGlobal, "innodb_file_format_max", "Antelope"},
|
|
{ScopeGlobal | ScopeSession, "debug", ""},
|
|
{ScopeGlobal, "log_warnings", "1"},
|
|
{ScopeGlobal, OfflineMode, "0"},
|
|
{ScopeGlobal | ScopeSession, InnodbStrictMode, "1"},
|
|
{ScopeGlobal, "innodb_rollback_segments", "128"},
|
|
{ScopeGlobal | ScopeSession, "join_buffer_size", "262144"},
|
|
{ScopeNone, "innodb_mirrored_log_groups", "1"},
|
|
{ScopeGlobal, "max_binlog_size", "1073741824"},
|
|
{ScopeGlobal, "sync_master_info", "10000"},
|
|
{ScopeGlobal, "concurrent_insert", "AUTO"},
|
|
{ScopeGlobal, InnodbAdaptiveHashIndex, "1"},
|
|
{ScopeGlobal, InnodbFtEnableStopword, "1"},
|
|
{ScopeGlobal, "general_log_file", "/usr/local/mysql/data/localhost.log"},
|
|
{ScopeGlobal | ScopeSession, InnodbSupportXA, "1"},
|
|
{ScopeGlobal, "innodb_compression_level", "6"},
|
|
{ScopeNone, "innodb_file_format_check", "1"},
|
|
{ScopeNone, "myisam_mmap_size", "18446744073709551615"},
|
|
{ScopeGlobal, "init_slave", ""},
|
|
{ScopeNone, "innodb_buffer_pool_instances", "8"},
|
|
{ScopeGlobal | ScopeSession, BlockEncryptionMode, "aes-128-ecb"},
|
|
{ScopeGlobal | ScopeSession, "max_length_for_sort_data", "1024"},
|
|
{ScopeNone, "character_set_system", "utf8"},
|
|
{ScopeGlobal | ScopeSession, InteractiveTimeout, "28800"},
|
|
{ScopeGlobal, InnodbOptimizeFullTextOnly, "0"},
|
|
{ScopeNone, "character_sets_dir", "/usr/local/mysql-5.6.25-osx10.8-x86_64/share/charsets/"},
|
|
{ScopeGlobal | ScopeSession, QueryCacheType, "OFF"},
|
|
{ScopeNone, "innodb_rollback_on_timeout", "0"},
|
|
{ScopeGlobal | ScopeSession, "query_alloc_block_size", "8192"},
|
|
{ScopeGlobal, SlaveCompressedProtocol, "0"},
|
|
{ScopeGlobal | ScopeSession, InitConnect, ""},
|
|
{ScopeGlobal, "rpl_semi_sync_slave_trace_level", ""},
|
|
{ScopeNone, "have_compress", "YES"},
|
|
{ScopeNone, "thread_concurrency", "10"},
|
|
{ScopeGlobal | ScopeSession, "query_prealloc_size", "8192"},
|
|
{ScopeNone, "relay_log_space_limit", "0"},
|
|
{ScopeGlobal | ScopeSession, MaxUserConnections, "0"},
|
|
{ScopeNone, "performance_schema_max_thread_classes", "50"},
|
|
{ScopeGlobal, "innodb_api_trx_level", "0"},
|
|
{ScopeNone, "disconnect_on_expired_password", "1"},
|
|
{ScopeNone, "performance_schema_max_file_classes", "50"},
|
|
{ScopeGlobal, "expire_logs_days", "0"},
|
|
{ScopeGlobal | ScopeSession, BinlogRowQueryLogEvents, "0"},
|
|
{ScopeGlobal, "default_password_lifetime", ""},
|
|
{ScopeNone, "pid_file", "/usr/local/mysql/data/localhost.pid"},
|
|
{ScopeNone, "innodb_undo_tablespaces", "0"},
|
|
{ScopeGlobal, InnodbStatusOutputLocks, "0"},
|
|
{ScopeNone, "performance_schema_accounts_size", "100"},
|
|
{ScopeGlobal | ScopeSession, "max_error_count", "64"},
|
|
{ScopeGlobal, "max_write_lock_count", "18446744073709551615"},
|
|
{ScopeNone, "performance_schema_max_socket_instances", "322"},
|
|
{ScopeNone, "performance_schema_max_table_instances", "12500"},
|
|
{ScopeGlobal, "innodb_stats_persistent_sample_pages", "20"},
|
|
{ScopeGlobal, "show_compatibility_56", ""},
|
|
{ScopeGlobal, LogSlowSlaveStatements, "0"},
|
|
{ScopeNone, "innodb_open_files", "2000"},
|
|
{ScopeGlobal, "innodb_spin_wait_delay", "6"},
|
|
{ScopeGlobal, "thread_cache_size", "9"},
|
|
{ScopeGlobal, LogSlowAdminStatements, "0"},
|
|
{ScopeNone, "innodb_checksums", "ON"},
|
|
{ScopeNone, "hostname", ServerHostname},
|
|
{ScopeGlobal | ScopeSession, "auto_increment_offset", "1"},
|
|
{ScopeNone, "ft_stopword_file", "(built-in)"},
|
|
{ScopeGlobal, "innodb_max_dirty_pages_pct_lwm", "0"},
|
|
{ScopeGlobal, LogQueriesNotUsingIndexes, "0"},
|
|
{ScopeSession, "timestamp", ""},
|
|
{ScopeGlobal | ScopeSession, QueryCacheWlockInvalidate, "0"},
|
|
{ScopeGlobal | ScopeSession, "sql_buffer_result", "OFF"},
|
|
{ScopeGlobal | ScopeSession, "character_set_filesystem", "binary"},
|
|
{ScopeGlobal | ScopeSession, "collation_database", mysql.DefaultCollationName},
|
|
{ScopeGlobal | ScopeSession, AutoIncrementIncrement, strconv.FormatInt(DefAutoIncrementIncrement, 10)},
|
|
{ScopeGlobal | ScopeSession, AutoIncrementOffset, strconv.FormatInt(DefAutoIncrementOffset, 10)},
|
|
{ScopeGlobal | ScopeSession, "max_heap_table_size", "16777216"},
|
|
{ScopeGlobal | ScopeSession, "div_precision_increment", "4"},
|
|
{ScopeGlobal, "innodb_lru_scan_depth", "1024"},
|
|
{ScopeGlobal, "innodb_purge_rseg_truncate_frequency", ""},
|
|
{ScopeGlobal | ScopeSession, SQLAutoIsNull, "0"},
|
|
{ScopeNone, "innodb_api_enable_binlog", "0"},
|
|
{ScopeGlobal | ScopeSession, "innodb_ft_user_stopword_table", ""},
|
|
{ScopeNone, "server_id_bits", "32"},
|
|
{ScopeGlobal, "innodb_log_checksum_algorithm", ""},
|
|
{ScopeNone, "innodb_buffer_pool_load_at_startup", "1"},
|
|
{ScopeGlobal | ScopeSession, "sort_buffer_size", "262144"},
|
|
{ScopeGlobal, "innodb_flush_neighbors", "1"},
|
|
{ScopeNone, "innodb_use_sys_malloc", "1"},
|
|
{ScopeSession, PluginLoad, ""},
|
|
{ScopeSession, PluginDir, "/data/deploy/plugin"},
|
|
{ScopeNone, "performance_schema_max_socket_classes", "10"},
|
|
{ScopeNone, "performance_schema_max_stage_classes", "150"},
|
|
{ScopeGlobal, "innodb_purge_batch_size", "300"},
|
|
{ScopeNone, "have_profiling", "NO"},
|
|
{ScopeGlobal, "slave_checkpoint_group", "512"},
|
|
{ScopeGlobal | ScopeSession, "character_set_client", mysql.DefaultCharset},
|
|
{ScopeNone, "slave_load_tmpdir", "/var/tmp/"},
|
|
{ScopeGlobal, InnodbBufferPoolDumpNow, "0"},
|
|
{ScopeGlobal, RelayLogPurge, "1"},
|
|
{ScopeGlobal, "ndb_distribution", ""},
|
|
{ScopeGlobal, "myisam_data_pointer_size", "6"},
|
|
{ScopeGlobal, "ndb_optimization_delay", ""},
|
|
{ScopeGlobal, "innodb_ft_num_word_optimize", "2000"},
|
|
{ScopeGlobal | ScopeSession, "max_join_size", "18446744073709551615"},
|
|
{ScopeNone, CoreFile, "0"},
|
|
{ScopeGlobal | ScopeSession, "max_seeks_for_key", "18446744073709551615"},
|
|
{ScopeNone, "innodb_log_buffer_size", "8388608"},
|
|
{ScopeGlobal, "delayed_insert_timeout", "300"},
|
|
{ScopeGlobal, "max_relay_log_size", "0"},
|
|
{ScopeGlobal | ScopeSession, MaxSortLength, "1024"},
|
|
{ScopeNone, "metadata_locks_hash_instances", "8"},
|
|
{ScopeGlobal, "ndb_eventbuffer_free_percent", ""},
|
|
{ScopeNone, "large_files_support", "1"},
|
|
{ScopeGlobal, "binlog_max_flush_queue_time", "0"},
|
|
{ScopeGlobal, "innodb_fill_factor", ""},
|
|
{ScopeGlobal, "log_syslog_facility", ""},
|
|
{ScopeNone, "innodb_ft_min_token_size", "3"},
|
|
{ScopeGlobal | ScopeSession, "transaction_write_set_extraction", ""},
|
|
{ScopeGlobal | ScopeSession, "ndb_blob_write_batch_bytes", ""},
|
|
{ScopeGlobal, "automatic_sp_privileges", "1"},
|
|
{ScopeGlobal, "innodb_flush_sync", ""},
|
|
{ScopeNone, "performance_schema_events_statements_history_long_size", "10000"},
|
|
{ScopeGlobal, "innodb_monitor_disable", ""},
|
|
{ScopeNone, "innodb_doublewrite", "1"},
|
|
{ScopeGlobal, "slave_parallel_type", ""},
|
|
{ScopeNone, "log_bin_use_v1_row_events", "0"},
|
|
{ScopeSession, "innodb_optimize_point_storage", ""},
|
|
{ScopeNone, "innodb_api_disable_rowlock", "0"},
|
|
{ScopeGlobal, "innodb_adaptive_flushing_lwm", "10"},
|
|
{ScopeNone, "innodb_log_files_in_group", "2"},
|
|
{ScopeGlobal, InnodbBufferPoolLoadNow, "0"},
|
|
{ScopeNone, "performance_schema_max_rwlock_classes", "40"},
|
|
{ScopeNone, "binlog_gtid_simple_recovery", "1"},
|
|
{ScopeNone, Port, "4000"},
|
|
{ScopeNone, "performance_schema_digests_size", "10000"},
|
|
{ScopeGlobal | ScopeSession, Profiling, "0"},
|
|
{ScopeNone, "lower_case_table_names", "2"},
|
|
{ScopeSession, "rand_seed1", ""},
|
|
{ScopeGlobal, "sha256_password_proxy_users", ""},
|
|
{ScopeGlobal | ScopeSession, SQLQuoteShowCreate, "1"},
|
|
{ScopeGlobal | ScopeSession, "binlogging_impossible_mode", "IGNORE_ERROR"},
|
|
{ScopeGlobal | ScopeSession, QueryCacheSize, "1048576"},
|
|
{ScopeGlobal, "innodb_stats_transient_sample_pages", "8"},
|
|
{ScopeGlobal, InnodbStatsOnMetadata, "0"},
|
|
{ScopeNone, "server_uuid", "00000000-0000-0000-0000-000000000000"},
|
|
{ScopeNone, "open_files_limit", "5000"},
|
|
{ScopeGlobal | ScopeSession, "ndb_force_send", ""},
|
|
{ScopeNone, "skip_show_database", "0"},
|
|
{ScopeGlobal, "log_timestamps", ""},
|
|
{ScopeNone, "version_compile_machine", "x86_64"},
|
|
{ScopeGlobal, "slave_parallel_workers", "0"},
|
|
{ScopeGlobal, "event_scheduler", "OFF"},
|
|
{ScopeGlobal | ScopeSession, "ndb_deferred_constraints", ""},
|
|
{ScopeGlobal, "log_syslog_include_pid", ""},
|
|
{ScopeSession, "last_insert_id", ""},
|
|
{ScopeNone, "innodb_ft_cache_size", "8000000"},
|
|
{ScopeNone, LogBin, "0"},
|
|
{ScopeGlobal, InnodbDisableSortFileCache, "0"},
|
|
{ScopeGlobal, "log_error_verbosity", ""},
|
|
{ScopeNone, "performance_schema_hosts_size", "100"},
|
|
{ScopeGlobal, "innodb_replication_delay", "0"},
|
|
{ScopeGlobal, SlowQueryLog, "0"},
|
|
{ScopeSession, "debug_sync", ""},
|
|
{ScopeGlobal, InnodbStatsAutoRecalc, "1"},
|
|
{ScopeGlobal | ScopeSession, "lc_messages", "en_US"},
|
|
{ScopeGlobal | ScopeSession, "bulk_insert_buffer_size", "8388608"},
|
|
{ScopeGlobal | ScopeSession, BinlogDirectNonTransactionalUpdates, "0"},
|
|
{ScopeGlobal, "innodb_change_buffering", "all"},
|
|
{ScopeGlobal | ScopeSession, SQLBigSelects, "1"},
|
|
{ScopeGlobal | ScopeSession, CharacterSetResults, mysql.DefaultCharset},
|
|
{ScopeGlobal, "innodb_max_purge_lag_delay", "0"},
|
|
{ScopeGlobal | ScopeSession, "session_track_schema", ""},
|
|
{ScopeGlobal, "innodb_io_capacity_max", "2000"},
|
|
{ScopeGlobal, "innodb_autoextend_increment", "64"},
|
|
{ScopeGlobal | ScopeSession, "binlog_format", "STATEMENT"},
|
|
{ScopeGlobal | ScopeSession, "optimizer_trace", "enabled=off,one_line=off"},
|
|
{ScopeGlobal | ScopeSession, "read_rnd_buffer_size", "262144"},
|
|
{ScopeNone, "version_comment", "TiDB Server (Apache License 2.0) " + versioninfo.TiDBEdition + " Edition, MySQL 5.7 compatible"},
|
|
{ScopeGlobal | ScopeSession, NetWriteTimeout, "60"},
|
|
{ScopeGlobal, InnodbBufferPoolLoadAbort, "0"},
|
|
{ScopeGlobal | ScopeSession, TxnIsolation, "REPEATABLE-READ"},
|
|
{ScopeGlobal | ScopeSession, TransactionIsolation, "REPEATABLE-READ"},
|
|
{ScopeGlobal | ScopeSession, "collation_connection", mysql.DefaultCollationName},
|
|
{ScopeGlobal, "rpl_semi_sync_master_timeout", ""},
|
|
{ScopeGlobal | ScopeSession, "transaction_prealloc_size", "4096"},
|
|
{ScopeNone, "slave_skip_errors", "OFF"},
|
|
{ScopeNone, "performance_schema_setup_objects_size", "100"},
|
|
{ScopeGlobal, "sync_relay_log", "10000"},
|
|
{ScopeGlobal, "innodb_ft_result_cache_limit", "2000000000"},
|
|
{ScopeNone, "innodb_sort_buffer_size", "1048576"},
|
|
{ScopeGlobal, "innodb_ft_enable_diag_print", "OFF"},
|
|
{ScopeNone, "thread_handling", "one-thread-per-connection"},
|
|
{ScopeGlobal, "stored_program_cache", "256"},
|
|
{ScopeNone, "performance_schema_max_mutex_instances", "15906"},
|
|
{ScopeGlobal, "innodb_adaptive_max_sleep_delay", "150000"},
|
|
{ScopeNone, "large_pages", "OFF"},
|
|
{ScopeGlobal | ScopeSession, "session_track_system_variables", ""},
|
|
{ScopeGlobal, "innodb_change_buffer_max_size", "25"},
|
|
{ScopeGlobal, LogBinTrustFunctionCreators, "0"},
|
|
{ScopeNone, "innodb_write_io_threads", "4"},
|
|
{ScopeGlobal, "mysql_native_password_proxy_users", ""},
|
|
{ScopeGlobal, serverReadOnly, "0"},
|
|
{ScopeNone, "large_page_size", "0"},
|
|
{ScopeNone, "table_open_cache_instances", "1"},
|
|
{ScopeGlobal, InnodbStatsPersistent, "1"},
|
|
{ScopeGlobal | ScopeSession, "session_track_state_change", ""},
|
|
{ScopeNone, "optimizer_switch", "index_merge=on,index_merge_union=on,index_merge_sort_union=on,index_merge_intersection=on,engine_condition_pushdown=on,index_condition_pushdown=on,mrr=on,mrr_cost_based=on,block_nested_loop=on,batched_key_access=off,materialization=on,semijoin=on,loosescan=on,firstmatch=on,subquery_materialization_cost_based=on,use_index_extensions=on"},
|
|
{ScopeGlobal, "delayed_queue_size", "1000"},
|
|
{ScopeNone, "innodb_read_only", "0"},
|
|
{ScopeNone, "datetime_format", "%Y-%m-%d %H:%i:%s"},
|
|
{ScopeGlobal, "log_syslog", ""},
|
|
{ScopeNone, "version", mysql.ServerVersion},
|
|
{ScopeGlobal | ScopeSession, "transaction_alloc_block_size", "8192"},
|
|
{ScopeGlobal, "sql_slave_skip_counter", "0"},
|
|
{ScopeGlobal, "innodb_large_prefix", "OFF"},
|
|
{ScopeNone, "performance_schema_max_cond_classes", "80"},
|
|
{ScopeGlobal, "innodb_io_capacity", "200"},
|
|
{ScopeGlobal, "max_binlog_cache_size", "18446744073709547520"},
|
|
{ScopeGlobal | ScopeSession, "ndb_index_stat_enable", ""},
|
|
{ScopeGlobal, "executed_gtids_compression_period", ""},
|
|
{ScopeNone, "time_format", "%H:%i:%s"},
|
|
{ScopeGlobal | ScopeSession, OldAlterTable, "0"},
|
|
{ScopeGlobal | ScopeSession, "long_query_time", "10.000000"},
|
|
{ScopeNone, "innodb_use_native_aio", "0"},
|
|
{ScopeGlobal, "log_throttle_queries_not_using_indexes", "0"},
|
|
{ScopeNone, "locked_in_memory", "0"},
|
|
{ScopeNone, "innodb_api_enable_mdl", "0"},
|
|
{ScopeGlobal, "binlog_cache_size", "32768"},
|
|
{ScopeGlobal, "innodb_compression_pad_pct_max", "50"},
|
|
{ScopeGlobal, InnodbCommitConcurrency, "0"},
|
|
{ScopeNone, "ft_min_word_len", "4"},
|
|
{ScopeGlobal, EnforceGtidConsistency, "OFF"},
|
|
{ScopeGlobal, SecureAuth, "1"},
|
|
{ScopeNone, "max_tmp_tables", "32"},
|
|
{ScopeGlobal, InnodbRandomReadAhead, "0"},
|
|
{ScopeGlobal | ScopeSession, UniqueChecks, "1"},
|
|
{ScopeGlobal, "internal_tmp_disk_storage_engine", ""},
|
|
{ScopeGlobal | ScopeSession, "myisam_repair_threads", "1"},
|
|
{ScopeGlobal, "ndb_eventbuffer_max_alloc", ""},
|
|
{ScopeGlobal, "innodb_read_ahead_threshold", "56"},
|
|
{ScopeGlobal, "key_cache_block_size", "1024"},
|
|
{ScopeGlobal, "rpl_semi_sync_slave_enabled", ""},
|
|
{ScopeNone, "ndb_recv_thread_cpu_mask", ""},
|
|
{ScopeGlobal, "gtid_purged", ""},
|
|
{ScopeGlobal, "max_binlog_stmt_cache_size", "18446744073709547520"},
|
|
{ScopeGlobal | ScopeSession, "lock_wait_timeout", "31536000"},
|
|
{ScopeGlobal | ScopeSession, "read_buffer_size", "131072"},
|
|
{ScopeNone, "innodb_read_io_threads", "4"},
|
|
{ScopeGlobal | ScopeSession, MaxSpRecursionDepth, "0"},
|
|
{ScopeNone, "ignore_builtin_innodb", "0"},
|
|
{ScopeGlobal, "rpl_semi_sync_master_enabled", ""},
|
|
{ScopeGlobal, "slow_query_log_file", "/usr/local/mysql/data/localhost-slow.log"},
|
|
{ScopeGlobal, "innodb_thread_sleep_delay", "10000"},
|
|
{ScopeNone, "license", "Apache License 2.0"},
|
|
{ScopeGlobal, "innodb_ft_aux_table", ""},
|
|
{ScopeGlobal | ScopeSession, SQLWarnings, "0"},
|
|
{ScopeGlobal | ScopeSession, KeepFilesOnCreate, "0"},
|
|
{ScopeGlobal, "slave_preserve_commit_order", ""},
|
|
{ScopeNone, "innodb_data_file_path", "ibdata1:12M:autoextend"},
|
|
{ScopeNone, "performance_schema_setup_actors_size", "100"},
|
|
{ScopeNone, "innodb_additional_mem_pool_size", "8388608"},
|
|
{ScopeNone, "log_error", "/usr/local/mysql/data/localhost.err"},
|
|
{ScopeGlobal, "slave_exec_mode", "STRICT"},
|
|
{ScopeGlobal, "binlog_stmt_cache_size", "32768"},
|
|
{ScopeNone, "relay_log_info_file", "relay-log.info"},
|
|
{ScopeNone, "innodb_ft_total_cache_size", "640000000"},
|
|
{ScopeNone, "performance_schema_max_rwlock_instances", "9102"},
|
|
{ScopeGlobal, "table_open_cache", "2000"},
|
|
{ScopeNone, "log_slave_updates", "0"},
|
|
{ScopeNone, "performance_schema_events_stages_history_long_size", "10000"},
|
|
{ScopeGlobal | ScopeSession, AutoCommit, "1"},
|
|
{ScopeSession, "insert_id", ""},
|
|
{ScopeGlobal | ScopeSession, "default_tmp_storage_engine", "InnoDB"},
|
|
{ScopeGlobal | ScopeSession, "optimizer_search_depth", "62"},
|
|
{ScopeGlobal, "max_points_in_geometry", ""},
|
|
{ScopeGlobal, "innodb_stats_sample_pages", "8"},
|
|
{ScopeGlobal | ScopeSession, "profiling_history_size", "15"},
|
|
{ScopeGlobal | ScopeSession, "character_set_database", mysql.DefaultCharset},
|
|
{ScopeNone, "have_symlink", "YES"},
|
|
{ScopeGlobal | ScopeSession, "storage_engine", "InnoDB"},
|
|
{ScopeGlobal | ScopeSession, "sql_log_off", "0"},
|
|
// In MySQL, the default value of `explicit_defaults_for_timestamp` is `0`.
|
|
// But In TiDB, it's set to `1` to be consistent with TiDB timestamp behavior.
|
|
// See: https://github.com/pingcap/tidb/pull/6068 for details
|
|
{ScopeNone, "explicit_defaults_for_timestamp", "1"},
|
|
{ScopeNone, "performance_schema_events_waits_history_size", "10"},
|
|
{ScopeGlobal, "log_syslog_tag", ""},
|
|
{ScopeGlobal | ScopeSession, TxReadOnly, "0"},
|
|
{ScopeGlobal | ScopeSession, TransactionReadOnly, "0"},
|
|
{ScopeGlobal, "rpl_semi_sync_master_wait_point", ""},
|
|
{ScopeGlobal, "innodb_undo_log_truncate", ""},
|
|
{ScopeSession, "innodb_create_intrinsic", ""},
|
|
{ScopeGlobal, "gtid_executed_compression_period", ""},
|
|
{ScopeGlobal, "ndb_log_empty_epochs", ""},
|
|
{ScopeGlobal, MaxPreparedStmtCount, strconv.FormatInt(DefMaxPreparedStmtCount, 10)},
|
|
{ScopeNone, "have_geometry", "YES"},
|
|
{ScopeGlobal | ScopeSession, "optimizer_trace_max_mem_size", "16384"},
|
|
{ScopeGlobal | ScopeSession, "net_retry_count", "10"},
|
|
{ScopeSession, "ndb_table_no_logging", ""},
|
|
{ScopeGlobal | ScopeSession, "optimizer_trace_features", "greedy_search=on,range_optimizer=on,dynamic_range=on,repeated_subselect=on"},
|
|
{ScopeGlobal, "innodb_flush_log_at_trx_commit", "1"},
|
|
{ScopeGlobal, "rewriter_enabled", ""},
|
|
{ScopeGlobal, "query_cache_min_res_unit", "4096"},
|
|
{ScopeGlobal | ScopeSession, "updatable_views_with_limit", "YES"},
|
|
{ScopeGlobal | ScopeSession, "optimizer_prune_level", "1"},
|
|
{ScopeGlobal, "slave_sql_verify_checksum", "1"},
|
|
{ScopeGlobal | ScopeSession, "completion_type", "NO_CHAIN"},
|
|
{ScopeGlobal, "binlog_checksum", "CRC32"},
|
|
{ScopeNone, "report_port", "3306"},
|
|
{ScopeGlobal | ScopeSession, ShowOldTemporals, "0"},
|
|
{ScopeGlobal, "query_cache_limit", "1048576"},
|
|
{ScopeGlobal, "innodb_buffer_pool_size", "134217728"},
|
|
{ScopeGlobal, InnodbAdaptiveFlushing, "1"},
|
|
{ScopeNone, "datadir", "/usr/local/mysql/data/"},
|
|
{ScopeGlobal | ScopeSession, WaitTimeout, strconv.FormatInt(DefWaitTimeout, 10)},
|
|
{ScopeGlobal, "innodb_monitor_enable", ""},
|
|
{ScopeNone, "date_format", "%Y-%m-%d"},
|
|
{ScopeGlobal, "innodb_buffer_pool_filename", "ib_buffer_pool"},
|
|
{ScopeGlobal, "slow_launch_time", "2"},
|
|
{ScopeGlobal, "slave_max_allowed_packet", "1073741824"},
|
|
{ScopeGlobal | ScopeSession, "ndb_use_transactions", ""},
|
|
{ScopeNone, "innodb_purge_threads", "1"},
|
|
{ScopeGlobal, "innodb_concurrency_tickets", "5000"},
|
|
{ScopeGlobal, "innodb_monitor_reset_all", ""},
|
|
{ScopeNone, "performance_schema_users_size", "100"},
|
|
{ScopeGlobal, "ndb_log_updated_only", ""},
|
|
{ScopeNone, "basedir", "/usr/local/mysql"},
|
|
{ScopeGlobal, "innodb_old_blocks_time", "1000"},
|
|
{ScopeGlobal, "innodb_stats_method", "nulls_equal"},
|
|
{ScopeGlobal | ScopeSession, InnodbLockWaitTimeout, strconv.FormatInt(DefInnodbLockWaitTimeout, 10)},
|
|
{ScopeGlobal, LocalInFile, "1"},
|
|
{ScopeGlobal | ScopeSession, "myisam_stats_method", "nulls_unequal"},
|
|
{ScopeNone, "version_compile_os", "osx10.8"},
|
|
{ScopeNone, "relay_log_recovery", "0"},
|
|
{ScopeNone, "old", "0"},
|
|
{ScopeGlobal | ScopeSession, InnodbTableLocks, "1"},
|
|
{ScopeNone, PerformanceSchema, "0"},
|
|
{ScopeNone, "myisam_recover_options", "OFF"},
|
|
{ScopeGlobal | ScopeSession, NetBufferLength, "16384"},
|
|
{ScopeGlobal, "rpl_semi_sync_master_wait_for_slave_count", ""},
|
|
{ScopeGlobal | ScopeSession, "binlog_row_image", "FULL"},
|
|
{ScopeNone, "innodb_locks_unsafe_for_binlog", "0"},
|
|
{ScopeSession, "rbr_exec_mode", ""},
|
|
{ScopeGlobal, "myisam_max_sort_file_size", "9223372036853727232"},
|
|
{ScopeNone, "back_log", "80"},
|
|
{ScopeNone, "lower_case_file_system", "1"},
|
|
{ScopeGlobal, "rpl_semi_sync_master_wait_no_slave", ""},
|
|
{ScopeGlobal | ScopeSession, GroupConcatMaxLen, "1024"},
|
|
{ScopeSession, "pseudo_thread_id", ""},
|
|
{ScopeNone, "socket", "/tmp/myssock"},
|
|
{ScopeNone, "have_dynamic_loading", "YES"},
|
|
{ScopeGlobal, "rewriter_verbose", ""},
|
|
{ScopeGlobal, "innodb_undo_logs", "128"},
|
|
{ScopeNone, "performance_schema_max_cond_instances", "3504"},
|
|
{ScopeGlobal, "delayed_insert_limit", "100"},
|
|
{ScopeGlobal, Flush, "0"},
|
|
{ScopeGlobal | ScopeSession, "eq_range_index_dive_limit", "10"},
|
|
{ScopeNone, "performance_schema_events_stages_history_size", "10"},
|
|
{ScopeGlobal | ScopeSession, "character_set_connection", mysql.DefaultCharset},
|
|
{ScopeGlobal, MyISAMUseMmap, "0"},
|
|
{ScopeGlobal | ScopeSession, "ndb_join_pushdown", ""},
|
|
{ScopeGlobal | ScopeSession, CharacterSetServer, mysql.DefaultCharset},
|
|
{ScopeGlobal, "validate_password_special_char_count", "1"},
|
|
{ScopeNone, "performance_schema_max_thread_instances", "402"},
|
|
{ScopeGlobal, "slave_rows_search_algorithms", "TABLE_SCAN,INDEX_SCAN"},
|
|
{ScopeGlobal | ScopeSession, "ndbinfo_show_hidden", ""},
|
|
{ScopeGlobal | ScopeSession, "net_read_timeout", "30"},
|
|
{ScopeNone, "innodb_page_size", "16384"},
|
|
{ScopeGlobal | ScopeSession, MaxAllowedPacket, "67108864"},
|
|
{ScopeNone, "innodb_log_file_size", "50331648"},
|
|
{ScopeGlobal, "sync_relay_log_info", "10000"},
|
|
{ScopeGlobal | ScopeSession, "optimizer_trace_limit", "1"},
|
|
{ScopeNone, "innodb_ft_max_token_size", "84"},
|
|
{ScopeGlobal, "validate_password_length", "8"},
|
|
{ScopeGlobal, "ndb_log_binlog_index", ""},
|
|
{ScopeGlobal, "innodb_api_bk_commit_interval", "5"},
|
|
{ScopeNone, "innodb_undo_directory", "."},
|
|
{ScopeNone, "bind_address", "*"},
|
|
{ScopeGlobal, "innodb_sync_spin_loops", "30"},
|
|
{ScopeGlobal | ScopeSession, SQLSafeUpdates, "0"},
|
|
{ScopeNone, "tmpdir", "/var/tmp/"},
|
|
{ScopeGlobal, "innodb_thread_concurrency", "0"},
|
|
{ScopeGlobal, SlaveAllowBatching, "0"},
|
|
{ScopeGlobal, "innodb_buffer_pool_dump_pct", ""},
|
|
{ScopeGlobal | ScopeSession, "lc_time_names", "en_US"},
|
|
{ScopeGlobal | ScopeSession, "max_statement_time", ""},
|
|
{ScopeGlobal | ScopeSession, EndMakersInJSON, "0"},
|
|
{ScopeGlobal, AvoidTemporalUpgrade, "0"},
|
|
{ScopeGlobal, "key_cache_age_threshold", "300"},
|
|
{ScopeGlobal, InnodbStatusOutput, "0"},
|
|
{ScopeSession, "identity", ""},
|
|
{ScopeGlobal | ScopeSession, "min_examined_row_limit", "0"},
|
|
{ScopeGlobal, "sync_frm", "ON"},
|
|
{ScopeGlobal, "innodb_online_alter_log_max_size", "134217728"},
|
|
{ScopeSession, WarningCount, "0"},
|
|
{ScopeSession, ErrorCount, "0"},
|
|
{ScopeGlobal | ScopeSession, "information_schema_stats_expiry", "86400"},
|
|
{ScopeGlobal, "thread_pool_size", "16"},
|
|
{ScopeGlobal | ScopeSession, WindowingUseHighPrecision, "ON"},
|
|
/* TiDB specific variables */
|
|
{ScopeSession, TiDBSnapshot, ""},
|
|
{ScopeSession, TiDBOptAggPushDown, BoolToIntStr(DefOptAggPushDown)},
|
|
{ScopeGlobal | ScopeSession, TiDBOptBCJ, BoolToIntStr(DefOptBCJ)},
|
|
{ScopeSession, TiDBOptDistinctAggPushDown, BoolToIntStr(config.GetGlobalConfig().Performance.DistinctAggPushDown)},
|
|
{ScopeSession, TiDBOptWriteRowID, BoolToIntStr(DefOptWriteRowID)},
|
|
{ScopeGlobal | ScopeSession, TiDBBuildStatsConcurrency, strconv.Itoa(DefBuildStatsConcurrency)},
|
|
{ScopeGlobal, TiDBAutoAnalyzeRatio, strconv.FormatFloat(DefAutoAnalyzeRatio, 'f', -1, 64)},
|
|
{ScopeGlobal, TiDBAutoAnalyzeStartTime, DefAutoAnalyzeStartTime},
|
|
{ScopeGlobal, TiDBAutoAnalyzeEndTime, DefAutoAnalyzeEndTime},
|
|
{ScopeSession, TiDBChecksumTableConcurrency, strconv.Itoa(DefChecksumTableConcurrency)},
|
|
{ScopeGlobal | ScopeSession, TiDBDistSQLScanConcurrency, strconv.Itoa(DefDistSQLScanConcurrency)},
|
|
{ScopeGlobal | ScopeSession, TiDBOptInSubqToJoinAndAgg, BoolToIntStr(DefOptInSubqToJoinAndAgg)},
|
|
{ScopeGlobal | ScopeSession, TiDBOptCorrelationThreshold, strconv.FormatFloat(DefOptCorrelationThreshold, 'f', -1, 64)},
|
|
{ScopeGlobal | ScopeSession, TiDBOptCorrelationExpFactor, strconv.Itoa(DefOptCorrelationExpFactor)},
|
|
{ScopeGlobal | ScopeSession, TiDBOptCPUFactor, strconv.FormatFloat(DefOptCPUFactor, 'f', -1, 64)},
|
|
{ScopeGlobal | ScopeSession, TiDBOptTiFlashConcurrencyFactor, strconv.FormatFloat(DefOptTiFlashConcurrencyFactor, 'f', -1, 64)},
|
|
{ScopeGlobal | ScopeSession, TiDBOptCopCPUFactor, strconv.FormatFloat(DefOptCopCPUFactor, 'f', -1, 64)},
|
|
{ScopeGlobal | ScopeSession, TiDBOptNetworkFactor, strconv.FormatFloat(DefOptNetworkFactor, 'f', -1, 64)},
|
|
{ScopeGlobal | ScopeSession, TiDBOptScanFactor, strconv.FormatFloat(DefOptScanFactor, 'f', -1, 64)},
|
|
{ScopeGlobal | ScopeSession, TiDBOptDescScanFactor, strconv.FormatFloat(DefOptDescScanFactor, 'f', -1, 64)},
|
|
{ScopeGlobal | ScopeSession, TiDBOptSeekFactor, strconv.FormatFloat(DefOptSeekFactor, 'f', -1, 64)},
|
|
{ScopeGlobal | ScopeSession, TiDBOptMemoryFactor, strconv.FormatFloat(DefOptMemoryFactor, 'f', -1, 64)},
|
|
{ScopeGlobal | ScopeSession, TiDBOptDiskFactor, strconv.FormatFloat(DefOptDiskFactor, 'f', -1, 64)},
|
|
{ScopeGlobal | ScopeSession, TiDBOptConcurrencyFactor, strconv.FormatFloat(DefOptConcurrencyFactor, 'f', -1, 64)},
|
|
{ScopeGlobal | ScopeSession, TiDBIndexJoinBatchSize, strconv.Itoa(DefIndexJoinBatchSize)},
|
|
{ScopeGlobal | ScopeSession, TiDBIndexLookupSize, strconv.Itoa(DefIndexLookupSize)},
|
|
{ScopeGlobal | ScopeSession, TiDBIndexLookupConcurrency, strconv.Itoa(DefIndexLookupConcurrency)},
|
|
{ScopeGlobal | ScopeSession, TiDBIndexLookupJoinConcurrency, strconv.Itoa(DefIndexLookupJoinConcurrency)},
|
|
{ScopeGlobal | ScopeSession, TiDBIndexSerialScanConcurrency, strconv.Itoa(DefIndexSerialScanConcurrency)},
|
|
{ScopeGlobal | ScopeSession, TiDBSkipUTF8Check, BoolToIntStr(DefSkipUTF8Check)},
|
|
{ScopeSession, TiDBBatchInsert, BoolToIntStr(DefBatchInsert)},
|
|
{ScopeSession, TiDBBatchDelete, BoolToIntStr(DefBatchDelete)},
|
|
{ScopeSession, TiDBBatchCommit, BoolToIntStr(DefBatchCommit)},
|
|
{ScopeSession, TiDBDMLBatchSize, strconv.Itoa(DefDMLBatchSize)},
|
|
{ScopeSession, TiDBCurrentTS, strconv.Itoa(DefCurretTS)},
|
|
{ScopeSession, TiDBLastTxnInfo, strconv.Itoa(DefCurretTS)},
|
|
{ScopeGlobal | ScopeSession, TiDBMaxChunkSize, strconv.Itoa(DefMaxChunkSize)},
|
|
{ScopeGlobal | ScopeSession, TiDBAllowBatchCop, strconv.Itoa(DefTiDBAllowBatchCop)},
|
|
{ScopeGlobal | ScopeSession, TiDBInitChunkSize, strconv.Itoa(DefInitChunkSize)},
|
|
{ScopeGlobal | ScopeSession, TiDBEnableCascadesPlanner, "0"},
|
|
{ScopeGlobal | ScopeSession, TiDBEnableIndexMerge, "0"},
|
|
{ScopeSession, TIDBMemQuotaQuery, strconv.FormatInt(config.GetGlobalConfig().MemQuotaQuery, 10)},
|
|
{ScopeSession, TIDBMemQuotaHashJoin, strconv.FormatInt(DefTiDBMemQuotaHashJoin, 10)},
|
|
{ScopeSession, TIDBMemQuotaMergeJoin, strconv.FormatInt(DefTiDBMemQuotaMergeJoin, 10)},
|
|
{ScopeSession, TIDBMemQuotaSort, strconv.FormatInt(DefTiDBMemQuotaSort, 10)},
|
|
{ScopeSession, TIDBMemQuotaTopn, strconv.FormatInt(DefTiDBMemQuotaTopn, 10)},
|
|
{ScopeSession, TIDBMemQuotaIndexLookupReader, strconv.FormatInt(DefTiDBMemQuotaIndexLookupReader, 10)},
|
|
{ScopeSession, TIDBMemQuotaIndexLookupJoin, strconv.FormatInt(DefTiDBMemQuotaIndexLookupJoin, 10)},
|
|
{ScopeSession, TIDBMemQuotaNestedLoopApply, strconv.FormatInt(DefTiDBMemQuotaNestedLoopApply, 10)},
|
|
{ScopeSession, TiDBEnableStreaming, "0"},
|
|
{ScopeSession, TiDBEnableChunkRPC, "1"},
|
|
{ScopeSession, TxnIsolationOneShot, ""},
|
|
{ScopeGlobal | ScopeSession, TiDBEnableTablePartition, "on"},
|
|
{ScopeGlobal | ScopeSession, TiDBHashJoinConcurrency, strconv.Itoa(DefTiDBHashJoinConcurrency)},
|
|
{ScopeGlobal | ScopeSession, TiDBProjectionConcurrency, strconv.Itoa(DefTiDBProjectionConcurrency)},
|
|
{ScopeGlobal | ScopeSession, TiDBHashAggPartialConcurrency, strconv.Itoa(DefTiDBHashAggPartialConcurrency)},
|
|
{ScopeGlobal | ScopeSession, TiDBHashAggFinalConcurrency, strconv.Itoa(DefTiDBHashAggFinalConcurrency)},
|
|
{ScopeGlobal | ScopeSession, TiDBWindowConcurrency, strconv.Itoa(DefTiDBWindowConcurrency)},
|
|
{ScopeGlobal | ScopeSession, TiDBUnionConcurrency, strconv.Itoa(DefTiDBUnionConcurrency)},
|
|
{ScopeGlobal | ScopeSession, TiDBBackoffLockFast, strconv.Itoa(kv.DefBackoffLockFast)},
|
|
{ScopeGlobal | ScopeSession, TiDBBackOffWeight, strconv.Itoa(kv.DefBackOffWeight)},
|
|
{ScopeGlobal | ScopeSession, TiDBRetryLimit, strconv.Itoa(DefTiDBRetryLimit)},
|
|
{ScopeGlobal | ScopeSession, TiDBDisableTxnAutoRetry, BoolToIntStr(DefTiDBDisableTxnAutoRetry)},
|
|
{ScopeGlobal | ScopeSession, TiDBConstraintCheckInPlace, BoolToIntStr(DefTiDBConstraintCheckInPlace)},
|
|
{ScopeGlobal | ScopeSession, TiDBTxnMode, DefTiDBTxnMode},
|
|
{ScopeGlobal, TiDBRowFormatVersion, strconv.Itoa(DefTiDBRowFormatV1)},
|
|
{ScopeSession, TiDBOptimizerSelectivityLevel, strconv.Itoa(DefTiDBOptimizerSelectivityLevel)},
|
|
{ScopeGlobal | ScopeSession, TiDBEnableWindowFunction, BoolToIntStr(DefEnableWindowFunction)},
|
|
{ScopeGlobal | ScopeSession, TiDBEnableVectorizedExpression, BoolToIntStr(DefEnableVectorizedExpression)},
|
|
{ScopeGlobal | ScopeSession, TiDBEnableFastAnalyze, BoolToIntStr(DefTiDBUseFastAnalyze)},
|
|
{ScopeGlobal | ScopeSession, TiDBSkipIsolationLevelCheck, BoolToIntStr(DefTiDBSkipIsolationLevelCheck)},
|
|
|
|
{Scope: ScopeGlobal | ScopeSession, Name: TiDBEnableRateLimitAction, Value: boolToOnOff(DefTiDBEnableRateLimitAction)},
|
|
/* The following variable is defined as session scope but is actually server scope. */
|
|
{ScopeSession, TiDBGeneralLog, strconv.Itoa(DefTiDBGeneralLog)},
|
|
{ScopeSession, TiDBPProfSQLCPU, strconv.Itoa(DefTiDBPProfSQLCPU)},
|
|
{ScopeSession, TiDBDDLSlowOprThreshold, strconv.Itoa(DefTiDBDDLSlowOprThreshold)},
|
|
{ScopeSession, TiDBConfig, ""},
|
|
{ScopeGlobal, TiDBDDLReorgWorkerCount, strconv.Itoa(DefTiDBDDLReorgWorkerCount)},
|
|
{ScopeGlobal, TiDBDDLReorgBatchSize, strconv.Itoa(DefTiDBDDLReorgBatchSize)},
|
|
{ScopeGlobal, TiDBDDLErrorCountLimit, strconv.Itoa(DefTiDBDDLErrorCountLimit)},
|
|
{ScopeSession, TiDBDDLReorgPriority, "PRIORITY_LOW"},
|
|
{ScopeGlobal, TiDBMaxDeltaSchemaCount, strconv.Itoa(DefTiDBMaxDeltaSchemaCount)},
|
|
{ScopeSession, TiDBForcePriority, mysql.Priority2Str[DefTiDBForcePriority]},
|
|
{ScopeSession, TiDBEnableRadixJoin, BoolToIntStr(DefTiDBUseRadixJoin)},
|
|
{ScopeGlobal | ScopeSession, TiDBOptJoinReorderThreshold, strconv.Itoa(DefTiDBOptJoinReorderThreshold)},
|
|
{ScopeSession, TiDBSlowQueryFile, ""},
|
|
{ScopeGlobal, TiDBScatterRegion, BoolToIntStr(DefTiDBScatterRegion)},
|
|
{ScopeSession, TiDBWaitSplitRegionFinish, BoolToIntStr(DefTiDBWaitSplitRegionFinish)},
|
|
{ScopeSession, TiDBWaitSplitRegionTimeout, strconv.Itoa(DefWaitSplitRegionTimeout)},
|
|
{ScopeSession, TiDBLowResolutionTSO, "0"},
|
|
{ScopeSession, TiDBExpensiveQueryTimeThreshold, strconv.Itoa(DefTiDBExpensiveQueryTimeThreshold)},
|
|
{ScopeSession, TiDBMemoryUsageAlarmRatio, strconv.FormatFloat(config.GetGlobalConfig().Performance.MemoryUsageAlarmRatio, 'f', -1, 64)},
|
|
{ScopeGlobal | ScopeSession, TiDBEnableNoopFuncs, BoolToIntStr(DefTiDBEnableNoopFuncs)},
|
|
{ScopeSession, TiDBReplicaRead, "leader"},
|
|
{ScopeSession, TiDBAllowRemoveAutoInc, BoolToIntStr(DefTiDBAllowRemoveAutoInc)},
|
|
{ScopeGlobal | ScopeSession, TiDBEnableStmtSummary, BoolToIntStr(config.GetGlobalConfig().StmtSummary.Enable)},
|
|
{ScopeGlobal | ScopeSession, TiDBStmtSummaryInternalQuery, BoolToIntStr(config.GetGlobalConfig().StmtSummary.EnableInternalQuery)},
|
|
{ScopeGlobal | ScopeSession, TiDBStmtSummaryRefreshInterval, strconv.Itoa(config.GetGlobalConfig().StmtSummary.RefreshInterval)},
|
|
{ScopeGlobal | ScopeSession, TiDBStmtSummaryHistorySize, strconv.Itoa(config.GetGlobalConfig().StmtSummary.HistorySize)},
|
|
{ScopeGlobal | ScopeSession, TiDBStmtSummaryMaxStmtCount, strconv.FormatUint(uint64(config.GetGlobalConfig().StmtSummary.MaxStmtCount), 10)},
|
|
{ScopeGlobal | ScopeSession, TiDBStmtSummaryMaxSQLLength, strconv.FormatUint(uint64(config.GetGlobalConfig().StmtSummary.MaxSQLLength), 10)},
|
|
{ScopeGlobal | ScopeSession, TiDBCapturePlanBaseline, "off"},
|
|
{ScopeGlobal | ScopeSession, TiDBUsePlanBaselines, boolToOnOff(DefTiDBUsePlanBaselines)},
|
|
{ScopeGlobal | ScopeSession, TiDBEvolvePlanBaselines, boolToOnOff(DefTiDBEvolvePlanBaselines)},
|
|
{ScopeGlobal, TiDBEvolvePlanTaskMaxTime, strconv.Itoa(DefTiDBEvolvePlanTaskMaxTime)},
|
|
{ScopeGlobal, TiDBEvolvePlanTaskStartTime, DefTiDBEvolvePlanTaskStartTime},
|
|
{ScopeGlobal, TiDBEvolvePlanTaskEndTime, DefTiDBEvolvePlanTaskEndTime},
|
|
{ScopeSession, TiDBIsolationReadEngines, strings.Join(config.GetGlobalConfig().IsolationRead.Engines, ", ")},
|
|
{ScopeGlobal | ScopeSession, TiDBStoreLimit, strconv.FormatInt(atomic.LoadInt64(&config.GetGlobalConfig().TiKVClient.StoreLimit), 10)},
|
|
{ScopeSession, TiDBMetricSchemaStep, strconv.Itoa(DefTiDBMetricSchemaStep)},
|
|
{ScopeSession, TiDBMetricSchemaRangeDuration, strconv.Itoa(DefTiDBMetricSchemaRangeDuration)},
|
|
{ScopeSession, TiDBSlowLogThreshold, strconv.Itoa(logutil.DefaultSlowThreshold)},
|
|
{ScopeSession, TiDBRecordPlanInSlowLog, strconv.Itoa(logutil.DefaultRecordPlanInSlowLog)},
|
|
{ScopeSession, TiDBEnableSlowLog, BoolToIntStr(logutil.DefaultTiDBEnableSlowLog)},
|
|
{ScopeSession, TiDBQueryLogMaxLen, strconv.Itoa(logutil.DefaultQueryLogMaxLen)},
|
|
{ScopeSession, TiDBCheckMb4ValueInUTF8, BoolToIntStr(config.GetGlobalConfig().CheckMb4ValueInUTF8)},
|
|
{ScopeSession, TiDBFoundInPlanCache, BoolToIntStr(DefTiDBFoundInPlanCache)},
|
|
{ScopeSession, TiDBEnableCollectExecutionInfo, BoolToIntStr(DefTiDBEnableCollectExecutionInfo)},
|
|
{ScopeGlobal | ScopeSession, TiDBAllowAutoRandExplicitInsert, boolToOnOff(DefTiDBAllowAutoRandExplicitInsert)},
|
|
{ScopeGlobal | ScopeSession, TiDBSlowLogMasking, BoolToIntStr(DefTiDBRedactLog)},
|
|
{ScopeGlobal | ScopeSession, TiDBRedactLog, BoolToIntStr(DefTiDBRedactLog)},
|
|
{ScopeGlobal, TiDBEnableTelemetry, BoolToIntStr(DefTiDBEnableTelemetry)},
|
|
{ScopeGlobal | ScopeSession, TiDBEnableAmendPessimisticTxn, boolToOnOff(DefTiDBEnableAmendPessimisticTxn)},
|
|
}
|
|
|
|
// SynonymsSysVariables is synonyms of system variables.
|
|
var SynonymsSysVariables = map[string][]string{}
|
|
|
|
func addSynonymsSysVariables(synonyms ...string) {
|
|
for _, s := range synonyms {
|
|
SynonymsSysVariables[s] = synonyms
|
|
}
|
|
}
|
|
|
|
func initSynonymsSysVariables() {
|
|
addSynonymsSysVariables(TxnIsolation, TransactionIsolation)
|
|
addSynonymsSysVariables(TxReadOnly, TransactionReadOnly)
|
|
}
|
|
|
|
// SetNamesVariables is the system variable names related to set names statements.
|
|
var SetNamesVariables = []string{
|
|
"character_set_client",
|
|
"character_set_connection",
|
|
"character_set_results",
|
|
}
|
|
|
|
// SetCharsetVariables is the system variable names related to set charset statements.
|
|
var SetCharsetVariables = []string{
|
|
"character_set_client",
|
|
"character_set_results",
|
|
}
|
|
|
|
const (
|
|
// CharacterSetConnection is the name for character_set_connection system variable.
|
|
CharacterSetConnection = "character_set_connection"
|
|
// CollationConnection is the name for collation_connection system variable.
|
|
CollationConnection = "collation_connection"
|
|
// CharsetDatabase is the name for character_set_database system variable.
|
|
CharsetDatabase = "character_set_database"
|
|
// CollationDatabase is the name for collation_database system variable.
|
|
CollationDatabase = "collation_database"
|
|
// GeneralLog is the name for 'general_log' system variable.
|
|
GeneralLog = "general_log"
|
|
// AvoidTemporalUpgrade is the name for 'avoid_temporal_upgrade' system variable.
|
|
AvoidTemporalUpgrade = "avoid_temporal_upgrade"
|
|
// MaxPreparedStmtCount is the name for 'max_prepared_stmt_count' system variable.
|
|
MaxPreparedStmtCount = "max_prepared_stmt_count"
|
|
// BigTables is the name for 'big_tables' system variable.
|
|
BigTables = "big_tables"
|
|
// CheckProxyUsers is the name for 'check_proxy_users' system variable.
|
|
CheckProxyUsers = "check_proxy_users"
|
|
// CoreFile is the name for 'core_file' system variable.
|
|
CoreFile = "core_file"
|
|
// DefaultWeekFormat is the name for 'default_week_format' system variable.
|
|
DefaultWeekFormat = "default_week_format"
|
|
// GroupConcatMaxLen is the name for 'group_concat_max_len' system variable.
|
|
GroupConcatMaxLen = "group_concat_max_len"
|
|
// DelayKeyWrite is the name for 'delay_key_write' system variable.
|
|
DelayKeyWrite = "delay_key_write"
|
|
// EndMakersInJSON is the name for 'end_markers_in_json' system variable.
|
|
EndMakersInJSON = "end_markers_in_json"
|
|
// InnodbCommitConcurrency is the name for 'innodb_commit_concurrency' system variable.
|
|
InnodbCommitConcurrency = "innodb_commit_concurrency"
|
|
// InnodbFastShutdown is the name for 'innodb_fast_shutdown' system variable.
|
|
InnodbFastShutdown = "innodb_fast_shutdown"
|
|
// InnodbLockWaitTimeout is the name for 'innodb_lock_wait_timeout' system variable.
|
|
InnodbLockWaitTimeout = "innodb_lock_wait_timeout"
|
|
// SQLLogBin is the name for 'sql_log_bin' system variable.
|
|
SQLLogBin = "sql_log_bin"
|
|
// LogBin is the name for 'log_bin' system variable.
|
|
LogBin = "log_bin"
|
|
// MaxSortLength is the name for 'max_sort_length' system variable.
|
|
MaxSortLength = "max_sort_length"
|
|
// MaxSpRecursionDepth is the name for 'max_sp_recursion_depth' system variable.
|
|
MaxSpRecursionDepth = "max_sp_recursion_depth"
|
|
// MaxUserConnections is the name for 'max_user_connections' system variable.
|
|
MaxUserConnections = "max_user_connections"
|
|
// OfflineMode is the name for 'offline_mode' system variable.
|
|
OfflineMode = "offline_mode"
|
|
// InteractiveTimeout is the name for 'interactive_timeout' system variable.
|
|
InteractiveTimeout = "interactive_timeout"
|
|
// FlushTime is the name for 'flush_time' system variable.
|
|
FlushTime = "flush_time"
|
|
// PseudoSlaveMode is the name for 'pseudo_slave_mode' system variable.
|
|
PseudoSlaveMode = "pseudo_slave_mode"
|
|
// LowPriorityUpdates is the name for 'low_priority_updates' system variable.
|
|
LowPriorityUpdates = "low_priority_updates"
|
|
// SessionTrackGtids is the name for 'session_track_gtids' system variable.
|
|
SessionTrackGtids = "session_track_gtids"
|
|
// OldPasswords is the name for 'old_passwords' system variable.
|
|
OldPasswords = "old_passwords"
|
|
// MaxConnections is the name for 'max_connections' system variable.
|
|
MaxConnections = "max_connections"
|
|
// SkipNameResolve is the name for 'skip_name_resolve' system variable.
|
|
SkipNameResolve = "skip_name_resolve"
|
|
// ForeignKeyChecks is the name for 'foreign_key_checks' system variable.
|
|
ForeignKeyChecks = "foreign_key_checks"
|
|
// SQLSafeUpdates is the name for 'sql_safe_updates' system variable.
|
|
SQLSafeUpdates = "sql_safe_updates"
|
|
// WarningCount is the name for 'warning_count' system variable.
|
|
WarningCount = "warning_count"
|
|
// ErrorCount is the name for 'error_count' system variable.
|
|
ErrorCount = "error_count"
|
|
// SQLSelectLimit is the name for 'sql_select_limit' system variable.
|
|
SQLSelectLimit = "sql_select_limit"
|
|
// MaxConnectErrors is the name for 'max_connect_errors' system variable.
|
|
MaxConnectErrors = "max_connect_errors"
|
|
// TableDefinitionCache is the name for 'table_definition_cache' system variable.
|
|
TableDefinitionCache = "table_definition_cache"
|
|
// TmpTableSize is the name for 'tmp_table_size' system variable.
|
|
TmpTableSize = "tmp_table_size"
|
|
// ConnectTimeout is the name for 'connect_timeout' system variable.
|
|
ConnectTimeout = "connect_timeout"
|
|
// SyncBinlog is the name for 'sync_binlog' system variable.
|
|
SyncBinlog = "sync_binlog"
|
|
// BlockEncryptionMode is the name for 'block_encryption_mode' system variable.
|
|
BlockEncryptionMode = "block_encryption_mode"
|
|
// WaitTimeout is the name for 'wait_timeout' system variable.
|
|
WaitTimeout = "wait_timeout"
|
|
// ValidatePasswordNumberCount is the name of 'validate_password_number_count' system variable.
|
|
ValidatePasswordNumberCount = "validate_password_number_count"
|
|
// ValidatePasswordLength is the name of 'validate_password_length' system variable.
|
|
ValidatePasswordLength = "validate_password_length"
|
|
// PluginDir is the name of 'plugin_dir' system variable.
|
|
PluginDir = "plugin_dir"
|
|
// PluginLoad is the name of 'plugin_load' system variable.
|
|
PluginLoad = "plugin_load"
|
|
// Port is the name for 'port' system variable.
|
|
Port = "port"
|
|
// DataDir is the name for 'datadir' system variable.
|
|
DataDir = "datadir"
|
|
// Profiling is the name for 'Profiling' system variable.
|
|
Profiling = "profiling"
|
|
// Socket is the name for 'socket' system variable.
|
|
Socket = "socket"
|
|
// BinlogOrderCommits is the name for 'binlog_order_commits' system variable.
|
|
BinlogOrderCommits = "binlog_order_commits"
|
|
// MasterVerifyChecksum is the name for 'master_verify_checksum' system variable.
|
|
MasterVerifyChecksum = "master_verify_checksum"
|
|
// ValidatePasswordCheckUserName is the name for 'validate_password_check_user_name' system variable.
|
|
ValidatePasswordCheckUserName = "validate_password_check_user_name"
|
|
// SuperReadOnly is the name for 'super_read_only' system variable.
|
|
SuperReadOnly = "super_read_only"
|
|
// SQLNotes is the name for 'sql_notes' system variable.
|
|
SQLNotes = "sql_notes"
|
|
// QueryCacheType is the name for 'query_cache_type' system variable.
|
|
QueryCacheType = "query_cache_type"
|
|
// SlaveCompressedProtocol is the name for 'slave_compressed_protocol' system variable.
|
|
SlaveCompressedProtocol = "slave_compressed_protocol"
|
|
// BinlogRowQueryLogEvents is the name for 'binlog_rows_query_log_events' system variable.
|
|
BinlogRowQueryLogEvents = "binlog_rows_query_log_events"
|
|
// LogSlowSlaveStatements is the name for 'log_slow_slave_statements' system variable.
|
|
LogSlowSlaveStatements = "log_slow_slave_statements"
|
|
// LogSlowAdminStatements is the name for 'log_slow_admin_statements' system variable.
|
|
LogSlowAdminStatements = "log_slow_admin_statements"
|
|
// LogQueriesNotUsingIndexes is the name for 'log_queries_not_using_indexes' system variable.
|
|
LogQueriesNotUsingIndexes = "log_queries_not_using_indexes"
|
|
// QueryCacheWlockInvalidate is the name for 'query_cache_wlock_invalidate' system variable.
|
|
QueryCacheWlockInvalidate = "query_cache_wlock_invalidate"
|
|
// SQLAutoIsNull is the name for 'sql_auto_is_null' system variable.
|
|
SQLAutoIsNull = "sql_auto_is_null"
|
|
// RelayLogPurge is the name for 'relay_log_purge' system variable.
|
|
RelayLogPurge = "relay_log_purge"
|
|
// AutomaticSpPrivileges is the name for 'automatic_sp_privileges' system variable.
|
|
AutomaticSpPrivileges = "automatic_sp_privileges"
|
|
// SQLQuoteShowCreate is the name for 'sql_quote_show_create' system variable.
|
|
SQLQuoteShowCreate = "sql_quote_show_create"
|
|
// SlowQueryLog is the name for 'slow_query_log' system variable.
|
|
SlowQueryLog = "slow_query_log"
|
|
// BinlogDirectNonTransactionalUpdates is the name for 'binlog_direct_non_transactional_updates' system variable.
|
|
BinlogDirectNonTransactionalUpdates = "binlog_direct_non_transactional_updates"
|
|
// SQLBigSelects is the name for 'sql_big_selects' system variable.
|
|
SQLBigSelects = "sql_big_selects"
|
|
// LogBinTrustFunctionCreators is the name for 'log_bin_trust_function_creators' system variable.
|
|
LogBinTrustFunctionCreators = "log_bin_trust_function_creators"
|
|
// OldAlterTable is the name for 'old_alter_table' system variable.
|
|
OldAlterTable = "old_alter_table"
|
|
// EnforceGtidConsistency is the name for 'enforce_gtid_consistency' system variable.
|
|
EnforceGtidConsistency = "enforce_gtid_consistency"
|
|
// SecureAuth is the name for 'secure_auth' system variable.
|
|
SecureAuth = "secure_auth"
|
|
// UniqueChecks is the name for 'unique_checks' system variable.
|
|
UniqueChecks = "unique_checks"
|
|
// SQLWarnings is the name for 'sql_warnings' system variable.
|
|
SQLWarnings = "sql_warnings"
|
|
// AutoCommit is the name for 'autocommit' system variable.
|
|
AutoCommit = "autocommit"
|
|
// KeepFilesOnCreate is the name for 'keep_files_on_create' system variable.
|
|
KeepFilesOnCreate = "keep_files_on_create"
|
|
// ShowOldTemporals is the name for 'show_old_temporals' system variable.
|
|
ShowOldTemporals = "show_old_temporals"
|
|
// LocalInFile is the name for 'local_infile' system variable.
|
|
LocalInFile = "local_infile"
|
|
// PerformanceSchema is the name for 'performance_schema' system variable.
|
|
PerformanceSchema = "performance_schema"
|
|
// Flush is the name for 'flush' system variable.
|
|
Flush = "flush"
|
|
// SlaveAllowBatching is the name for 'slave_allow_batching' system variable.
|
|
SlaveAllowBatching = "slave_allow_batching"
|
|
// MyISAMUseMmap is the name for 'myisam_use_mmap' system variable.
|
|
MyISAMUseMmap = "myisam_use_mmap"
|
|
// InnodbFilePerTable is the name for 'innodb_file_per_table' system variable.
|
|
InnodbFilePerTable = "innodb_file_per_table"
|
|
// InnodbLogCompressedPages is the name for 'innodb_log_compressed_pages' system variable.
|
|
InnodbLogCompressedPages = "innodb_log_compressed_pages"
|
|
// InnodbPrintAllDeadlocks is the name for 'innodb_print_all_deadlocks' system variable.
|
|
InnodbPrintAllDeadlocks = "innodb_print_all_deadlocks"
|
|
// InnodbStrictMode is the name for 'innodb_strict_mode' system variable.
|
|
InnodbStrictMode = "innodb_strict_mode"
|
|
// InnodbCmpPerIndexEnabled is the name for 'innodb_cmp_per_index_enabled' system variable.
|
|
InnodbCmpPerIndexEnabled = "innodb_cmp_per_index_enabled"
|
|
// InnodbBufferPoolDumpAtShutdown is the name for 'innodb_buffer_pool_dump_at_shutdown' system variable.
|
|
InnodbBufferPoolDumpAtShutdown = "innodb_buffer_pool_dump_at_shutdown"
|
|
// InnodbAdaptiveHashIndex is the name for 'innodb_adaptive_hash_index' system variable.
|
|
InnodbAdaptiveHashIndex = "innodb_adaptive_hash_index"
|
|
// InnodbFtEnableStopword is the name for 'innodb_ft_enable_stopword' system variable.
|
|
InnodbFtEnableStopword = "innodb_ft_enable_stopword"
|
|
// InnodbSupportXA is the name for 'innodb_support_xa' system variable.
|
|
InnodbSupportXA = "innodb_support_xa"
|
|
// InnodbOptimizeFullTextOnly is the name for 'innodb_optimize_fulltext_only' system variable.
|
|
InnodbOptimizeFullTextOnly = "innodb_optimize_fulltext_only"
|
|
// InnodbStatusOutputLocks is the name for 'innodb_status_output_locks' system variable.
|
|
InnodbStatusOutputLocks = "innodb_status_output_locks"
|
|
// InnodbBufferPoolDumpNow is the name for 'innodb_buffer_pool_dump_now' system variable.
|
|
InnodbBufferPoolDumpNow = "innodb_buffer_pool_dump_now"
|
|
// InnodbBufferPoolLoadNow is the name for 'innodb_buffer_pool_load_now' system variable.
|
|
InnodbBufferPoolLoadNow = "innodb_buffer_pool_load_now"
|
|
// InnodbStatsOnMetadata is the name for 'innodb_stats_on_metadata' system variable.
|
|
InnodbStatsOnMetadata = "innodb_stats_on_metadata"
|
|
// InnodbDisableSortFileCache is the name for 'innodb_disable_sort_file_cache' system variable.
|
|
InnodbDisableSortFileCache = "innodb_disable_sort_file_cache"
|
|
// InnodbStatsAutoRecalc is the name for 'innodb_stats_auto_recalc' system variable.
|
|
InnodbStatsAutoRecalc = "innodb_stats_auto_recalc"
|
|
// InnodbBufferPoolLoadAbort is the name for 'innodb_buffer_pool_load_abort' system variable.
|
|
InnodbBufferPoolLoadAbort = "innodb_buffer_pool_load_abort"
|
|
// InnodbStatsPersistent is the name for 'innodb_stats_persistent' system variable.
|
|
InnodbStatsPersistent = "innodb_stats_persistent"
|
|
// InnodbRandomReadAhead is the name for 'innodb_random_read_ahead' system variable.
|
|
InnodbRandomReadAhead = "innodb_random_read_ahead"
|
|
// InnodbAdaptiveFlushing is the name for 'innodb_adaptive_flushing' system variable.
|
|
InnodbAdaptiveFlushing = "innodb_adaptive_flushing"
|
|
// InnodbTableLocks is the name for 'innodb_table_locks' system variable.
|
|
InnodbTableLocks = "innodb_table_locks"
|
|
// InnodbStatusOutput is the name for 'innodb_status_output' system variable.
|
|
InnodbStatusOutput = "innodb_status_output"
|
|
|
|
// NetBufferLength is the name for 'net_buffer_length' system variable.
|
|
NetBufferLength = "net_buffer_length"
|
|
// QueryCacheSize is the name of 'query_cache_size' system variable.
|
|
QueryCacheSize = "query_cache_size"
|
|
// TxReadOnly is the name of 'tx_read_only' system variable.
|
|
TxReadOnly = "tx_read_only"
|
|
// TransactionReadOnly is the name of 'transaction_read_only' system variable.
|
|
TransactionReadOnly = "transaction_read_only"
|
|
// CharacterSetServer is the name of 'character_set_server' system variable.
|
|
CharacterSetServer = "character_set_server"
|
|
// AutoIncrementIncrement is the name of 'auto_increment_increment' system variable.
|
|
AutoIncrementIncrement = "auto_increment_increment"
|
|
// AutoIncrementOffset is the name of 'auto_increment_offset' system variable.
|
|
AutoIncrementOffset = "auto_increment_offset"
|
|
// InitConnect is the name of 'init_connect' system variable.
|
|
InitConnect = "init_connect"
|
|
// CollationServer is the name of 'collation_server' variable.
|
|
CollationServer = "collation_server"
|
|
// NetWriteTimeout is the name of 'net_write_timeout' variable.
|
|
NetWriteTimeout = "net_write_timeout"
|
|
// ThreadPoolSize is the name of 'thread_pool_size' variable.
|
|
ThreadPoolSize = "thread_pool_size"
|
|
// WindowingUseHighPrecision is the name of 'windowing_use_high_precision' system variable.
|
|
WindowingUseHighPrecision = "windowing_use_high_precision"
|
|
)
|
|
|
|
// GlobalVarAccessor is the interface for accessing global scope system and status variables.
|
|
type GlobalVarAccessor interface {
|
|
// GetAllSysVars gets all the global system variable values.
|
|
GetAllSysVars() (map[string]string, error)
|
|
// GetGlobalSysVar gets the global system variable value for name.
|
|
GetGlobalSysVar(name string) (string, error)
|
|
// SetGlobalSysVar sets the global system variable name to value.
|
|
SetGlobalSysVar(name string, value string) error
|
|
}
|
|
|