MySQL 8.4.0
Source Code Documentation
mysqld.h
Go to the documentation of this file.
1/* Copyright (c) 2010, 2024, Oracle and/or its affiliates.
2
3 This program is free software; you can redistribute it and/or modify
4 it under the terms of the GNU General Public License, version 2.0,
5 as published by the Free Software Foundation.
6
7 This program is designed to work with certain software (including
8 but not limited to OpenSSL) that is licensed under separate terms,
9 as designated in a particular file or component or in included license
10 documentation. The authors of MySQL hereby grant you an additional
11 permission to link the program and your derivative works with the
12 separately licensed software that they have either included with
13 the program or referenced in the documentation.
14
15 This program is distributed in the hope that it will be useful,
16 but WITHOUT ANY WARRANTY; without even the implied warranty of
17 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
18 GNU General Public License, version 2.0, for more details.
19
20 You should have received a copy of the GNU General Public License
21 along with this program; if not, write to the Free Software
22 Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA */
23
24#ifndef MYSQLD_INCLUDED
25#define MYSQLD_INCLUDED
26
27#include "my_config.h"
28
29#include <signal.h>
30#include <stdint.h> // int32_t
31#include <sys/types.h>
32#include <time.h>
33#include <atomic>
34#include <string>
35#include <vector>
36
39#include "lex_string.h"
40#include "my_command.h"
41#include "my_compress.h"
42#include "my_getopt.h"
43#include "my_hostname.h" // HOSTNAME_LENGTH
44#include "my_inttypes.h"
45#include "my_io.h"
46#include "my_psi_config.h"
47#include "my_sharedlib.h"
48#include "my_sqlcommand.h" // SQLCOM_END
49#include "my_sys.h" // MY_TMPDIR
50#include "my_thread.h" // my_thread_attr_t
62#include "mysql/status_var.h"
64#include "mysql_com.h" // SERVER_VERSION_LENGTH
65#ifdef _WIN32
66#include "sql/nt_servc.h"
67#endif // _WIN32
68#include "aggregated_stats.h"
69#include "sql/sql_bitmap.h"
70#include "sql/sql_const.h" // UUID_LENGTH
71
75class THD;
76class Time_zone;
77struct MEM_ROOT;
78struct handlerton;
79
80#if MAX_INDEXES <= 64
81typedef Bitmap<64> Key_map; /* Used for finding keys */
82#elif MAX_INDEXES > 255
83#error "MAX_INDEXES values greater than 255 is not supported."
84#else
85typedef Bitmap<((MAX_INDEXES + 7) / 8 * 8)> Key_map; /* Used for finding keys */
86#endif
87
88/* Bits from testflag */
89#define TEST_PRINT_CACHED_TABLES 1
90#define TEST_NO_KEY_GROUP 2
91#define TEST_MIT_THREAD 4
92/*
93 TEST_BLOCKING is made obsolete and is not used any
94 where in the code base and is retained here so that
95 the other bit flag values are not changed.
96*/
97#define OBSOLETE_TEST_BLOCKING 8
98#define TEST_KEEP_TMP_TABLES 16
99#define TEST_READCHECK 64 /**< Force use of readcheck */
100#define TEST_NO_EXTRA 128
101#define TEST_CORE_ON_SIGNAL 256 /**< Give core if signal */
102#define TEST_NO_STACKTRACE 512
103#define TEST_SIGINT 1024 /**< Allow sigint on threads */
104#define TEST_SYNCHRONIZATION \
105 2048 /**< get server to do sleep in \
106 some places */
107#define TEST_DO_QUICK_LEAK_CHECK \
108 4096 /**< Do Valgrind leak check for \
109 each command. */
110#define TEST_NO_TEMP_TABLES \
111 8192 /**< No temp table engine is loaded, so use dummy costs. */
112
113#define SPECIAL_NO_NEW_FUNC 2 /* Skip new functions */
114#define SPECIAL_SKIP_SHOW_DB 4 /* Don't allow 'show db' */
115#define SPECIAL_NO_RESOLVE 64 /* Don't use gethostname */
116#define SPECIAL_SHORT_LOG_FORMAT 1024
117
119
120/* Function prototypes */
121
122/**
123 Signal the server thread for restart.
124
125 @return false if the thread has been successfully signalled for restart
126 else true.
127*/
128
130void kill_mysql(void);
131void refresh_status();
133bool is_secure_file_path(const char *path);
134ulong sql_rnd_with_mutex();
135
136struct System_status_var *get_thd_status_var(THD *thd, bool *aggregated);
137
138#ifndef NDEBUG
139void thd_mem_cnt_alloc(THD *thd, size_t size, const char *key_name);
140#else
141void thd_mem_cnt_alloc(THD *thd, size_t size);
142#endif
143
144void thd_mem_cnt_free(THD *thd, size_t size);
145
146// These are needed for unit testing.
147void set_remaining_args(int argc, char **argv);
149void my_init_signals();
150bool gtid_server_init();
153
155 SERVER_BOOTING, /* Server is not operational. It is starting */
156 SERVER_OPERATING, /* Server is fully initialized and operating */
157 SERVER_SHUTTING_DOWN /* Server is shutting down */
160
162extern bool opt_bin_log;
163extern bool opt_log_replica_updates;
164extern bool opt_log_unsafe_statements;
169extern bool opt_log_slow_extra;
171extern bool opt_skip_name_resolve;
172extern bool opt_help;
173extern bool opt_verbose;
174extern MYSQL_PLUGIN_IMPORT std::atomic<int32>
176extern long opt_upgrade_mode;
177extern bool opt_initialize;
178extern bool opt_safe_user_create;
181extern ulong replica_exec_mode_options;
185extern int32_t opt_regexp_time_limit;
186extern int32_t opt_regexp_stack_limit;
187#ifdef _WIN32
188extern bool opt_no_monitor;
189#endif // _WIN32
190extern bool opt_debugging;
191extern bool opt_validate_config;
192
200
203extern bool lower_case_file_system;
204
206
208
209#ifndef NDEBUG
211#endif
212extern ulong mts_parallel_option;
213#ifdef _WIN32
214extern bool opt_enable_named_pipe;
215extern char *named_pipe_full_access_group;
216extern bool opt_enable_shared_memory;
217extern mysql_rwlock_t LOCK_named_pipe_full_access_group;
218#endif
219extern bool opt_allow_suspicious_udfs;
220extern const char *opt_secure_file_priv;
223extern bool trust_function_creators;
226#ifdef _WIN32
227extern const char *shared_memory_base_name;
228#endif
229extern const char *mysqld_unix_port;
230extern char *default_tz_name;
231extern Time_zone *default_tz;
232extern const char *default_storage_engine;
233extern const char *default_tmp_storage_engine;
236extern bool temptable_use_mmap;
237extern bool using_udf_functions;
238extern bool locked_in_memory;
239extern bool opt_using_transactions;
240extern ulong current_pid;
241extern ulong binlog_expire_logs_seconds;
246extern ulong tc_log_page_waits;
247extern bool relay_log_purge;
248extern bool relay_log_recovery;
249extern std::atomic<bool> offline_mode;
252
258extern ulong delay_key_write_options;
259
260extern ulong opt_log_timestamps;
261extern const char *timestamp_type_names[];
265extern uint default_password_lifetime;
266extern bool password_require_current;
267/*
268 @warning : The real value is in @ref partial_revokes. The @ref
269 opt_partial_revokes is just a tool to trick the Sys_var class into
270 operating on an atomic variable.
271
272 Thus : do not use or access @ref opt_partial_revokes in your code.
273 If you need the value of the flag please use the @ref partial_revokes
274 global.
275 @todo :
276 @ref opt_partial_revokes to be removed when the Sys_var classes can operate
277 safely on an atomic.
278 */
279extern bool opt_partial_revokes;
280extern char *my_bind_addr_str;
281extern char *my_admin_bind_addr_str;
282extern uint mysqld_admin_port;
284extern char glob_hostname[HOSTNAME_LENGTH + 1];
286extern char *opt_init_file;
287extern const char *opt_tc_log_file;
288extern char server_uuid[UUID_LENGTH + 1];
289extern const char *server_uuid_ptr;
290#if defined(HAVE_BUILD_ID_SUPPORT)
291extern char server_build_id[42];
292extern const char *server_build_id_ptr;
293#endif
294extern const double log_10[309];
297extern ulong aborted_threads;
298extern ulong delayed_insert_timeout;
300extern std::atomic<int32> atomic_replica_open_temp_tables;
301extern ulong slow_launch_time;
302extern ulong table_cache_size;
303extern ulong schema_def_size;
304extern ulong stored_program_def_size;
305extern ulong table_def_size;
306extern ulong tablespace_def_size;
308extern ulong max_digest_length;
311extern ulong slave_trans_retries;
312extern uint replica_net_timeout;
315extern ulong rpl_stop_replica_timeout;
318extern ulong open_files_limit;
319extern bool clone_startup;
320extern bool clone_recovery_error;
327extern ulong replica_max_allowed_packet;
328extern ulong binlog_row_event_max_size;
329extern ulong binlog_checksum_options;
330extern ulong binlog_row_metadata;
331extern const char *binlog_checksum_type_names[];
336extern ulong binlog_error_action;
339 /// Ignore the error and let server continue without binlogging
341 /// Abort the server
342 ABORT_SERVER = 1
344extern const char *binlog_error_action_list[];
345extern char *opt_authentication_policy;
346
347extern ulong stored_program_cache_size;
348extern ulong back_log;
350extern time_t server_start_time;
351extern char *opt_mysql_tmpdir;
354extern const char *show_comp_option_name[];
355extern const char *first_keyword, *binary_keyword;
356extern MYSQL_PLUGIN_IMPORT const char *my_localhost;
357extern const char *in_left_expr_name;
358extern SHOW_VAR status_vars[];
362extern struct rand_struct sql_rand;
363extern handlerton *myisam_hton;
364extern handlerton *heap_hton;
366extern handlerton *innodb_hton;
367extern uint opt_server_id_bits;
368extern ulong opt_server_id_mask;
369extern const char *load_default_groups[];
370extern struct my_option my_long_early_options[];
374extern bool server_shutting_down;
377extern ulong connection_errors_internal;
378extern ulong connection_errors_peer_addr;
380extern char *opt_log_error_services;
382/** The size of the host_cache. */
383extern uint host_cache_size;
384extern ulong log_error_verbosity;
385
386extern bool persisted_globals_load;
387extern bool opt_keyring_operations;
389extern char *opt_keyring_migration_user;
390extern char *opt_keyring_migration_host;
395extern ulong opt_keyring_migration_port;
396
399/**
400 Variable to check if connection related options are set
401 as part of keyring migration.
402*/
403extern bool migrate_connect_options;
404
406
407extern thread_local MEM_ROOT **THR_MALLOC;
408
411
412#ifdef HAVE_PSI_INTERFACE
413
455
458
467
499
524
528
529#endif /* HAVE_PSI_INTERFACE */
530
531/*
532 MAINTAINER: Please keep this list in order, to limit merge collisions.
533 Hint: grep PSI_stage_info | sort -u
534*/
557extern PSI_stage_info
585extern PSI_stage_info
588extern PSI_stage_info
592extern PSI_stage_info
594extern PSI_stage_info
596extern PSI_stage_info
638#ifdef HAVE_PSI_STATEMENT_INTERFACE
639/**
640 Statement instrumentation keys (sql).
641 The last entry, at [SQLCOM_END], is for parsing errors.
642*/
644
645/**
646 Statement instrumentation keys (com).
647 The last entry, at [COM_END], is for packet errors.
648*/
650
651/**
652 Statement instrumentation key for replication.
653*/
655#endif /* HAVE_PSI_STATEMENT_INTERFACE */
656
657extern struct st_VioSSLFd *ssl_acceptor_fd;
658
659extern bool opt_large_pages;
660extern uint opt_large_page_size;
661extern char lc_messages_dir[FN_REFLEN];
662extern char *lc_messages_dir_ptr;
663extern const char *log_error_dest;
667
668extern long tc_heuristic_recover;
669
670extern ulong specialflag;
671extern size_t mysql_data_home_len;
672extern const char *mysql_real_data_home_ptr;
679extern bool log_bin_supplied;
682
683#define mysql_tmpdir (my_tmpdir(&mysql_tmpdir_list))
684
685/*
686 Server mutex locks and condition variables.
687 */
716
720
725
726extern ulong opt_ssl_fips_mode;
727
729
730extern sigset_t mysqld_signal_mask;
731/* query_id */
733extern std::atomic<query_id_t> atomic_global_query_id;
734
735int *get_remaining_argc();
736char ***get_remaining_argv();
737
738/* increment query_id and return it. */
739[[nodiscard]] inline query_id_t next_query_id() {
740 return ++atomic_global_query_id;
741}
742
743#define ER(X) please_use_ER_THD_or_ER_DEFAULT_instead(X)
744
745/* Accessor function for _connection_events_loop_aborted flag */
746[[nodiscard]] inline bool connection_events_loop_aborted() {
748}
749
750/* only here because of unireg_init(). */
751static inline void set_connection_events_loop_aborted(bool value) {
753}
754
755/**
756
757 Check if --help option or --validate-config is specified.
758
759 @retval false Neither 'help' or 'validate-config' option is enabled.
760 @retval true Either 'help' or 'validate-config' or both options
761 are enabled.
762*/
764 return (opt_help || opt_validate_config);
765}
766
767/**
768 Get mysqld offline mode.
769
770 @return a bool indicating the offline mode status of the server.
771*/
772inline bool mysqld_offline_mode() { return offline_mode.load(); }
773
774/**
775 Set offline mode with a given value
776
777 @param value true or false indicating the offline mode status of server.
778*/
779inline void set_mysqld_offline_mode(bool value) { offline_mode.store(value); }
780
781/**
782 Get status partial_revokes on server
783
784 @return a bool indicating partial_revokes status of the server.
785 @retval true Parital revokes is ON
786 @retval flase Partial revokes is OFF
787*/
789
790/**
791 Set partial_revokes with a given value
792
793 @param value true or false indicating the status of partial revokes
794 turned ON/OFF on server.
795*/
796void set_mysqld_partial_revokes(bool value);
797
799
800#ifdef _WIN32
801
802bool is_windows_service();
804bool update_named_pipe_full_access_group(const char *new_group_name);
805
806#endif
807
809extern bool opt_mandatory_roles_cache;
811
814/* This variable is a registry handler, defined in mysql_server component and
815 used as a output parameter for minimal chassis. */
816extern SERVICE_TYPE_NO_CONST(registry) * srv_registry;
818/* These global variables which are defined and used in
819 mysql_server component */
820extern SERVICE_TYPE(dynamic_loader_scheme_file) * scheme_file_srv;
821extern SERVICE_TYPE(dynamic_loader) * dynamic_loader_srv;
822
825
827
829
830/**
831 Stores the value of argc during server start up that contains
832 the count of arguments specified by the user in the
833 configuration files and command line.
834 The server refers the cached argument count during
835 plugin and component installation.
836*/
837extern int argc_cached;
838/**
839 Stores the value of argv during server start up that contains
840 the vector of arguments specified by the user in the
841 configuration files and command line.
842 The server refers the cached argument vector during
843 plugin and component installation.
844*/
845extern char **argv_cached;
846
847#endif /* MYSQLD_INCLUDED */
int64 query_id_t
Definition: binlog.h:72
Definition: sql_bitmap.h:154
Definition: sql_bitmap.h:43
This class implements component loading through manifest file.
Definition: sql_component.h:100
Definition: nt_servc.h:23
Definition: rpl_async_conn_failover_configuration_propagation.h:144
The class is a Rpl_filter representing global replication filters, with a vector that references all ...
Definition: rpl_filter.h:533
Class that contains functionality to monitor group member's state, role and quorum changes on all the...
Definition: rpl_io_monitor.h:126
For each client connection we create a separate thread with THD serving as a thread/connection descri...
Definition: sql_lexer_thd.h:36
This class represents abstract time zone and provides basic interface for MYSQL_TIME <-> my_time_t co...
Definition: tztime.h:49
uint sync_binlog_period
Definition: binlog.cc:191
my_thread_attr_t connection_attrib
Definition: mysqld.cc:1591
char * opt_relay_logname
Definition: mysqld.h:263
bool server_id_supplied
Definition: mysqld.h:161
unsigned int PSI_cond_key
Instrumented cond key.
Definition: psi_cond_bits.h:44
unsigned int PSI_file_key
Instrumented file key.
Definition: psi_file_bits.h:48
unsigned int PSI_mutex_key
Instrumented mutex key.
Definition: psi_mutex_bits.h:52
unsigned int PSI_rwlock_key
Instrumented rwlock key.
Definition: psi_rwlock_bits.h:44
unsigned int PSI_socket_key
Instrumented socket key.
Definition: psi_socket_bits.h:49
unsigned int PSI_thread_key
Instrumented thread key.
Definition: psi_thread_bits.h:50
#define MAX_INDEXES
Definition: config.h:210
A better implementation of the UNIX ctype(3) library.
@ COM_END
Not a real command.
Definition: my_command.h:101
Common definition used by mysys, performance schema and server & client.
static constexpr int HOSTNAME_LENGTH
Definition: my_hostname.h:43
Some integer typedefs for easier portability.
unsigned long long int ulonglong
Definition: my_inttypes.h:56
int64_t int64
Definition: my_inttypes.h:68
int32_t int32
Definition: my_inttypes.h:66
uint32_t uint32
Definition: my_inttypes.h:67
Common #defines and includes for file and socket I/O.
#define FN_EXTLEN
Definition: my_io.h:82
#define FN_REFLEN
Definition: my_io.h:83
Defines various enable/disable and HAVE_ macros related to the performance schema instrumentation sys...
Functions related to handling of plugins and other dynamically loaded libraries.
#define MYSQL_PLUGIN_IMPORT
Definition: my_sharedlib.h:71
@ SQLCOM_END
Definition: my_sqlcommand.h:208
Common header for many mysys elements.
Defines to make different thread packages compatible.
pthread_attr_t my_thread_attr_t
Definition: my_thread_bits.h:49
Common definition between mysql server & client.
#define SERVER_VERSION_LENGTH
Definition: mysql_com.h:74
Instrumentation helpers for conditions.
ABI for instrumented mutexes.
Instrumentation helpers for rwlock.
bool opt_enable_named_pipe
Definition: mysqld.cc:1246
void persisted_variables_refresh_keyring_support()
Definition: mysqld.cc:1832
uint sync_relaylog_period
Definition: mysqld.h:243
PSI_file_key key_file_relaylog_index_cache
Definition: mysqld.cc:13613
PSI_cond_key key_COND_cache_status_changed
Definition: mysqld.cc:13494
PSI_mutex_key key_gtid_ensure_index_mutex
Definition: mysqld.cc:13339
ulong aborted_threads
Definition: mysqld.cc:1373
const char * mysql_real_data_home_ptr
Definition: mysqld.cc:1503
PSI_stage_info stage_flushing_applier_metadata
Definition: mysqld.cc:13678
PSI_stage_info stage_making_temp_file_append_before_load_data
Definition: mysqld.cc:13684
PSI_stage_info stage_waiting_for_replica_thread_to_start
Definition: mysqld.cc:13733
PSI_stage_info stage_cleaning_up
Definition: mysqld.cc:13661
ulong opt_keyring_migration_port
Definition: mysqld.cc:1222
PSI_stage_info stage_updating
Definition: mysqld.cc:13722
bool opt_allow_suspicious_udfs
Definition: mysqld.cc:1270
PSI_stage_info stage_rename_result_table
Definition: mysqld.cc:13697
Deployed_components * g_deployed_components
This variable holds handle to the object that's responsible for loading/unloading components from man...
Definition: mysqld.cc:1394
PSI_file_key key_file_load
Definition: mysqld.cc:13599
PSI_stage_info stage_rpl_apply_row_evt_update
Definition: mysqld.cc:13716
PSI_mutex_key key_TABLE_SHARE_LOCK_ha_data
Definition: mysqld.cc:13328
PSI_stage_info stage_deleting_from_reference_tables
Definition: mysqld.cc:13670
bool opt_source_verify_checksum
Definition: mysqld.cc:1322
PSI_file_key key_file_init
Definition: mysqld.cc:13607
PSI_stage_info stage_reading_event_from_the_relay_log
Definition: mysqld.cc:13693
struct aggregated_stats global_aggregated_stats
Definition: mysqld.cc:1538
uint test_flags
Definition: mysqld.cc:1334
void kill_mysql(void)
Definition: mysqld.cc:2483
PSI_stage_info stage_hook_begin_trans
Definition: mysqld.cc:13743
mysql_mutex_t LOCK_replica_trans_dep_tracker
Definition: mysqld.cc:1585
ulong delayed_insert_timeout
Definition: mysqld.cc:1374
mysql_mutex_t LOCK_server_started
Definition: mysqld.cc:1592
mysql_service_registry_t * srv_registry
Definition: mysqld.cc:1995
bool sha256_password_proxy_users
Definition: mysqld.h:225
bool dynamic_plugins_are_initialized
Flag indicating if dynamic plugins have been loaded.
Definition: mysqld.cc:1941
PSI_thread_key key_thread_compress_gtid_table
Definition: mysqld.cc:13567
PSI_mutex_key key_mutex_slave_parallel_worker_count
Definition: mysqld.cc:13325
void set_mysqld_partial_revokes(bool value)
Set partial_revokes with a given value.
Definition: mysqld.cc:14093
PSI_stage_info stage_closing_tables
Definition: mysqld.cc:13662
PSI_file_key key_file_trn
Definition: mysqld.cc:13606
mysql_cond_t COND_manager
Definition: sql_manager.cc:60
char * opt_keyring_migration_socket
Definition: mysqld.cc:1219
int64 query_id_t
Definition: mysqld.h:732
uint ha_open_options
Definition: mysqld.h:250
bool opt_initialize
Definition: mysqld.cc:1244
PSI_cond_key key_relay_log_info_sleep_cond
Definition: mysqld.cc:13505
ulong delay_key_write_options
Definition: mysqld.cc:1336
char * my_bind_addr_str
Definition: mysqld.cc:1177
ulonglong opt_mts_pending_jobs_size_max
Definition: mysqld.cc:1357
bool mysqld_partial_revokes()
Get status partial_revokes on server.
Definition: mysqld.cc:14083
handlerton * innodb_hton
Definition: mysqld.cc:1260
const char * show_comp_option_name[]
Definition: mysqld.cc:1047
PSI_stage_info stage_waiting_for_relay_log_space
Definition: mysqld.cc:13731
bool opt_log_replica_updates
Definition: mysqld.cc:1250
uint protocol_version
Definition: mysqld.cc:1337
PSI_mutex_key key_LOCK_delegate_connection_mutex
Definition: mysqld.cc:13348
PSI_file_key key_file_slow_log
Definition: mysqld.cc:13609
ulong opt_server_id_mask
Definition: mysqld.cc:1264
mysql_mutex_t LOCK_rotate_binlog_master_key
Definition: mysqld.cc:1614
PSI_stage_info stage_query_end
Definition: mysqld.cc:13691
PSI_mutex_key key_source_info_thd_lock
Definition: mysqld.cc:13316
bool clone_recovery_error
True, if clone recovery has failed.
Definition: mysqld.cc:1317
char * default_tz_name
Definition: mysqld.cc:1485
MYSQL_PLUGIN_IMPORT bool mysqld_server_started
Definition: mysqld.h:371
ulonglong temptable_max_ram
Definition: mysqld.cc:1184
PSI_stage_info stage_replica_waiting_workers_to_exit
Definition: mysqld.cc:13714
bool using_udf_functions
Definition: mysqld.cc:1207
bool mysqld_offline_mode()
Get mysqld offline mode.
Definition: mysqld.h:772
MYSQL_PLUGIN_IMPORT MY_TMPDIR mysql_tmpdir_list
Definition: mysqld.cc:1540
PSI_stage_info stage_replica_has_read_all_relay_log
Definition: mysqld.cc:13702
uint replica_rows_last_search_algorithm_used
Definition: mysqld.cc:1360
int init_common_variables()
Definition: mysqld.cc:6417
PSI_cond_key key_PAGE_cond
Definition: mysqld.cc:13491
ulonglong max_binlog_stmt_cache_size
Definition: mysqld.h:322
struct st_VioSSLFd * ssl_acceptor_fd
PSI_mutex_key key_LOCK_thd_data
Definition: mysqld.cc:13308
long opt_upgrade_mode
Definition: mysqld.cc:1243
char * my_admin_bind_addr_str
Definition: mysqld.cc:1178
uint sync_relayloginfo_period
Definition: mysqld.h:243
PSI_stage_info stage_statistics
Definition: mysqld.cc:13718
bool is_secure_file_path(const char *path)
Test a file path to determine if the path is compatible with the secure file path restriction.
Definition: mysqld.cc:12806
PSI_file_key key_file_general_log
Definition: mysqld.cc:13608
ulong rpl_stop_replica_timeout
Definition: mysqld.cc:1381
mysql_mutex_t LOCK_manager
Definition: sql_manager.cc:59
PSI_mutex_key key_mutex_replica_reporting_capability_err_lock
Definition: mysqld.cc:13318
PSI_mutex_key key_mutex_slave_parallel_worker
Definition: mysqld.cc:13326
char * opt_keyring_migration_source
Definition: mysqld.cc:1220
ulong opt_mts_replica_parallel_workers
Definition: mysqld.cc:1356
PSI_stage_info stage_replica_waiting_to_reconnect_after_failed_event_read
Definition: mysqld.cc:13709
char * opt_keyring_migration_user
Definition: mysqld.cc:1216
Bitmap< 64 > Key_map
Definition: mysqld.h:78
PSI_stage_info stage_worker_waiting_for_commit_parent
Definition: mysqld.cc:13739
PSI_rwlock_key key_rwlock_rpl_filter_lock
Definition: mysqld.cc:13452
const char * log_error_dest
Definition: mysqld.cc:1487
PSI_mutex_key key_source_info_run_lock
Definition: mysqld.cc:13314
PSI_file_key key_file_misc
Definition: mysqld.cc:13603
PSI_stage_info stage_copy_to_tmp_table
Definition: mysqld.cc:13666
mysql_mutex_t LOCK_global_system_variables
Definition: mysqld.cc:1560
PSI_thread_key key_thread_one_connection
Definition: mysqld.cc:13566
PSI_cond_key key_COND_active
Definition: mysqld.cc:13492
PSI_stage_info stage_updating_reference_tables
Definition: mysqld.cc:13724
const char * server_uuid_ptr
Definition: mysqld.cc:1472
bool opt_replica_compressed_protocol
Definition: mysqld.cc:1247
PSI_cond_key key_commit_order_manager_cond
Definition: mysqld.cc:13512
PSI_mutex_key key_RELAYLOG_LOCK_index
Definition: mysqld.cc:13334
PSI_rwlock_key key_rwlock_channel_to_filter_lock
Definition: mysqld.cc:13453
PSI_stage_info stage_queueing_source_event_to_the_relay_log
Definition: mysqld.cc:13692
mysql_component_t mysql_component_mysql_server
Definition: server_component.cc:1166
PSI_mutex_key key_commit_order_manager_mutex
Definition: mysqld.cc:13345
PSI_stage_info stage_update
Definition: mysqld.cc:13721
bool signal_restart_server()
Signal the server thread for restart.
Definition: mysqld.cc:2459
void my_init_signals()
Definition: mysqld.cc:3613
ulonglong replica_type_conversions_options
Definition: mysqld.cc:1355
PSI_stage_info stage_alter_inplace
Definition: mysqld.cc:13656
mysql_mutex_t LOCK_log_throttle_qni
Definition: mysqld.cc:1586
char mysql_unpacked_real_data_home[]
Definition: mysqld.cc:1494
ulong slave_trans_retries
Definition: mysqld.cc:1352
SHOW_VAR status_vars[]
Definition: mysqld.cc:11264
PSI_stage_info stage_checking_source_version
Definition: mysqld.cc:13659
PSI_stage_info stage_compressing_gtid_table
Definition: mysqld.cc:13663
uint mysqld_port
Definition: mysqld.h:251
ulong opt_tc_log_size
Definition: mysqld.cc:1210
PSI_stage_info stage_replica_waiting_worker_to_free_events
Definition: mysqld.cc:13712
PSI_stage_info stage_replica_waiting_to_reconnect_after_failed_binlog_dump_request
Definition: mysqld.cc:13708
uint replica_net_timeout
Definition: mysqld.cc:1353
PSI_cond_key key_source_info_data_cond
Definition: mysqld.cc:13496
handlerton * myisam_hton
Definition: mysqld.cc:1259
PSI_stage_info stage_sending_binlog_event_to_replica
Definition: mysqld.cc:13700
bool temptable_use_mmap
Definition: mysqld.cc:1186
bool opt_general_log
Definition: mysqld.cc:1198
PSI_stage_info stage_finished_reading_one_binlog_switching_to_next_binlog
Definition: mysqld.cc:13676
PSI_stage_info stage_suspending
Definition: mysqld.cc:13740
PSI_mutex_key key_LOCK_error_log
Definition: mysqld.cc:13307
PSI_file_key key_file_relaylog_index
Definition: mysqld.cc:13612
ulong table_def_size
Definition: mysqld.cc:1346
char system_time_zone_dst_off[30]
Definition: mysqld.h:285
int * get_remaining_argc()
Definition: mysqld.cc:1841
ulong connection_errors_peer_addr
Number of errors when reading the peer address.
Definition: mysqld.cc:1518
mysql_mutex_t LOCK_collect_instance_log
Definition: mysqld.cc:1597
PSI_stage_info stage_system_lock
Definition: mysqld.cc:13720
mysql_mutex_t LOCK_status
Definition: mysqld.cc:1559
ulong table_cache_size
Definition: mysqld.cc:1341
PSI_stage_info stage_replica_waiting_for_workers_to_process_queue
Definition: mysqld.cc:13707
mysql_rwlock_t LOCK_sys_init_replica
Definition: mysqld.cc:1587
std::atomic< query_id_t > atomic_global_query_id
Definition: mysqld.cc:1372
uint opt_large_page_size
Definition: mysqld.cc:1279
ulong binlog_stmt_cache_use
Definition: mysqld.cc:1379
PSI_stage_info stage_waiting_for_table_flush
Definition: mysqld.cc:13734
bool lower_case_file_system
Definition: mysqld.cc:1274
bool is_help_or_validate_option()
Check if –help option or –validate-config is specified.
Definition: mysqld.h:763
mysql_mutex_t LOCK_partial_revokes
Definition: mysqld.cc:1291
PSI_stage_info stage_replica_waiting_to_reconnect_after_failed_registration_on_source
Definition: mysqld.cc:13710
bool trust_function_creators
Definition: mysqld.cc:1296
PSI_stage_info stage_after_create
Definition: mysqld.cc:13654
PSI_mutex_key key_LOCK_thd_protocol
Definition: mysqld.cc:13310
PSI_mutex_key key_RELAYLOG_LOCK_log
Definition: mysqld.cc:13335
char lc_messages_dir[FN_REFLEN]
Definition: mysqld.cc:1490
PSI_stage_info stage_purging_old_relay_logs
Definition: mysqld.cc:13690
PSI_mutex_key key_RELAYLOG_LOCK_commit
Definition: mysqld.cc:13333
void thd_mem_cnt_alloc(THD *thd, size_t size, const char *key_name)
Definition: mysqld.cc:1867
mysql_cond_t COND_server_started
Definition: mysqld.cc:1593
PSI_mutex_key key_mutex_slave_parallel_pend_jobs
Definition: mysqld.cc:13324
MYSQL_PLUGIN_IMPORT struct System_variables global_system_variables
Definition: mysqld.cc:1535
const char * default_tmp_storage_engine
Definition: mysqld.cc:1183
PSI_stage_info stage_waiting_for_gtid_to_be_committed
Definition: mysqld.cc:13727
uint opt_server_id_bits
Definition: mysqld.cc:1263
PSI_stage_info stage_discard_or_import_tablespace
Definition: mysqld.cc:13671
bool opt_replica_preserve_commit_order
Definition: mysqld.cc:1358
PSI_stage_info stage_user_sleep
Definition: mysqld.cc:13725
PSI_mutex_key key_relay_log_info_sleep_lock
Definition: mysqld.cc:13320
PSI_stage_info stage_rpl_apply_row_evt_delete
Definition: mysqld.cc:13717
PSI_rwlock_key key_rwlock_receiver_tsid_lock
Definition: mysqld.cc:13451
PSI_stage_info stage_creating_tmp_table
Definition: mysqld.cc:13668
bool opt_skip_name_resolve
Definition: mysqld.cc:1204
const char * timestamp_type_names[]
Definition: mysqld.cc:1332
const char * first_keyword
Definition: mysqld.cc:1055
PSI_mutex_key key_structure_guard_mutex
Definition: mysqld.cc:13327
MYSQL_PLUGIN_IMPORT uint reg_ext_length
Definition: mysqld.cc:1497
bool opt_debugging
Definition: mysqld.cc:1169
PSI_mutex_key key_monitor_info_run_lock
Definition: mysqld.cc:13347
LEX_STRING opt_mandatory_roles
Definition: mysqld.cc:1194
char glob_hostname[HOSTNAME_LENGTH+1]
Definition: mysqld.cc:1489
PSI_mutex_key key_LOCK_thd_security_ctx
Definition: mysqld.cc:13311
PSI_stage_info stage_waiting_to_finalize_termination
Definition: mysqld.cc:13737
mysql_mutex_t LOCK_reset_gtid_table
Definition: mysqld.cc:1594
PSI_rwlock_key key_rwlock_channel_map_lock
Definition: mysqld.cc:13449
PSI_mutex_key key_LOCK_tc
Definition: mysqld.cc:13305
PSI_stage_info stage_worker_waiting_for_its_turn_to_commit
Definition: mysqld.cc:13738
char server_uuid[UUID_LENGTH+1]
Definition: mysqld.cc:1471
PSI_cond_key key_monitor_info_run_cond
Definition: mysqld.cc:13514
char * opt_disabled_storage_engines
Definition: mysqld.cc:1262
bool opt_bin_log
Definition: mysqld.cc:1197
mysql_mutex_t LOCK_password_reuse_interval
Definition: mysqld.cc:1288
char * opt_log_error_suppression_list
Definition: mysqld.cc:1214
ulong opt_binlog_group_commit_sync_no_delay_count
Definition: mysqld.cc:1369
PSI_stage_info stage_replica_reconnecting_after_failed_event_read
Definition: mysqld.cc:13704
const mysql_service_dynamic_loader_t * dynamic_loader_srv
Definition: persistent_dynamic_loader.cc:77
bool opt_replica_sql_verify_checksum
Definition: mysqld.cc:1323
PSI_mutex_key key_LOCK_thd_sysvar
Definition: mysqld.cc:13309
char default_logfile_name[FN_REFLEN]
Definition: mysqld.cc:1479
sigset_t mysqld_signal_mask
Definition: mysqld.cc:1590
char * opt_slow_logname
Definition: mysqld.h:262
Rpl_acf_configuration_handler * rpl_acf_configuration_handler
Definition: mysqld.cc:1531
PSI_file_key key_file_frm
Definition: mysqld.cc:13598
PSI_stage_info stage_logging_slow_query
Definition: mysqld.cc:13683
PSI_cond_key key_RELAYLOG_update_cond
Definition: mysqld.cc:13509
PSI_stage_info stage_execution_of_init_command
Definition: mysqld.cc:13674
ulonglong temptable_max_mmap
Definition: mysqld.cc:1185
bool opt_log_unsafe_statements
Definition: mysqld.cc:1330
PSI_mutex_key key_LOCK_query_plan
Definition: mysqld.cc:13329
bool opt_myisam_use_mmap
Definition: mysqld.h:179
ulong delayed_insert_limit
Definition: mysqld.cc:1374
ulong what_to_log
Definition: mysqld.cc:1348
bool opt_super_readonly
Definition: mysqld.h:202
char *** get_remaining_argv()
Definition: mysqld.cc:1843
bool migrate_connect_options
Variable to check if connection related options are set as part of keyring migration.
Definition: mysqld.cc:1223
bool opt_log_slow_extra
Definition: mysqld.cc:1202
enum_server_operational_state
Definition: mysqld.h:154
@ SERVER_OPERATING
Definition: mysqld.h:156
@ SERVER_BOOTING
Definition: mysqld.h:155
@ SERVER_SHUTTING_DOWN
Definition: mysqld.h:157
PSI_stage_info stage_replica_waiting_event_from_coordinator
Definition: mysqld.cc:13706
bool opt_validate_config
Definition: mysqld.cc:1065
thread_local MEM_ROOT ** THR_MALLOC
Definition: mysqld.cc:1557
ulong connect_timeout
Definition: mysqld.h:309
char * opt_keyring_migration_host
Definition: mysqld.cc:1217
PSI_stage_info stage_rpl_apply_row_evt_write
Definition: mysqld.cc:13715
mysql_rwlock_t LOCK_system_variables_hash
Definition: mysqld.cc:1588
void refresh_status()
Reset global and session status variables.
Definition: mysqld.cc:13245
uint mysqld_admin_port
Definition: mysqld.cc:1179
bool server_shutting_down
Definition: mysqld.cc:1630
PSI_stage_info stage_waiting_for_the_next_event_in_relay_log
Definition: mysqld.cc:13735
ulong tc_log_max_pages_used
Definition: mysqld.h:245
ulong open_files_limit
Definition: mysqld.cc:1351
LEX_CSTRING sql_statement_names[(uint) SQLCOM_END+1]
Definition: mysqld.cc:4624
mysql_mutex_t LOCK_default_password_lifetime
Definition: mysqld.cc:1285
struct rand_struct sql_rand
used by sql_class.cc:THD::THD()
Definition: mysqld.cc:1908
mysql_mutex_t LOCK_global_conn_mem_limit
Definition: mysqld.cc:1622
ulong tablespace_def_size
Definition: mysqld.cc:1347
bool sp_automatic_privileges
Definition: mysqld.cc:1306
PSI_stage_info stage_end
Definition: mysqld.cc:13672
PSI_stage_info stage_registering_replica_on_source
Definition: mysqld.cc:13694
void thd_mem_cnt_free(THD *thd, size_t size)
Definition: mysqld.cc:1877
size_t mysql_unpacked_real_data_home_len
Definition: mysqld.cc:1495
std::atomic< bool > offline_mode
Definition: mysqld.cc:1278
mysql_mutex_t LOCK_prepared_stmt_count
The below lock protects access to two global server variables: max_prepared_stmt_count and prepared_s...
Definition: mysqld.cc:1570
PSI_socket_key key_socket_tcpip
Definition: mysqld.cc:13857
ulong tc_log_page_size
Definition: mysqld.h:245
bool opt_local_infile
Definition: mysqld.cc:1247
char * mysql_home_ptr
Definition: mysqld.cc:1678
char * lc_messages_dir_ptr
Definition: mysqld.cc:1493
const char * server_build_id_ptr
Definition: mysqld.cc:1475
PSI_file_key key_file_relaylog
Definition: mysqld.cc:13610
PSI_statement_info sql_statement_info[(uint) SQLCOM_END+1]
Statement instrumentation keys (sql).
Definition: mysqld.cc:4661
const char * load_default_groups[]
Definition: mysqld.cc:4061
PSI_mutex_key key_mta_gaq_LOCK
Definition: mysqld.cc:13343
mysql_mutex_t LOCK_sql_replica_skip_counter
Definition: mysqld.cc:1583
mysql_mutex_t LOCK_user_conn
Definition: mysqld.cc:1560
PSI_stage_info stage_flushing_applier_and_connection_metadata
Definition: mysqld.cc:13677
ulong mts_parallel_option
Definition: mysqld.cc:1362
ulong prepared_stmt_count
Definition: mysqld.h:317
uint opt_mta_checkpoint_period
Definition: mysqld.h:244
handlerton * temptable_hton
Definition: mysqld.cc:1258
const char * binary_keyword
Definition: mysqld.h:355
uint default_password_lifetime
Definition: mysqld.cc:1280
PSI_cond_key key_item_func_sleep_cond
Definition: mysqld.cc:13495
bool super_read_only
Definition: mysqld.cc:1266
int argc_cached
Stores the value of argc during server start up that contains the count of arguments specified by the...
Definition: mysqld.cc:1229
ulong back_log
Definition: mysqld.cc:1340
ulong stored_program_cache_size
Soft upper limit for number of sp_head objects that can be stored in the sp_cache for one connection.
Definition: mysqld.cc:1422
ulong connection_errors_internal
Number of connection errors from internal server errors.
Definition: mysqld.cc:1516
ulonglong max_binlog_cache_size
Definition: mysqld.cc:1364
PSI_stage_info stage_fulltext_initialization
Definition: mysqld.cc:13680
char * opt_log_error_services
Definition: mysqld.cc:1215
MYSQL_PLUGIN_IMPORT char server_version[SERVER_VERSION_LENGTH]
Definition: mysqld.h:674
int32_t opt_regexp_stack_limit
Definition: mysqld.cc:1309
PSI_file_key key_file_loadfile
Definition: mysqld.cc:13600
PSI_stage_info stage_verifying_table
Definition: mysqld.cc:13726
bool opt_noacl
Definition: mysqld.h:222
Time_zone * default_tz
Definition: mysqld.cc:1501
PSI_cond_key key_source_info_start_cond
Definition: mysqld.cc:13497
mysql_component_t mysql_component_performance_schema
enum_server_operational_state get_server_state()
Returns the current state of the server : booting, operational or shutting down.
Definition: mysqld.cc:13223
PSI_statement_info stmt_info_rpl
Statement instrumentation key for replication.
Definition: mysqld.cc:1159
ulong slow_launch_time
Definition: mysqld.cc:1349
void gtid_server_cleanup()
GTID cleanup destroys objects and reset their pointer.
Definition: mysqld.cc:2635
PSI_stage_info stage_replica_reconnecting_after_failed_registration_on_source
Definition: mysqld.cc:13705
PSI_stage_info stage_source_has_sent_all_binlog_to_replica
Definition: mysqld.cc:13686
MYSQL_PLUGIN_IMPORT char * mysql_data_home
Definition: mysqld.cc:1502
PSI_file_key key_file_ERRMSG
Definition: mysqld.cc:13595
PSI_mutex_key key_LOCK_thd_query
Definition: mysqld.cc:13330
query_id_t next_query_id()
Definition: mysqld.h:739
PSI_cond_key key_COND_thr_lock
Definition: mysqld.cc:13511
PSI_cond_key key_gtid_ensure_index_cond
Definition: mysqld.cc:13510
bool opt_keyring_operations
Definition: mysqld.cc:1426
bool opt_replica_allow_batching
Definition: mysqld.cc:1252
PSI_socket_key key_socket_unix
Definition: mysqld.cc:13858
ulonglong log_output_options
Definition: mysqld.cc:1199
bool opt_persist_sensitive_variables_in_plaintext
Definition: mysqld.cc:1228
const char * mysqld_unix_port
Definition: mysqld.cc:1506
MYSQL_PLUGIN_IMPORT char pidfile_name[]
Definition: mysqld.cc:1477
mysql_mutex_t LOCK_mandatory_roles
Definition: mysqld.cc:1286
ulong binlog_stmt_cache_disk_use
Definition: mysqld.h:296
PSI_file_key key_file_log_event_data
Definition: mysqld.cc:13601
enum_binlog_error_action
Definition: mysqld.h:338
@ IGNORE_ERROR
Ignore the error and let server continue without binlogging.
Definition: mysqld.h:340
@ ABORT_SERVER
Abort the server.
Definition: mysqld.h:342
char * opt_protocol_compression_algorithms
Definition: mysqld.cc:1504
PSI_mutex_key key_RELAYLOG_LOCK_sync
Definition: mysqld.cc:13337
PSI_cond_key key_cond_slave_parallel_worker
Definition: mysqld.cc:13507
bool opt_help
Definition: mysqld.cc:1065
bool clone_startup
True, if restarted from a cloned database.
Definition: mysqld.cc:1313
MYSQL_PLUGIN_IMPORT ulong max_connections
Definition: mysqld.cc:1380
PSI_cond_key key_cond_mta_gaq
Definition: mysqld.cc:13508
PSI_mutex_key key_relay_log_info_log_space_lock
Definition: mysqld.cc:13322
PSI_stage_info stage_killing_replica
Definition: mysqld.cc:13682
struct System_status_var * get_thd_status_var(THD *thd, bool *aggregated)
Definition: mysqld.cc:1859
ulong opt_log_throttle_queries_not_using_indexes
Definition: mysqld.cc:1201
char * opt_keyring_migration_password
Definition: mysqld.cc:1218
mysql_mutex_t LOCK_crypt
Definition: mysqld.cc:1559
mysql_mutex_t LOCK_compress_gtid_table
Definition: mysqld.cc:1595
PSI_stage_info stage_wait_on_commit_ticket
Definition: mysqld.cc:13750
bool mysql_native_password_proxy_users
Definition: mysqld.h:224
ulong max_digest_length
Definition: sql_digest.cc:50
handlerton * heap_hton
Definition: mysqld.cc:1257
PSI_cond_key key_relay_log_info_stop_cond
Definition: mysqld.cc:13504
ulong binlog_error_action
Definition: mysqld.cc:1326
ulong stored_program_def_size
Definition: mysqld.cc:1345
PSI_mutex_key key_RELAYLOG_LOCK_log_end_pos
Definition: mysqld.cc:13336
MYSQL_PLUGIN_IMPORT int orig_argc
Definition: mysqld.h:372
bool opt_large_pages
Definition: mysqld.cc:1275
const mysql_service_dynamic_loader_scheme_file_t * scheme_file_srv
Definition: mysqld.cc:1997
static void set_connection_events_loop_aborted(bool value)
Definition: mysqld.h:751
const double log_10[309]
Definition: mysqld.cc:1430
PSI_stage_info stage_changing_source
Definition: mysqld.cc:13658
bool opt_always_activate_granted_roles
Definition: mysqld.cc:1196
Source_IO_monitor * rpl_source_io_monitor
Definition: mysqld.cc:1532
ulong binlog_stmt_cache_size
Definition: mysqld.h:321
ulong opt_log_timestamps
Definition: mysqld.cc:1333
mysql_mutex_t LOCK_authentication_policy
Definition: mysqld.cc:1620
uint select_errors
Definition: mysqld.h:250
PSI_thread_key key_thread_handle_con_admin_sockets
Definition: mysqld.cc:13569
PSI_stage_info stage_rename
Definition: mysqld.cc:13696
ulonglong global_conn_mem_limit
Definition: mysqld.cc:1387
PSI_file_key key_file_relaylog_cache
Definition: mysqld.cc:13611
char * pidfile_name_ptr
Definition: mysqld.h:264
std::atomic< int32 > atomic_replica_open_temp_tables
Definition: mysqld.cc:1350
char default_binlogfile_name[FN_REFLEN]
Definition: mysqld.cc:1480
bool opt_readonly
Definition: mysqld.h:201
ulong log_error_verbosity
Definition: mysqld.cc:1225
PSI_file_key key_file_hash_join
Definition: mysqld.cc:13615
ulong specialflag
Definition: mysqld.cc:1377
mysql_mutex_t LOCK_uuid_generator
Definition: mysqld.cc:1559
struct System_status_var global_status_var
Definition: mysqld.cc:1537
bool opt_skip_show_db
Definition: mysqld.h:170
const char * binlog_checksum_type_names[]
BINLOG_CHECKSUM variable.
Definition: log_event.cc:215
PSI_stage_info stage_communication_delegation
Definition: mysqld.cc:13749
PSI_file_key key_file_dbopt
Definition: mysqld.cc:13594
PSI_stage_info stage_waiting_for_no_channel_reference
Definition: mysqld.cc:13742
const char * default_storage_engine
Definition: mysqld.cc:1182
PSI_stage_info stage_binlog_transaction_decompress
Definition: mysqld.cc:13745
PSI_mutex_key key_RELAYLOG_LOCK_xids
Definition: mysqld.cc:13338
mysql_rwlock_t LOCK_server_shutting_down
Definition: mysqld.cc:1624
void set_mysqld_offline_mode(bool value)
Set offline mode with a given value.
Definition: mysqld.h:779
PSI_stage_info stage_converting_heap_to_ondisk
Definition: mysqld.cc:13665
uint host_cache_size
The size of the host_cache.
Definition: mysqld.cc:1224
PSI_thread_key key_thread_bootstrap
Definition: mysqld.cc:13564
PSI_file_key key_select_to_file
Definition: mysqld.cc:13596
MYSQL_PLUGIN_IMPORT const char * my_localhost
Definition: mysqld.cc:1056
PSI_file_key key_file_tclog
Definition: mysqld.cc:13604
const char * binlog_error_action_list[]
Definition: mysqld.cc:1327
PSI_stage_info stage_preparing
Definition: mysqld.cc:13689
PSI_file_key key_file_binlog_cache
Definition: mysqld.cc:1074
PSI_stage_info stage_setup
Definition: mysqld.cc:13701
MYSQL_PLUGIN_IMPORT char ** orig_argv
Definition: mysqld.h:373
ulong max_binlog_size
Definition: mysqld.cc:1351
mysql_cond_t COND_compress_gtid_table
Definition: mysqld.cc:1596
bool opt_large_files
Definition: mysqld.cc:1058
PSI_mutex_key key_thd_timer_mutex
Definition: mysqld.cc:13344
char ** argv_cached
Stores the value of argv during server start up that contains the vector of arguments specified by th...
Definition: mysqld.cc:1230
bool opt_require_secure_transport
Definition: mysqld.cc:1267
mysql_mutex_t LOCK_replica_net_timeout
Definition: mysqld.cc:1584
PSI_mutex_key key_LOCK_current_cond
Definition: mysqld.cc:13332
PSI_cond_key key_cond_slave_worker_hash
Definition: mysqld.cc:13513
MYSQL_PLUGIN_IMPORT std::atomic< int32 > connection_events_loop_aborted_flag
Definition: mysqld.cc:1211
bool opt_table_encryption_privilege_check
Definition: mysqld.cc:1428
bool opt_log_slow_replica_statements
Definition: mysqld.h:221
bool opt_partial_revokes
Definition: mysqld.cc:1283
PSI_mutex_key key_source_info_sleep_lock
Definition: mysqld.cc:13315
PSI_mutex_key key_LOCK_group_replication_connection_mutex
Definition: mysqld.cc:13349
ulong delayed_queue_size
Definition: mysqld.h:299
bool gtid_server_init()
GTID initialization.
Definition: mysqld.cc:2660
ulonglong global_conn_mem_counter
Definition: mysqld.cc:1388
PSI_file_key key_file_binlog_index_cache
Definition: mysqld.cc:1075
mysql_service_registry_t * srv_registry_no_lock
Definition: mysqld.cc:1996
long opt_binlog_group_commit_sync_delay
Definition: mysqld.cc:1368
PSI_mutex_key key_mutex_replica_worker_hash
Definition: mysqld.cc:13346
ulong opt_ssl_fips_mode
Definition: mysqld.cc:1947
char server_build_id[42]
Definition: build_id_test.cc:30
bool opt_binlog_expire_logs_auto_purge
Definition: mysqld.cc:1417
PSI_stage_info stage_init
Definition: mysqld.cc:13681
ulong locked_account_connection_count
Definition: mysqld.cc:1385
PSI_file_key key_file_binlog
Definition: mysqld.cc:13592
void reset_status_by_thd()
Definition: mysqld.cc:13294
PSI_file_key key_file_log_event_info
Definition: mysqld.cc:13602
PSI_stage_info stage_rpl_failover_wait_before_next_fetch
Definition: mysqld.cc:13748
PSI_cond_key key_source_info_sleep_cond
Definition: mysqld.cc:13499
PSI_stage_info stage_opening_tables
Definition: mysqld.cc:13687
PSI_rwlock_key key_rwlock_resource_group_mgr_map_lock
Definition: mysqld.cc:13460
bool check_proxy_users
Definition: mysqld.cc:1297
PSI_cond_key key_source_info_rotate_cond
Definition: mysqld.cc:13500
PSI_mutex_key key_relay_log_info_thd_lock
Definition: mysqld.cc:13321
PSI_stage_info stage_explaining
Definition: mysqld.cc:13675
char * opt_mysql_tmpdir
Definition: mysqld.cc:1507
void set_remaining_args(int argc, char **argv)
Definition: mysqld.cc:1836
ulong max_relay_log_size
Definition: mysqld.h:326
ulong binlog_row_metadata
Definition: mysqld.cc:1321
bool persisted_globals_load
Definition: mysqld.cc:1424
PSI_mutex_key key_LOG_LOCK_log
Definition: mysqld.cc:13312
PSI_mutex_key key_mta_temp_table_LOCK
Definition: mysqld.cc:13342
PSI_stage_info stage_requesting_binlog_dump
Definition: mysqld.cc:13698
PSI_mutex_key key_LOCK_cost_const
Definition: mysqld.cc:13331
bool relay_log_purge
Definition: mysqld.cc:1268
PSI_stage_info stage_deleting_from_main_table
Definition: mysqld.cc:13669
char * opt_bin_logname
Definition: mysqld.h:262
PSI_mutex_key key_relay_log_info_data_lock
Definition: mysqld.cc:13319
time_t server_start_time
Definition: mysqld.cc:1469
PSI_stage_info stage_waiting_for_source_update
Definition: mysqld.cc:13730
MYSQL_PLUGIN_IMPORT uint lower_case_table_names
Definition: mysqld.cc:1338
ulong current_pid
Definition: mysqld.cc:1412
bool locked_in_memory
Definition: mysqld.cc:1208
PSI_cond_key key_relay_log_info_log_space_cond
Definition: mysqld.cc:13502
PSI_stage_info stage_alter_inplace_commit
Definition: mysqld.cc:13657
PSI_file_key key_file_fileparser
Definition: mysqld.cc:13597
const char * in_left_expr_name
name of reference on left expression in rewritten IN subquery
Definition: mysqld.cc:1512
ulong replica_exec_mode_options
Definition: mysqld.cc:1354
enum_delay_key_write
Definition: mysqld.h:253
@ DELAY_KEY_WRITE_ON
Definition: mysqld.h:255
@ DELAY_KEY_WRITE_NONE
Definition: mysqld.h:254
@ DELAY_KEY_WRITE_ALL
Definition: mysqld.h:256
mysql_mutex_t LOCK_replica_list
Protects slave_list in rpl_source.cc; the list of currently running dump threads with metadata for th...
Definition: mysqld.cc:1576
mysql_mutex_t LOCK_error_messages
Definition: mysqld.cc:1560
bool log_bin_supplied
Definition: mysqld.cc:1467
void clean_up_mysqld_mutexes()
Definition: mysqld.cc:2565
ulong binlog_expire_logs_seconds
Definition: mysqld.cc:1416
PSI_cond_key key_cond_slave_parallel_pend_jobs
Definition: mysqld.cc:13506
PSI_stage_info stage_connecting_to_source
Definition: mysqld.cc:13664
PSI_stage_info stage_rpl_failover_fetching_source_member_details
Definition: mysqld.cc:13746
PSI_stage_info stage_binlog_transaction_compress
Definition: mysqld.cc:13744
PSI_rwlock_key key_rwlock_LOCK_logger
Definition: mysqld.cc:13448
PSI_file_key key_file_trg
Definition: mysqld.cc:13605
char * opt_init_file
Definition: mysqld.cc:1491
bool relay_log_recovery
Definition: mysqld.cc:1269
PSI_rwlock_key key_rwlock_gtid_mode_lock
Definition: mysqld.cc:1114
PSI_file_key key_file_binlog_index
Definition: mysqld.cc:13593
PSI_cond_key key_COND_pool
Definition: mysqld.cc:13493
bool opt_log_queries_not_using_indexes
Definition: mysqld.cc:1200
PSI_stage_info stage_alter_inplace_prepare
Definition: mysqld.cc:13655
const char * opt_tc_log_file
Definition: mysqld.cc:1492
PSI_stage_info stage_rpl_failover_updating_source_member_details
Definition: mysqld.cc:13747
LEX_STRING opt_init_replica
Definition: mysqld.h:376
PSI_rwlock_key key_rwlock_channel_lock
Definition: mysqld.cc:13450
struct my_option my_long_early_options[]
Definition: mysqld.cc:10460
PSI_thread_key key_thread_handle_manager
Definition: mysqld.cc:13565
char * opt_keyring_migration_destination
Definition: mysqld.cc:1221
uint32 gtid_executed_compression_period
Definition: mysqld.cc:1329
PSI_stage_info stage_starting
Definition: mysqld.cc:13741
bool opt_slow_log
Definition: mysqld.h:165
ulong tc_log_page_waits
Definition: tc_log.cc:307
mysql_rwlock_t LOCK_sys_init_connect
Definition: mysqld.cc:1587
struct System_variables max_system_variables
Definition: mysqld.cc:1536
char * opt_authentication_policy
Definition: mysqld.cc:1509
bool check_and_update_partial_revokes_sysvar(THD *thd)
If there exists at least one restrictions on any user, then update global variables which track the p...
Definition: mysqld.cc:14107
const char * opt_secure_file_priv
Definition: mysqld.cc:1271
PSI_mutex_key key_source_info_data_lock
Definition: mysqld.cc:13313
bool opt_log_slow_admin_statements
Definition: mysqld.cc:1272
ulong binlog_cache_size
Definition: mysqld.cc:1363
PSI_stage_info stage_freeing_items
Definition: mysqld.cc:13679
LEX_STRING opt_init_connect
Definition: mysqld.cc:1190
ulong binlog_checksum_options
Definition: mysqld.cc:1320
mysql_mutex_t LOCK_admin_tls_ctx_options
Definition: mysqld.cc:1290
bool binlog_gtid_simple_recovery
Definition: mysqld.cc:1325
PSI_stage_info stage_waiting_for_handler_commit
Definition: mysqld.cc:13728
MYSQL_PLUGIN_IMPORT ulong server_id
Definition: mysqld.h:349
char * opt_general_logname
Definition: mysqld.cc:1670
ulong binlog_cache_use
Definition: mysqld.cc:1378
ulong max_connect_errors
Definition: mysqld.cc:1380
uint sync_masterinfo_period
Definition: mysqld.h:244
PSI_stage_info stage_searching_rows_for_update
Definition: mysqld.cc:13699
PSI_stage_info stage_creating_table
Definition: mysqld.cc:13667
ulong binlog_cache_disk_use
Definition: mysqld.h:295
ulong max_prepared_stmt_count
Limit of the total number of prepared statements in the server.
Definition: mysqld.cc:1400
ulong sql_rnd_with_mutex()
Definition: mysqld.cc:1851
ulong binlog_row_event_max_size
Definition: mysqld.cc:1319
ulong flush_time
Definition: mysqld.h:316
PSI_thread_key key_thread_parser_service
Definition: mysqld.cc:13568
PSI_stage_info stage_removing_tmp_table
Definition: mysqld.cc:13695
mysql_mutex_t LOCK_tls_ctx_options
Definition: mysqld.cc:1289
int32 opt_binlog_max_flush_queue_time
Definition: mysqld.cc:1367
PSI_stage_info stage_manage_keys
Definition: mysqld.cc:13685
PSI_mutex_key key_source_info_rotate_lock
Definition: mysqld.cc:13317
PSI_mutex_key key_hash_filo_lock
Definition: mysqld.cc:13306
bool read_only
Definition: mysqld.cc:1265
PSI_stage_info stage_sql_thd_waiting_until_delay
Definition: mysqld.cc:13719
bool opt_mandatory_roles_cache
Definition: mysqld.cc:1195
PSI_stage_info stage_executing
Definition: mysqld.cc:13673
PSI_stage_info stage_replica_reconnecting_after_failed_binlog_dump_request
Definition: mysqld.cc:13703
PSI_stage_info stage_replica_waiting_worker_queue
Definition: mysqld.cc:13711
PSI_stage_info stage_replica_waiting_worker_to_release_partition
Definition: mysqld.cc:13713
MYSQL_PLUGIN_IMPORT char mysql_real_data_home[]
Definition: mysqld.cc:1490
int32_t opt_regexp_time_limit
Definition: mysqld.cc:1308
PSI_mutex_key key_relay_log_info_run_lock
Definition: mysqld.cc:13323
ulong schema_def_size
Definition: mysqld.cc:1344
ulong replica_max_allowed_packet
Definition: mysqld.cc:1365
PSI_file_key key_file_sdi
Definition: mysqld.cc:13614
mysql_mutex_t LOCK_keyring_operations
Definition: mysqld.cc:1609
PSI_statement_info com_statement_info[(uint) COM_END+1]
Statement instrumentation keys (com).
Definition: mysqld.cc:4662
PSI_stage_info stage_waiting_for_the_replica_thread_to_advance_position
Definition: mysqld.cc:13736
uint opt_mta_checkpoint_group
Definition: mysqld.h:244
enum_replica_type_conversions
Definition: mysqld.h:193
@ REPLICA_TYPE_CONVERSIONS_ALL_UNSIGNED
Definition: mysqld.h:196
@ REPLICA_TYPE_CONVERSIONS_ALL_SIGNED
Definition: mysqld.h:197
@ REPLICA_TYPE_CONVERSIONS_ALL_NON_LOSSY
Definition: mysqld.h:195
@ REPLICA_TYPE_CONVERSIONS_ALL_LOSSY
Definition: mysqld.h:194
bool password_require_current
Definition: mysqld.cc:1281
mysql_mutex_t LOCK_password_history
Definition: mysqld.cc:1287
bool opt_general_log_raw
Definition: mysqld.h:165
bool opt_safe_user_create
Definition: mysqld.cc:1248
PSI_stage_info stage_updating_main_table
Definition: mysqld.cc:13723
PSI_socket_key key_socket_client_connection
Definition: mysqld.cc:13859
bool opt_using_transactions
Definition: mysqld.cc:1209
PSI_stage_info stage_waiting_for_source_to_send_event
Definition: mysqld.cc:13729
PSI_cond_key key_relay_log_info_data_cond
Definition: mysqld.cc:13501
Rpl_global_filter rpl_global_filter
Definition: mysqld.cc:1529
bool opt_verbose
Definition: mysqld.cc:1065
PSI_cond_key key_source_info_stop_cond
Definition: mysqld.cc:13498
PSI_stage_info stage_checking_permissions
Definition: mysqld.cc:13660
PSI_stage_info stage_waiting_for_replica_mutex_on_exit
Definition: mysqld.cc:13732
PSI_cond_key key_COND_group_replication_connection_cond_var
Definition: mysqld.cc:13516
PSI_cond_key key_relay_log_info_start_cond
Definition: mysqld.cc:13503
PSI_stage_info stage_optimizing
Definition: mysqld.cc:13688
char system_time_zone_dst_on[30]
Definition: mysqld.cc:1478
MYSQL_PLUGIN_IMPORT char reg_ext[FN_EXTLEN]
Definition: mysqld.cc:1491
long tc_heuristic_recover
Definition: mysqld.cc:1339
bool connection_events_loop_aborted()
Definition: mysqld.h:746
bool opt_disable_networking
Definition: mysqld.cc:1203
bool listen_admin_interface_in_separate_thread
Definition: mysqld.cc:1180
size_t mysql_data_home_len
Definition: mysqld.cc:1496
static char * path
Definition: mysqldump.cc:149
static char * shared_memory_base_name
Definition: mysqltest.cc:200
size_t size(const char *const c)
Definition: base64.h:46
Performance schema instrumentation interface.
Performance schema instrumentation interface.
Instrumentation helpers for mutexes.
Performance schema instrumentation interface.
Performance schema instrumentation interface.
Performance schema instrumentation interface.
Performance schema instrumentation interface.
Performance schema instrumentation interface.
NTService * get_win_service_ptr()
bool is_windows_service()
#define SERVICE_TYPE(name)
Generates the standard Service type name.
Definition: service.h:76
#define SERVICE_TYPE_NO_CONST(name)
Generates the standard Service type name.
Definition: service.h:71
Windows NT Service class library.
File containing constants that can be used throughout the server.
constexpr const size_t UUID_LENGTH
Definition: sql_const.h:265
The MEM_ROOT is a simple arena, where allocations are carved out of larger blocks.
Definition: my_alloc.h:83
Definition: mysql_lex_string.h:40
Definition: mysql_lex_string.h:35
Definition: my_sys.h:316
Stage instrument information.
Definition: psi_stage_bits.h:74
Statement instrument information.
Definition: psi_statement_bits.h:133
SHOW STATUS Server status variable.
Definition: status_var.h:79
Per thread status variables.
Definition: system_variables.h:525
Definition: system_variables.h:203
To facilitate calculating values of status variables aggregated per all THDs in real-time,...
Definition: aggregated_stats.h:39
handlerton is a singleton structure - one instance per storage engine - to provide access to storage ...
Definition: handler.h:2733
Definition: my_getopt.h:93
Carries information on the specific Component, all Service Implementations it provides,...
Definition: dynamic_loader.h:263
An instrumented cond structure.
Definition: mysql_cond_bits.h:50
An instrumented mutex structure.
Definition: mysql_mutex_bits.h:50
An instrumented rwlock structure.
Definition: mysql_rwlock_bits.h:51
Definition: mysql_com.h:1109
Definition: violite.h:256
Include file for Sun RPC to compile out of the box.