MySQL 状态【中文对照表】

SHOW STATUS 是一个非常有用的 MySQL 命令,它可以帮助我们了解 MySQL 服务器的当前状态,从而更好地管理和优化我们的数据库。

MySQL SHOW STATUS 命令手册

SHOW STATUS 命令概述
在 MySQL 中,SHOW STATUS 命令是一个强大的工具,用于显示 MySQL 服务器当前性能和状态的信息。
这个命令会显示每个服务器变量的名字和值,状态变量是只读的。

SHOW STATUS 命令的使用
你可以在 MySQL 客户端下运行 SHOW STATUS 或者在命令行运用 mysqladmin extended-status 来查看这些变量。
如果使用 SQL 命令,可以使用 LIKE 或者 WHERE 来限制结果 , LIKE 可以对变量名做标准模式匹配。

SHOW STATUS 中混杂了全局和会话变量,其中许多变量有双重域:既是全局变量,也是会话变量,有相同的名字。
如果只需要看全局变量,需要改为 SHOW GLOBAL STATUS 查看。

注意事项
在使用 SHOW STATUS 命令时,需要注意的是,这个命令提供的是服务器的状态信息,而不是用户的个人信息。
因此,它不能用来获取或修改用户的个人信息。

此外,由于 SHOW STATUS 命令提供的信息可能会随着 MySQL 服务器的运行而变化,所以在使用这个命令时,最好能够定期地运行它,以便获取最新的服务器状态信息。

查看mysql服务器的当前状态

1:进入mysql交互模式
2:执行命令:mysql status;
1: 内容如下:附带中文对照
mysql> show status;
| Variable_name                                         | Value| 中文解释 |
|-------------------------------------------------------|------|----------|
| Aborted_clients                                       | 0    | 中断的客户端数量 |
| Aborted_connects                                      | 1    | 中断的连接数量 |
| Acl_cache_items_count                                 | 0    | 访问控制列表缓存项数 |
| Binlog_cache_disk_use                                 | 0    | 使用二进制日志缓存的事务数量,这些事务因为缓存不足而使用临时文件 |
| Binlog_cache_use                                      | 0    | 使用二进制日志缓存的事务数量 |
| Binlog_stmt_cache_disk_use                            | 0    | 使用二进制日志语句缓存的事务数量,这些事务因为缓存不足而使用临时文件 |
| Binlog_stmt_cache_use                                 | 0    | 使用二进制日志语句缓存的事务数量 |
| Bytes_received                                        | 309  | 接收到的字节数 |
| Bytes_sent                                            | 463  | 发送的字节数 |
| Caching_sha2_password_rsa_public_key                  | -----BEGIN PUBLIC KEY-----| 用于SHA-2密码认证的RSA公钥 |
| Com_admin_commands                                    | 0    | 执行的管理员命令数量 |
| Com_assign_to_keycache                                | 0    | 分配给键缓存的操作数量 |
| Com_alter_db                                          | 0    | 执行的ALTER DATABASE命令数量 |
| Com_alter_event                                       | 0    | 执行的ALTER EVENT命令数量 |
| Com_alter_function                                    | 0    | 执行的ALTER FUNCTION命令数量 |
| Com_alter_instance                                    | 0    | 执行的ALTER INSTANCE命令数量 |
| Com_alter_procedure                                   | 0    | 执行的ALTER PROCEDURE命令数量 |
| Com_alter_resource_group                              | 0    | 执行的ALTER RESOURCE GROUP命令数量 |
| Com_alter_server                                      | 0    | 执行的ALTER SERVER命令数量 |
| Com_alter_table                                       | 0    | 执行的ALTER TABLE命令数量 |
| Com_alter_tablespace                                  | 0    | 执行的ALTER TABLESPACE命令数量 |
| Com_alter_user                                        | 0    | 执行的ALTER USER命令数量 |
| Com_alter_user_default_role                           | 0    | 执行的ALTER USER DEFAULT ROLE命令数量 |
| Com_analyze                                           | 0    | 执行的ANALYZE TABLE命令数量 |
| Com_begin                                             | 0    | 执行的BEGIN命令数量 |
| Com_binlog                                            | 0    | 执行的BINLOG命令数量 |
| Com_call_procedure                                    | 0    | 执行的CALL命令数量 |
| Com_change_db                                         | 0    | 执行的CHANGE DB命令数量 |
| Com_change_master                                     | 0    | 执行的CHANGE MASTER命令数量 |
| Com_change_repl_filter                                | 0    | 执行的CHANGE REPLICATION FILTER命令数量 |
| Com_change_replication_source                         | 0    | 执行的CHANGE REPLICATION SOURCE命令数量 |
| Com_check                                             | 0    | 执行的CHECK命令数量 |
| Com_checksum                                          | 0    | 执行的CHECKSUM命令数量 |
| Com_clone                                             | 0     | 执行的CLONE命令数量 |
| Com_commit                                            | 0     | 执行的COMMIT命令数量 |
| Com_create_db                                         | 0     | 执行的CREATE DATABASE命令数量 |
| Com_create_event                                      | 0     | 执行的CREATE EVENT命令数量 |
| Com_create_function                                   | 0     | 执行的CREATE FUNCTION命令数量 |
| Com_create_index                                      | 0     | 执行的CREATE INDEX命令数量 |
| Com_create_procedure                                  | 0     | 执行的CREATE PROCEDURE命令数量 |
| Com_create_role                                       | 0     | 执行的CREATE ROLE命令数量 |
| Com_create_server                                     | 0     | 执行的CREATE SERVER命令数量 |
| Com_create_table                                      | 0     | 执行的CREATE TABLE命令数量 |
| Com_create_resource_group                             | 0     | 执行的CREATE RESOURCE GROUP命令数量 |
| Com_create_trigger                                    | 0     | 执行的CREATE TRIGGER命令数量 |
| Com_create_udf                                        | 0     | 执行的CREATE FUNCTION UDF命令数量 |
| Com_create_user                                       | 0     | 执行的CREATE USER命令数量 |
| Com_create_view                                       | 0     | 执行的CREATE VIEW命令数量 |
| Com_create_spatial_reference_system                   | 0     | 执行的CREATE SPATIAL REFERENCE SYSTEM命令数量 |
| Com_dealloc_sql                                       | 0     | 执行的DEALLOCATE PREPARE命令数量 |
| Com_delete                                            | 0     | 执行的DELETE命令数量 |
| Com_delete_multi                                      | 0     | 执行的多表DELETE命令数量 |
| Com_do                                                | 0     | 执行的DO命令数量 |
| Com_drop_db                                           | 0     | 执行的DROP DATABASE命令数量 |
| Com_drop_event                                        | 0     | 执行的DROP EVENT命令数量 |
| Com_drop_function                                     | 0     | 执行的DROP FUNCTION命令数量 |
| Com_drop_index                                        | 0     | 执行的DROP INDEX命令数量 |
| Com_drop_procedure                                    | 0     | 执行的DROP PROCEDURE命令数量 |
| Com_drop_resource_group                               | 0     | 执行的DROP RESOURCE GROUP命令数量 |
| Com_drop_role                                         | 0     | 执行的DROP ROLE命令数量 |
| Com_drop_server                                       | 0     | 执行的DROP SERVER命令数量 |
| Com_drop_spatial_reference_system                     | 0     | 执行的DROP SPATIAL REFERENCE SYSTEM命令数量 |
| Com_drop_table                                        | 0     | 执行的DROP TABLE命令数量 |
| Com_drop_trigger                                      | 0     | 执行的DROP TRIGGER命令数量 |
| Com_drop_user                                         | 0     | 执行的DROP USER命令数量 |
| Com_drop_view                                         | 0     | 执行的DROP VIEW命令数量 |
| Com_empty_query                                       | 0     | 执行的空查询命令数量 |
| Com_execute_sql                                       | 0     | 执行的EXECUTE命令数量 |
| Com_explain_other                                     | 0     | 执行的EXPLAIN命令数量 |
| Com_flush                                             | 0     | 执行的FLUSH命令数量 |
| Com_get_diagnostics                                   | 0     | 执行的GET DIAGNOSTICS命令数量 |
| Com_grant                                             | 0     | 执行的GRANT命令数量 |
| Com_grant_roles                                       | 0     | 执行的GRANT ROLES命令数量 |
| Com_ha_close                                          | 0     | 执行的HA CLOSE命令数量 |
| Com_ha_open                                           | 0     | 执行的HA OPEN命令数量 |
| Com_ha_read                                           | 0     | 执行的HA READ命令数量 |
| Com_help                                              | 0     | 执行的HELP命令数量 |
| Com_import                                            | 0     | 执行的IMPORT命令数量 |
| Com_insert                                            | 0     | 执行的INSERT命令数量 |
| Com_insert_select                                     | 0     | 执行的INSERT SELECT命令数量 |
| Com_install_component                                 | 0     | 执行的INSTALL COMPONENT命令数量 |
| Com_install_plugin                                    | 0     | 执行的INSTALL PLUGIN命令数量 |
| Com_kill                                              | 0     | 执行的KILL命令数量 |
| Com_load                                              | 0     | 执行的LOAD命令数量 |
| Com_lock_instance                                     | 0     | 执行的LOCK INSTANCE命令数量 |
| Com_lock_tables                                       | 0     | 执行的LOCK TABLES命令数量 |
| Com_optimize                                          | 0     | 执行的OPTIMIZE命令数量 |
| Com_preload_keys                                      | 0     | 执行的PRELOAD KEYS命令数量 |
| Com_prepare_sql                                       | 0     | 执行的PREPARE命令数量 |
| Com_purge                                             | 0     | 执行的PURGE命令数量 |
| Com_purge_before_date                                 | 0     | 执行的PURGE BEFORE命令数量 |
| Com_release_savepoint                                 | 0     | 执行的RELEASE SAVEPOINT命令数量 |
| Com_rename_table                                      | 0     | 执行的RENAME TABLE命令数量 |
| Com_rename_user                                       | 0     | 执行的RENAME USER命令数量 |
| Com_repair                                            | 0     | 执行的REPAIR命令数量 |
| Com_replace                                           | 0     | 执行的REPLACE命令数量 |
| Com_replace_select                                    | 0     | 执行的REPLACE SELECT命令数量 |
| Com_reset                                             | 0     | 执行的RESET命令数量 |
| Com_resignal                                          | 0     | 执行的RESIGNAL命令数量 |
| Com_restart                                           | 0     | 执行的RESTART命令数量 |
| Com_revoke                                            | 0     | 执行的REVOKE命令数量 |
| Com_revoke_all                                        | 0     | 执行的REVOKE ALL命令数量 |
| Com_revoke_roles                                      | 0     | 执行的REVOKE ROLES命令数量 |
| Com_rollback                                          | 0     | 执行的ROLLBACK命令数量 |
| Com_rollback_to_savepoint                             | 0     | 执行的ROLLBACK TO SAVEPOINT命令数量 |
| Com_savepoint                                         | 0     | 执行的SAVEPOINT命令数量 |
| Com_select                                            | 1     | 执行的SELECT命令数量 |
| Com_set_option                                        | 0     | 执行的SET OPTION命令数量 |
| Com_set_password                                      | 0     | 执行的SET PASSWORD命令数量 |
| Com_set_resource_group                                | 0     | 执行的SET RESOURCE GROUP命令数量 |
| Com_set_role                                          | 0     | 执行的SET ROLE命令数量 |
| Com_signal                                            | 0     | 执行的SIGNAL命令数量 |
| Com_show_binlog_events                                | 0     | 执行的SHOW BINLOG EVENTS命令数量 |
| Com_show_binlogs                                      | 0     | 执行的SHOW BINLOGS命令数量 |
| Com_show_charsets                                     | 0     | 执行的SHOW CHARSETS命令数量 |
| Com_show_collations                                   | 0     | 执行的SHOW COLLATIONS命令数量 |
| Com_show_create_db                                    | 0     | 执行的SHOW CREATE DATABASE命令数量 |
| Com_show_create_event                                 | 0     | 执行的SHOW CREATE EVENT命令数量 |
| Com_show_create_func                                  | 0     | 执行的SHOW CREATE FUNCTION命令数量 |
| Com_show_create_proc                                  | 0     | 执行的SHOW CREATE PROCEDURE命令数量 |
| Com_show_create_table                                 | 0     | 执行的SHOW CREATE TABLE命令数量 |
| Com_show_create_trigger                               | 0     | 执行的SHOW CREATE TRIGGER命令数量 |
| Com_show_databases                                    | 2     | 执行的SHOW DATABASES命令数量 |
| Com_show_engine_logs                                  | 0     | 执行的SHOW ENGINE LOGS命令数量 |
| Com_show_engine_mutex                                 | 0     | 执行的SHOW ENGINE MUTEX命令数量 |
| Com_show_engine_status                                | 0     | 执行的SHOW ENGINE STATUS命令数量 |
| Com_show_events                                       | 0     | 执行的SHOW EVENTS命令数量 |
| Com_show_errors                                       | 0     | 执行的SHOW ERRORS命令数量 |
| Com_show_fields                                       | 0     | 执行的SHOW FIELDS命令数量 |
| Com_show_function_code                                | 0     | 执行的SHOW FUNCTION CODE命令数量 |
| Com_show_function_status                              | 0     | 执行的SHOW FUNCTION STATUS命令数量 |
| Com_show_grants                                       | 0     | 执行的SHOW GRANTS命令数量 |
| Com_show_keys                                         | 0     | 执行的SHOW KEYS命令数量 |
| Com_show_master_status                                | 0     | 执行的SHOW MASTER STATUS命令数量 |
| Com_show_open_tables                                  | 0     | 执行的SHOW OPEN TABLES命令数量 |
| Com_show_plugins                                      | 0     | 执行的SHOW PLUGINS命令数量 |
| Com_show_privileges                                   | 0     | 执行的SHOW PRIVILEGES命令数量 |
| Com_show_procedure_code                               | 0     | 执行的SHOW PROCEDURE CODE命令数量 |
| Com_show_procedure_status                             | 0     | 执行的SHOW PROCEDURE STATUS命令数量 |
| Com_show_processlist                                  | 0     | 执行的SHOW PROCESSLIST命令数量 |
| Com_show_profile                                      | 0     | 执行的SHOW PROFILE命令数量 |
| Com_show_profiles                                     | 0     | 执行的SHOW PROFILES命令数量 |
| Com_show_relaylog_events                              | 0     | 执行的SHOW RELAYLOG EVENTS命令数量 |
| Com_show_replicas                                     | 0     | 执行的SHOW REPLICAS命令数量 |
| Com_show_slave_hosts                                  | 0     | 执行的SHOW SLAVE HOSTS命令数量 |
| Com_show_replica_status                               | 0     | 执行的SHOW REPLICA STATUS命令数量 |
| Com_show_slave_status                                 | 0     | 执行的SHOW SLAVE STATUS命令数量 |
| Com_show_status                                       | 1     | 执行的SHOW STATUS命令数量 |
| Com_show_storage_engines                              | 0     | 执行的SHOW STORAGE ENGINES命令数量 |
| Com_show_table_status                                 | 0     | 执行的SHOW TABLE STATUS命令数量 |
| Com_show_tables                                       | 0     | 执行的SHOW TABLES命令数量 |
| Com_show_triggers                                     | 0     | 执行的SHOW TRIGGERS命令数量 |
| Com_show_variables                                    | 0     | 执行的SHOW VARIABLES命令数量 |
| Com_show_warnings                                     | 0     | 执行的SHOW WARNINGS命令数量 |
| Com_show_create_user                                  | 0     | 执行的SHOW CREATE USER命令数量 |
| Com_shutdown                                          | 0     | 执行的SHUTDOWN命令数量 |
| Com_replica_start                                     | 0     | 执行的START REPLICA命令数量 |
| Com_slave_start                                       | 0     | 执行的START SLAVE命令数量 |
| Com_replica_stop                                      | 0     | 执行的STOP REPLICA命令数量 |
| Com_slave_stop                                        | 0     | 执行的STOP SLAVE命令数量 |
| Com_group_replication_start                           | 0     | 执行的START GROUP_REPLICATION命令数量 |
| Com_group_replication_stop                            | 0     | 执行的STOP GROUP_REPLICATION命令数量 |
| Com_stmt_execute                                      | 0     | 执行的EXECUTE命令数量 |
| Com_stmt_close                                        | 0     | 执行的CLOSE命令数量 |
| Com_stmt_fetch                                        | 0     | 执行的FETCH命令数量 |
| Com_stmt_prepare                                      | 0     | 执行的PREPARE命令数量 |
| Com_stmt_reset                                        | 0     | 执行的RESET命令数量 |
| Com_stmt_send_long_data                               | 0     | 执行的SEND LONG DATA命令数量 |
| Com_truncate                                          | 0     | 执行的TRUNCATE命令数量 |
| Com_uninstall_component                               | 0     | 执行的UNINSTALL COMPONENT命令数量 |
| Com_uninstall_plugin                                  | 0     | 执行的UNINSTALL PLUGIN命令数量 |
| Com_unlock_instance                                   | 0     | 执行的UNLOCK INSTANCE命令数量 |
| Com_unlock_tables                                     | 0     | 执行的UNLOCK TABLES命令数量 |
| Com_update                                            | 0     | 执行的UPDATE命令数量 |
| Com_update_multi                                      | 0     | 执行的多表UPDATE命令数量 |
| Com_xa_commit                                         | 0     | 执行的XA COMMIT命令数量 |
| Com_xa_end                                            | 0     | 执行的XA END命令数量 |
| Com_xa_prepare                                        | 0     | 执行的XA PREPARE命令数量 |
| Com_xa_recover                                        | 0     | 执行的XA RECOVER命令数量 |
| Com_xa_rollback                                       | 0     | 执行的XA ROLLBACK命令数量 |
| Com_xa_start                                          | 0     | 执行的XA START命令数量 |
| Com_stmt_reprepare                                    | 0     | 执行的REPREPARE命令数量 |
| Compression                                           | OFF   | 是否启用压缩 |
| Compression_algorithm                                 |       | 当前使用的压缩算法 |
| Compression_level                                     | 0     | 当前的压缩级别 |
| Connection_errors_accept                              | 0     | 接受连接时发生错误的次数 |
| Connection_errors_internal                            | 0     | 内部连接错误的次数 |
| Connection_errors_max_connections                     | 0     | 超过最大连接数导致的连接错误次数 |
| Connection_errors_peer_address                        | 0     | 对等地址错误的连接次数 |
| Connection_errors_select                              | 0     | select调用错误的连接次数 |
| Connection_errors_tcpwrap                             | 0     | TCP包装错误的连接次数 |
| Connections                                           | 17    | 试图连接到(不一定成功)MySQL服务器的连接数量 |
| Created_tmp_disk_tables                               | 0     | 服务器执行语句时在硬盘上创建的临时表的数量 |
| Created_tmp_files                                     | 5     | mysqld启动后创建的临时文件数 |
| Created_tmp_tables                                    | 0     | 服务器执行语句时在内存中创建的临时表的数量 |
| Current_tls_ca                                        | ca.pem | 当前使用的TLS CA证书 |
| Current_tls_capath                                    |       | 当前使用的TLS CA路径 |
| Current_tls_cert                                      | server-cert.pem | 当前使用的TLS证书 |
| Current_tls_cipher                                    |       | 当前使用的TLS密码套件 |
| Current_tls_ciphersuites                              |       | 当前使用的TLS密码套件列表 |
| Current_tls_crl                                       |       | 当前使用的TLS CRL |
| Current_tls_crlpath                                   |       | 当前使用的TLS CRL路径 |
| Current_tls_key                                       | server-key.pem | 当前使用的TLS密钥 |
| Current_tls_version                                   | TLSv1.2,TLSv1.3 | 当前使用的TLS版本 |
| Delayed_errors                                        | 0     | 延迟插入线程出错的次数 |
| Delayed_insert_threads                                | 0     | 当前正在运行的延迟插入线程数 |
| Delayed_writes                                        | 0     | 写入的行数(INSERT DELAYED) |
| Deprecated_use_i_s_processlist_count                  | 0     | 使用已弃用的INFORMATION_SCHEMA.PROCESSLIST的次数 |
| Deprecated_use_i_s_processlist_last_timestamp         | 0     | 最后一次使用已弃用的INFORMATION_SCHEMA.PROCESSLIST的时间戳 |
| Error_log_buffered_bytes                              | 1128  | 错误日志缓冲区中的字节数 |
| Error_log_buffered_events                             | 8     | 错误日志缓冲区中的事件数 |
| Error_log_expired_events                              | 0     | 错误日志中过期的事件数 |
| Error_log_latest_write                                | 1716215534735783 | 错误日志中最新写入的事件的时间戳 |
| Flush_commands                                        | 3     | 执行FLUSH命令的次数 |
| Global_connection_memory                              | 0     | 全局连接内存使用量 |
| Handler_commit                                        | 3     | 内部COMMIT语句的请求数 |
| Handler_delete                                        | 0     | 行从表中删除的次数 |
| Handler_discover                                      | 0     | MySQL服务器向NDB集群存储引擎请求表的存储引擎类型的次数 |
| Handler_external_lock                                 | 46    | 外部系统锁定的次数 |
| Handler_mrr_init                                      | 0     | 多范围读取优化被使用的次数 |
| Handler_prepare                                       | 0     | 内部在Handler接口层面准备的次数 |
| Handler_read_first                                    | 4     | 读取索引的第一条记录的次数 |
| Handler_read_key                                      | 21    | 根据键读取一行的请求数 |
| Handler_read_last                                     | 0     | 读取索引的最后一条记录的次数 |
| Handler_read_next                                     | 10    | 按键顺序读取下一行的请求数 |
| Handler_read_prev                                     | 0     | 按键顺序读取上一行的请求数 |
| Handler_read_rnd                                      | 0     | 根据固定位置读取一行的请求数 |
| Handler_read_rnd_next                                 | 10    | 在数据文件中读取下一行的请求数 |
| Handler_rollback                                      | 0     | 请求内部执行ROLLBACK语句的次数 |
| Handler_savepoint                                     | 0     | 请求设置一个保存点的次数 |
| Handler_savepoint_rollback                            | 0     | 请求回滚到保存点的次数 |
| Handler_update                                        | 0     | 在表中更新一行的请求数 |
| Handler_write                                         | 0     | 在表中插入一行的请求数 |
| Innodb_buffer_pool_dump_status                        | Dumping of buffer pool not started | InnoDB缓冲池转储的状态 |
| Innodb_buffer_pool_load_status                        | Buffer pool(s) load completed at 240520 14:32:14 | InnoDB缓冲池加载的状态 |
| Innodb_buffer_pool_resize_status                      |       | InnoDB缓冲池调整大小的状态 |
| Innodb_buffer_pool_resize_status_code                 | 0     | InnoDB缓冲池调整大小的状态码 |
| Innodb_buffer_pool_resize_status_progress             | 0     | InnoDB缓冲池调整大小的进度 |
| Innodb_buffer_pool_pages_data                         | 1309  | 缓冲池中包含数据的页数 |
| Innodb_buffer_pool_bytes_data                         | 21446656 | 缓冲池中包含数据的字节数 |
| Innodb_buffer_pool_pages_dirty                        | 0     | 缓冲池中脏页的数量 |
| Innodb_buffer_pool_bytes_dirty                        | 0     | 缓冲池中脏数据的字节数 |
| Innodb_buffer_pool_pages_flushed                      | 255   | 请求清除的缓冲池页数 |
| Innodb_buffer_pool_pages_free                         | 6864  | 缓冲池中空闲页数 |
| Innodb_buffer_pool_pages_misc                         | 19    | 缓冲池中用于管理目的或锁定由事务或查询占用的页数 |
| Innodb_buffer_pool_pages_total                        | 8192  | 缓冲池总页数 |
| Innodb_buffer_pool_read_ahead_rnd                     | 0     | InnoDB启动的"随机"预读操作的数量 |
| Innodb_buffer_pool_read_ahead                         | 0     | InnoDB启动的预读操作的数量 |
| Innodb_buffer_pool_read_ahead_evicted                 | 0     | 在预读操作后被驱逐出缓冲池的页数 |
| Innodb_buffer_pool_read_requests                      | 63275 | InnoDB已完成的逻辑读请求数 |
| Innodb_buffer_pool_reads                              | 1161  | 不能在InnoDB缓冲池中满足并必须直接从磁盘读取的读操作数 |
| Innodb_buffer_pool_wait_free                          | 0     | 等待页清除的次数 |
| Innodb_buffer_pool_write_requests                     | 2309  | 写入InnoDB缓冲池的请求数 |
| Innodb_data_fsyncs                                    | 199   | fsync()操作数 |
| Innodb_data_pending_fsyncs                            | 0     | 当前挂起的fsync操作数 |
| Innodb_data_pending_reads                             | 0     | 当前挂起的读数 |
| Innodb_data_pending_writes                            | 0     | 当前挂起的写数 |
| Innodb_data_read                                      | 19089920 | 从InnoDB数据文件读取的字节数 |
| Innodb_data_reads                                     | 1181  | 数据读取的总次数 |
| Innodb_data_writes                                    | 408   | 数据写入的总次数 |
| Innodb_data_written                                   | 4332032 | 写入InnoDB数据文件的字节数 |
| Innodb_dblwr_pages_written                            | 110   | 已经写入的双写缓冲的页数 |
| Innodb_dblwr_writes                                   | 30    | 双写操作已经执行的次数 |
| Innodb_redo_log_read_only                             | OFF   | 重做日志是否为只读 |
| Innodb_redo_log_uuid                                  | 4040442583 | 重做日志的UUID |
| Innodb_redo_log_checkpoint_lsn                        | 32189425 | 重做日志的检查点LSN |
| Innodb_redo_log_current_lsn                           | 32189425 | 重做日志的当前LSN |
| Innodb_redo_log_flushed_to_disk_lsn                   | 32189425 | 刷新到磁盘的重做日志的LSN |
| Innodb_redo_log_logical_size                          | 512   | 重做日志的逻辑大小 |
| Innodb_redo_log_physical_size                         | 3276800 | 重做日志的物理大小 |
| Innodb_redo_log_capacity_resized                      | 104857600 | 重做日志的调整后容量 |
| Innodb_redo_log_resize_status                         | OK    | 重做日志调整大小的状态 |
| Innodb_log_waits                                      | 0     | 因必须等待来写入日志而发生的等待次数 |
| Innodb_log_write_requests                             | 1003  | 写入日志的请求数 |
| Innodb_log_writes                                     | 95    | 物理写入日志文件的次数 |
| Innodb_os_log_fsyncs                                  | 77    | fsync()写入日志文件的次数 |
| Innodb_os_log_pending_fsyncs                          | 0     | 等待fsync()处理的日志文件写入数量 |
| Innodb_os_log_pending_writes                          | 0     | 等待写入日志文件的写入数量 |
| Innodb_os_log_written                                 | 117248 | 写入日志文件的字节数 |
| Innodb_page_size                                      | 16384 | InnoDB页面大小(字节) |
| Innodb_pages_created                                  | 152   | 创建的页数 |
| Innodb_pages_read                                     | 1160  | 读取的页数 |
| Innodb_pages_written                                  | 255   | 写入的页数 |
| Innodb_redo_log_enabled                               | ON    | 是否启用了重做日志 |
| Innodb_row_lock_current_waits                         | 0     | 当前等待的行锁数量 |
| Innodb_row_lock_time                                  | 0     | 行锁定的总时间(毫秒) |
| Innodb_row_lock_time_avg                              | 0     | 平均行锁定时间(毫秒) |
| Innodb_row_lock_time_max                              | 0     | 最大行锁定时间(毫秒) |
| Innodb_row_lock_waits                                 | 0     | 行锁定的总等待次数 |
| Innodb_rows_deleted                                   | 0     | 删除的行数 |
| Innodb_rows_inserted                                  | 0     | 插入的行数 |
| Innodb_rows_read                                      | 0     | 读取的行数 |
| Innodb_rows_updated                                   | 0     | 更新的行数 |
| Innodb_system_rows_deleted                            | 8     | 系统表删除的行数 |
| Innodb_system_rows_inserted                           | 47    | 系统表插入的行数 |
| Innodb_system_rows_read                               | 21331 | 系统表读取的行数 |
| Innodb_system_rows_updated                            | 331   | 系统表更新的行数 |
| Innodb_sampled_pages_read                             | 0     | 读取的采样页数 |
| Innodb_sampled_pages_skipped                          | 0     | 跳过的采样页数 |
| Innodb_num_open_files                                 | 15    | 打开的文件数 |
| Innodb_truncated_status_writes                        | 0     | 截断的状态变量写入次数 |
| Innodb_undo_tablespaces_total                         | 2     | 总的撤销表空间数 |
| Innodb_undo_tablespaces_implicit                      | 2     | 隐式撤销表空间数 |
| Innodb_undo_tablespaces_explicit                      | 0     | 显式撤销表空间数 |
| Innodb_undo_tablespaces_active                        | 2     | 活动的撤销表空间数 |
| Key_blocks_not_flushed                                | 0     | 尚未刷新到磁盘的键块数 |
| Key_blocks_unused                                     | 6698  | 未使用的键块数 |
| Key_blocks_used                                       | 0     | 使用的键块数 |
| Key_read_requests                                     | 0     | 请求读取键块的次数 |
| Key_reads                                             | 0     | 实际从磁盘读取键块的次数 |
| Key_write_requests                                    | 0     | 请求写入键块的次数 |
| Key_writes                                            | 0     | 实际写入磁盘的键块数 |
| Last_query_cost                                       | 7.799008 | 上一次查询的成本 |
| Last_query_partial_plans                              | 13    | 上一次查询的部分计划数 |
| Locked_connects                                       | 0     | 锁定的连接数 |
| Max_execution_time_exceeded                           | 0     | 超过最大执行时间的操作数 |
| Max_execution_time_set                                | 0     | 设置了最大执行时间的操作数 |
| Max_execution_time_set_failed                         | 0     | 设置最大执行时间失败的操作数 |
| Max_used_connections                                  | 2     | 同时使用的连接的最大数量 |
| Max_used_connections_time                             | 2024-05-20 14:50:15 | 达到最大使用连接数的时间 |
| Mysqlx_aborted_clients                                | 0     | MySQL X协议中断的客户端数量 |
| Mysqlx_address                                        | ::    | MySQL X协议监听的地址 |
| Mysqlx_bytes_received                                 | 0     | MySQL X协议接收的字节数 |
| Mysqlx_bytes_received_compressed_payload              | 0     | MySQL X协议接收的压缩载荷字节数 |
| Mysqlx_bytes_received_uncompressed_frame              | 0     | MySQL X协议接收的未压缩帧字节数 |
| Mysqlx_bytes_sent                                     | 0     | MySQL X协议发送的字节数 |
| Mysqlx_bytes_sent_compressed_payload                  | 0     | MySQL X协议发送的压缩载荷字节数 |
| Mysqlx_bytes_sent_uncompressed_frame                  | 0     | MySQL X协议发送的未压缩帧字节数 |
| Mysqlx_compression_algorithm                          |       | MySQL X协议使用的压缩算法 |
| Mysqlx_compression_level                              |       | MySQL X协议的压缩级别 |
| Mysqlx_connection_accept_errors                       | 0     | MySQL X协议接受连接时的错误数 |
| Mysqlx_connection_errors                              | 0     | MySQL X协议连接错误数 |
| Mysqlx_connections_accepted                           | 0     | MySQL X协议接受的连接数 |
| Mysqlx_connections_closed                             | 0     | MySQL X协议关闭的连接数 |
| Mysqlx_connections_rejected                           | 0     | MySQL X协议拒绝的连接数 |
| Mysqlx_crud_create_view                               | 0     | MySQL X协议执行的创建视图操作数 |
| Mysqlx_crud_delete                                    | 0     | MySQL X协议执行的删除操作数 |
| Mysqlx_crud_drop_view                                 | 0     | MySQL X协议执行的删除视图操作数 |
| Mysqlx_crud_find                                      | 0     | MySQL X协议执行的查找操作数 |
| Mysqlx_crud_insert                                    | 0     | MySQL X协议执行的插入操作数 |
| Mysqlx_crud_modify_view                               | 0     | MySQL X协议执行的修改视图操作数 |
| Mysqlx_crud_update                                    | 0     | MySQL X协议执行的更新操作数 |
| Mysqlx_cursor_close                                   | 0     | MySQL X协议关闭的游标数 |
| Mysqlx_cursor_fetch                                   | 0     | MySQL X协议获取的游标数 |
| Mysqlx_cursor_open                                    | 0     | MySQL X协议打开的游标数 |
| Mysqlx_errors_sent                                    | 0     | MySQL X协议发送的错误数 |
| Mysqlx_errors_unknown_message_type                    | 0     | MySQL X协议接收到的未知消息类型的错误数 |
| Mysqlx_expect_close                                   | 0     | MySQL X协议执行的EXPECT CLOSE操作数 |
| Mysqlx_expect_open                                    | 0     | MySQL X协议执行的EXPECT OPEN操作数 |
| Mysqlx_init_error                                     | 0     | MySQL X协议初始化错误数 |
| Mysqlx_messages_sent                                  | 0     | MySQL X协议发送的消息数 |
| Mysqlx_notice_global_sent                             | 0     | MySQL X协议发送的全局通知数 |
| Mysqlx_notice_other_sent                              | 0     | MySQL X协议发送的其他通知数 |
| Mysqlx_notice_warning_sent                            | 0     | MySQL X协议发送的警告通知数 |
| Mysqlx_notified_by_group_replication                  | 0     | 由组复制触发的MySQL X协议通知数 |
| Mysqlx_port                                           | 33060 | MySQL X协议监听的端口 |
| Mysqlx_prep_deallocate                                | 0     | MySQL X协议执行的预处理释放操作数 |
| Mysqlx_prep_execute                                   | 0     | MySQL X协议执行的预处理执行操作数 |
| Mysqlx_prep_prepare                                   | 0     | MySQL X协议执行的预处理准备操作数 |
| Mysqlx_rows_sent                                      | 0     | MySQL X协议发送的行数 |
| Mysqlx_sessions                                       | 0     | MySQL X协议的会话数 |
| Mysqlx_sessions_accepted                              | 0     | MySQL X协议接受的会话数 |
| Mysqlx_sessions_closed                                | 0     | MySQL X协议关闭的会话数 |
| Mysqlx_sessions_fatal_error                           | 0     | MySQL X协议会话中的致命错误数 |
| Mysqlx_sessions_killed                                | 0     | MySQL X协议杀死的会话数 |
| Mysqlx_sessions_rejected                              | 0     | MySQL X协议拒绝的会话数 |
| Mysqlx_socket                                         | /var/run/mysqld/mysqlx.sock | MySQL X协议监听的套接字 |
| Mysqlx_ssl_accepts                                    | 0     | MySQL X协议接受的SSL连接数 |
| Mysqlx_ssl_active                                     |       | MySQL X协议是否启用了SSL |
| Mysqlx_ssl_cipher                                     |       | MySQL X协议使用的SSL密码套件 |
| Mysqlx_ssl_cipher_list                                |       | MySQL X协议的SSL密码套件列表 |
| Mysqlx_ssl_ctx_verify_depth                           | 18446744073709551615 | MySQL X协议的SSL验证深度 |
| Mysqlx_ssl_ctx_verify_mode                            | 5     | MySQL X协议的SSL验证模式 |
| Mysqlx_ssl_finished_accepts                           | 0     | MySQL X协议完成的SSL接受操作数 |
| Mysqlx_ssl_server_not_after                           | May 18 14:32:07 2034 GMT | SSL服务器证书的有效期结束日期 |
| Mysqlx_ssl_server_not_before                          | May 20 14:32:07 2024 GMT | SSL服务器证书的有效期开始日期 |
| Mysqlx_ssl_verify_depth                               |       | MySQL X协议SSL验证的深度 |
| Mysqlx_ssl_verify_mode                                |       | MySQL X协议SSL验证的模式 |
| Mysqlx_ssl_version                                    |       | MySQL X协议使用的SSL版本 |
| Mysqlx_stmt_create_collection                         | 0     | MySQL X协议执行的创建集合操作数 |
| Mysqlx_stmt_create_collection_index                   | 0     | MySQL X协议执行的创建集合索引操作数 |
| Mysqlx_stmt_disable_notices                           | 0     | MySQL X协议执行的禁用通知操作数 |
| Mysqlx_stmt_drop_collection                           | 0     | MySQL X协议执行的删除集合操作数 |
| Mysqlx_stmt_drop_collection_index                     | 0     | MySQL X协议执行的删除集合索引操作数 |
| Mysqlx_stmt_enable_notices                            | 0     | MySQL X协议执行的启用通知操作数 |
| Mysqlx_stmt_ensure_collection                         | 0     | MySQL X协议执行的确保集合存在操作数 |
| Mysqlx_stmt_execute_mysqlx                            | 0     | MySQL X协议执行的mysqlx命令数 |
| Mysqlx_stmt_execute_sql                               | 0     | MySQL X协议执行的sql命令数 |
| Mysqlx_stmt_execute_xplugin                           | 0     | MySQL X协议执行的xplugin命令数 |
| Mysqlx_stmt_get_collection_options                    | 0     | MySQL X协议执行的获取集合选项操作数 |
| Mysqlx_stmt_kill_client                               | 0     | MySQL X协议执行的终止客户端操作数 |
| Mysqlx_stmt_list_clients                              | 0     | MySQL X协议执行的列出客户端操作数 |
| Mysqlx_stmt_list_notices                              | 0     | MySQL X协议执行的列出通知操作数 |
| Mysqlx_stmt_list_objects                              | 0     | MySQL X协议执行的列出对象操作数 |
| Mysqlx_stmt_modify_collection_options                 | 0     | MySQL X协议执行的修改集合选项操作数 |
| Mysqlx_stmt_ping                                      | 0     | MySQL X协议执行的ping操作数 |
| Mysqlx_worker_threads                                 | 2     | MySQL X协议的工作线程数 |
| Mysqlx_worker_threads_active                          | 0     | MySQL X协议的活动工作线程数 |
| Not_flushed_delayed_rows                              | 0     | 尚未刷新的延迟行数 |
| Ongoing_anonymous_transaction_count                   | 0     | 进行中的匿名事务数 |
| Open_files                                            | 6     | 打开的文件数 |
| Open_streams                                          | 0     | 打开的流数 |
| Open_table_definitions                                | 210   | 打开的表定义数 |
| Open_tables                                           | 276   | 打开的表数 |
| Opened_files                                          | 6     | 打开的文件数 |
| Opened_table_definitions                              | 4     | 打开的表定义数 |
| Opened_tables                                         | 18    | 打开的表数 |
| Performance_schema_accounts_lost                      | 0     | 性能模式中丢失的账户数 |
| Performance_schema_cond_classes_lost                  | 0     | 性能模式中丢失的条件类数 |
| Performance_schema_cond_instances_lost                | 0     | 性能模式中丢失的条件实例数 |
| Performance_schema_digest_lost                        | 0     | 性能模式中丢失的摘要数 |
| Performance_schema_file_classes_lost                  | 0     | 性能模式中丢失的文件类数 |
| Performance_schema_file_handles_lost                  | 0     | 性能模式中丢失的文件句柄数 |
| Performance_schema_file_instances_lost                | 0     | 性能模式中丢失的文件实例数 |
| Performance_schema_hosts_lost                         | 0     | 性能模式中丢失的主机数 |
| Performance_schema_index_stat_lost                    | 0     | 性能模式中丢失的索引统计数 |
| Performance_schema_locker_lost                        | 0     | 性能模式中丢失的锁定器数 |
| Performance_schema_memory_classes_lost                | 0     | 性能模式中丢失的内存类数 |
| Performance_schema_metadata_lock_lost                 | 0     | 性能模式中丢失的元数据锁数 |
| Performance_schema_mutex_classes_lost                 | 0     | 性能模式中丢失的互斥类数 |
| Performance_schema_mutex_instances_lost               | 0     | 性能模式中丢失的互斥实例数 |
| Performance_schema_nested_statement_lost              | 0     | 性能模式中丢失的嵌套语句数 |
| Performance_schema_prepared_statements_lost           | 0     | 性能模式中丢失的预处理语句数 |
| Performance_schema_program_lost                       | 0     | 性能模式中丢失的程序数 |
| Performance_schema_rwlock_classes_lost                | 0     | 性能模式中丢失的读写锁类数 |
| Performance_schema_rwlock_instances_lost              | 0     | 性能模式中丢失的读写锁实例数 |
| Performance_schema_session_connect_attrs_longest_seen | 130   | 性能模式中看到的最长的会话连接属性 |
| Performance_schema_session_connect_attrs_lost         | 0     | 性能模式中丢失的会话连接属性数 |
| Performance_schema_socket_classes_lost                | 0     | 性能模式中丢失的套接字类数 |
| Performance_schema_socket_instances_lost              | 0     | 性能模式中丢失的套接字实例数 |
| Performance_schema_stage_classes_lost                 | 0     | 性能模式中丢失的阶段类数 |
| Performance_schema_statement_classes_lost             | 0     | 性能模式中丢失的语句类数 |
| Performance_schema_table_handles_lost                 | 0     | 性能模式中丢失的表句柄数 |
| Performance_schema_table_instances_lost               | 0     | 性能模式中丢失的表实例数 |
| Performance_schema_table_lock_stat_lost               | 0     | 性能模式下丢失的表锁定统计 |
| Performance_schema_thread_classes_lost                | 0     | 性能模式下丢失的线程类 |
| Performance_schema_thread_instances_lost              | 0     | 性能模式下丢失的线程实例 |
| Performance_schema_users_lost                         | 0     | 性能模式下丢失的用户 |
| Prepared_stmt_count                                   | 0     | 预处理语句的数量 |
| Queries                                               | 707   | 执行的查询数量 |
| Questions                                             | 4     | 收到的查询数量 |
| Replica_open_temp_tables                              | 0     | 复制打开的临时表数量 |
| Resource_group_supported                              | ON    | 是否支持资源组 |
| Rsa_public_key                                        | -----BEGIN PUBLIC KEY-----...-----END PUBLIC KEY----- | RSA公钥 |
| Secondary_engine_execution_count                      | 0     | 次要引擎执行次数 |
| Select_full_join                                      | 2     | 执行全连接的SELECT语句数量 |
| Select_full_range_join                                | 0     | 对参与连接的每个表执行全范围扫描的SELECT语句数量 |
| Select_range                                          | 0     | 对第一个表使用范围索引的SELECT语句数量 |
| Select_range_check                                    | 0     | 对每一行检查键是否在给定范围内的SELECT语句数量 |
| Select_scan                                           | 2     | 对第一个表进行全扫描的SELECT语句数量 |
| Slave_open_temp_tables                                | 0     | 从服务器打开的临时表数量 |
| Slow_launch_threads                                   | 0     | 创建时间超过slow_launch_time秒的线程数量 |
| Slow_queries                                          | 0     | 查询时间超过long_query_time秒的查询数量 |
| Sort_merge_passes                                     | 0     | 排序算法已经执行的合并的数量 |
| Sort_range                                            | 0     | 在范围内排序的数量 |
| Sort_rows                                             | 8     | 已经排序的行数 |
| Sort_scan                                             | 2     | 扫描的排序数量 |
| Ssl_accept_renegotiates                               | 0     | SSL重新协商连接的次数 |
| Ssl_accepts                                           | 5     | SSL连接接受的次数 |
| Ssl_callback_cache_hits                               | 0     | SSL回调缓存命中次数 |
| Ssl_cipher                                            |       | SSL连接使用的密码套件 |
| Ssl_cipher_list                                       |       | SSL连接支持的密码套件列表 |
| Ssl_client_connects                                   | 0     | SSL客户端连接的数量 |
| Ssl_connect_renegotiates                              | 0     | SSL连接重新协商的次数 |
| Ssl_ctx_verify_depth                                  | 18446744073709551615 | SSL上下文验证深度 |
| Ssl_ctx_verify_mode                                   | 5     | SSL上下文验证模式 |
| Ssl_default_timeout                                   | 0     | SSL默认超时(秒) |
| Ssl_finished_accepts                                  | 5     | 完成的SSL接受操作的数量 |
| Ssl_finished_connects                                 | 0     | 完成的SSL连接操作的数量 |
| Ssl_server_not_after                                  | May 18 14:32:07 2034 GMT | SSL服务器证书的有效期结束日期 |
| Ssl_server_not_before                                 | May 20 14:32:07 2024 GMT | SSL服务器证书的有效期开始日期 |
| Ssl_session_cache_hits                                | 0     | SSL会话缓存命中的次数 |
| Ssl_session_cache_misses                              | 0     | SSL会话缓存未命中的次数 |
| Ssl_session_cache_mode                                | SERVER | SSL会话缓存模式 |
| Ssl_session_cache_overflows                           | 0     | SSL会话缓存溢出的次数 |
| Ssl_session_cache_size                                | 128   | SSL会话缓存大小 |
| Ssl_session_cache_timeout                             | 300   | SSL会话缓存超时(秒) |
| Ssl_session_cache_timeouts                            | 0     | SSL会话缓存超时的次数 |
| Ssl_sessions_reused                                   | 0     | 重用的SSL会话的数量 |
| Ssl_used_session_cache_entries                        | 0     | 使用的SSL会话缓存条目的数量 |
| Ssl_verify_depth                                      | 0     | SSL验证深度 |
| Ssl_verify_mode                                       | 0     | SSL验证模式 |
| Ssl_version                                           |       | SSL版本 |
| Table_locks_immediate                                 | 7     | 表锁定立即获得的次数 |
| Table_locks_waited                                    | 0     | 表锁定需要等待的次数 |
| Table_open_cache_hits                                 | 5     | 表打开缓存命中的次数 |
| Table_open_cache_misses                               | 18    | 表打开缓存未命中的次数 |
| Table_open_cache_overflows                            | 0     | 表打开缓存溢出的次数 |
| Tc_log_max_pages_used                                 | 0     | 事务坐标日志使用的最大页数 |
| Tc_log_page_size                                      | 0     | 事务坐标日志的页大小 |
| Tc_log_page_waits                                     | 0     | 事务坐标日志的页面等待次数 |
| Telemetry_traces_supported                            | ON    | 是否支持遥测跟踪 |
| Threads_cached                                        | 1     | 缓存的线程数量 |
| Threads_connected                                     | 1     | 当前打开的连接的数量 |
| Threads_created                                       | 2     | 创建的线程数量 |
| Threads_running                                       | 2     | 当前运行的线程数量 |
| Tls_library_version                                   | OpenSSL 3.0.11 19 Sep 2023 | TLS库版本 |
| Uptime                                                | 1258  | 服务器已经运行的时间(秒) |
| Uptime_since_flush_status                             | 1258  | 自上次刷新状态以来的运行时间(秒) |
499 rows in set (0.00 sec)
mysql> 

MySQL 服务器的当前状态 (终端输出内容–英文版)

mysql> show status;
| Variable_name                                         |Value|
| Aborted_clients                                       | 0   |
| Aborted_connects                                      | 1   |
| Acl_cache_items_count                                 | 0   |
| Binlog_cache_disk_use                                 | 0   |
| Binlog_cache_use                                      | 0   |
| Binlog_stmt_cache_disk_use                            | 0   |
| Binlog_stmt_cache_use                                 | 0   |
| Bytes_received                                        | 309 |
| Bytes_sent                                            | 463 |
| Caching_sha2_password_rsa_public_key                  | -----BEGIN PUBLIC KEY-----
MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAsJwrtS3ecKBjYfMfYZS6
yZYkCRCn13CeUJG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAsJwrtS3vdBG8chdU79jjy
Wu5a4MSb1VdHiG9w0BAQEFAAOCAQ8AMIIMIBCgKCAQEAsJwrtS3DYUI+fVqX2UIR
KZSCCI8bdaDfRrymoef/D/EAAOAUQH6KwxShvScOPEfUih9TOkzqO8JMjRHZsbDB
IJ5nw4VK62DI4190fXxxE40yf4g4OYRGZqqBRal2dATq5cbCaMERuMlgT/5c/iWH
NunO9ltA+0+Y2/X0YOqWqxDmaTfck+xz5Szk3gnzKYwcVlG/XQtVBh3JwgGYToaB
/QIDAQAB
-----END PUBLIC KEY-----|
| Com_admin_commands                                    | 0   |
| Com_assign_to_keycache                                | 0   |
| Com_alter_db                                          | 0   |
| Com_alter_event                                       | 0   |
| Com_alter_function                                    | 0   |
| Com_alter_instance                                    | 0   |
| Com_alter_procedure                                   | 0   |
| Com_alter_resource_group                              | 0   |
| Com_alter_server                                      | 0   |
| Com_alter_table                                       | 0   |
| Com_alter_tablespace                                  | 0   |
| Com_alter_user                                        | 0   |
| Com_alter_user_default_role                           | 0   |
| Com_analyze                                           | 0   |
| Com_begin                                             | 0   |
| Com_binlog                                            | 0   |
| Com_call_procedure                                    | 0   |
| Com_change_db                                         | 0   |
| Com_change_master                                     | 0   |
| Com_change_repl_filter                                | 0   |
| Com_change_replication_source                         | 0   |
| Com_check                                             | 0   |
| Com_checksum                                          | 0   |
| Com_clone                                             | 0   |
| Com_commit                                            | 0   |
| Com_create_db                                         | 0   |
| Com_create_event                                      | 0   |
| Com_create_function                                   | 0   |
| Com_create_index                                      | 0   |
| Com_create_procedure                                  | 0   |
| Com_create_role                                       | 0   |
| Com_create_server                                     | 0   |
| Com_create_table                                      | 0   |
| Com_create_resource_group                             | 0   |
| Com_create_trigger                                    | 0   |
| Com_create_udf                                        | 0   |
| Com_create_user                                       | 0   |
| Com_create_view                                       | 0   |
| Com_create_spatial_reference_system                   | 0   |
| Com_dealloc_sql                                       | 0   |
| Com_delete                                            | 0   |
| Com_delete_multi                                      | 0   |
| Com_do                                                | 0   |
| Com_drop_db                                           | 0   |
| Com_drop_event                                        | 0   |
| Com_drop_function                                     | 0   |
| Com_drop_index                                        | 0   |
| Com_drop_procedure                                    | 0   |
| Com_drop_resource_group                               | 0   |
| Com_drop_role                                         | 0   |
| Com_drop_server                                       | 0   |
| Com_drop_spatial_reference_system                     | 0   |
| Com_drop_table                                        | 0   |
| Com_drop_trigger                                      | 0   |
| Com_drop_user                                         | 0   |
| Com_drop_view                                         | 0   |
| Com_empty_query                                       | 0   |
| Com_execute_sql                                       | 0   |
| Com_explain_other                                     | 0   |
| Com_flush                                             | 0   |
| Com_get_diagnostics                                   | 0   |
| Com_grant                                             | 0   |
| Com_grant_roles                                       | 0   |
| Com_ha_close                                          | 0   |
| Com_ha_open                                           | 0   |
| Com_ha_read                                           | 0   |
| Com_help                                              | 0   |
| Com_import                                            | 0   |
| Com_insert                                            | 0   |
| Com_insert_select                                     | 0   |
| Com_install_component                                 | 0   |
| Com_install_plugin                                    | 0   |
| Com_kill                                              | 0   |
| Com_load                                              | 0   |
| Com_lock_instance                                     | 0   |
| Com_lock_tables                                       | 0   |
| Com_optimize                                          | 0   |
| Com_preload_keys                                      | 0   |
| Com_prepare_sql                                       | 0   |
| Com_purge                                             | 0   |
| Com_purge_before_date                                 | 0   |
| Com_release_savepoint                                 | 0   |
| Com_rename_table                                      | 0   |
| Com_rename_user                                       | 0   |
| Com_repair                                            | 0   |
| Com_replace                                           | 0   |
| Com_replace_select                                    | 0   |
| Com_reset                                             | 0   |
| Com_resignal                                          | 0   |
| Com_restart                                           | 0   |
| Com_revoke                                            | 0   |
| Com_revoke_all                                        | 0   |
| Com_revoke_roles                                      | 0   |
| Com_rollback                                          | 0   |
| Com_rollback_to_savepoint                             | 0   |
| Com_savepoint                                         | 0   |
| Com_select                                            | 1   |
| Com_set_option                                        | 0   |
| Com_set_password                                      | 0   |
| Com_set_resource_group                                | 0   |
| Com_set_role                                          | 0   |
| Com_signal                                            | 0   |
| Com_show_binlog_events                                | 0   |
| Com_show_binlogs                                      | 0   |
| Com_show_charsets                                     | 0   |
| Com_show_collations                                   | 0   |
| Com_show_create_db                                    | 0   |
| Com_show_create_event                                 | 0   |
| Com_show_create_func                                  | 0   |
| Com_show_create_proc                                  | 0   |
| Com_show_create_table                                 | 0   |
| Com_show_create_trigger                               | 0   |
| Com_show_databases                                    | 2   |
| Com_show_engine_logs                                  | 0   |
| Com_show_engine_mutex                                 | 0   |
| Com_show_engine_status                                | 0   |
| Com_show_events                                       | 0   |
| Com_show_errors                                       | 0   |
| Com_show_fields                                       | 0   |
| Com_show_function_code                                | 0   |
| Com_show_function_status                              | 0   |
| Com_show_grants                                       | 0   |
| Com_show_keys                                         | 0   |
| Com_show_master_status                                | 0   |
| Com_show_open_tables                                  | 0   |
| Com_show_plugins                                      | 0   |
| Com_show_privileges                                   | 0   |
| Com_show_procedure_code                               | 0   |
| Com_show_procedure_status                             | 0   |
| Com_show_processlist                                  | 0   |
| Com_show_profile                                      | 0   |
| Com_show_profiles                                     | 0   |
| Com_show_relaylog_events                              | 0   |
| Com_show_replicas                                     | 0   |
| Com_show_slave_hosts                                  | 0   |
| Com_show_replica_status                               | 0   |
| Com_show_slave_status                                 | 0   |
| Com_show_status                                       | 1   |
| Com_show_storage_engines                              | 0   |
| Com_show_table_status                                 | 0   |
| Com_show_tables                                       | 0   |
| Com_show_triggers                                     | 0   |
| Com_show_variables                                    | 0   |
| Com_show_warnings                                     | 0   |
| Com_show_create_user                                  | 0   |
| Com_shutdown                                          | 0   |
| Com_replica_start                                     | 0   |
| Com_slave_start                                       | 0   |
| Com_replica_stop                                      | 0   |
| Com_slave_stop                                        | 0   |
| Com_group_replication_start                           | 0   |
| Com_group_replication_stop                            | 0   |
| Com_stmt_execute                                      | 0   |
| Com_stmt_close                                        | 0   |
| Com_stmt_fetch                                        | 0   |
| Com_stmt_prepare                                      | 0   |
| Com_stmt_reset                                        | 0   |
| Com_stmt_send_long_data                               | 0   |
| Com_truncate                                          | 0   |
| Com_uninstall_component                               | 0   |
| Com_uninstall_plugin                                  | 0   |
| Com_unlock_instance                                   | 0   |
| Com_unlock_tables                                     | 0   |
| Com_update                                            | 0   |
| Com_update_multi                                      | 0   |
| Com_xa_commit                                         | 0   |
| Com_xa_end                                            | 0   |
| Com_xa_prepare                                        | 0   |
| Com_xa_recover                                        | 0   |
| Com_xa_rollback                                       | 0   |
| Com_xa_start                                          | 0   |
| Com_stmt_reprepare                                    | 0   |
| Compression                                           | OFF |
| Compression_algorithm                                 |     |
| Compression_level                                     | 0   |
| Connection_errors_accept                              | 0   |
| Connection_errors_internal                            | 0   |
| Connection_errors_max_connections                     | 0   |
| Connection_errors_peer_address                        | 0   |
| Connection_errors_select                              | 0   |
| Connection_errors_tcpwrap                             | 0   |
| Connections                                           | 17  |
| Created_tmp_disk_tables                               | 0   |
| Created_tmp_files                                     | 5   |
| Created_tmp_tables                                    | 0   |
| Current_tls_ca                                        | ca.pem|
| Current_tls_capath                                    |     |
| Current_tls_cert                                      | server-cert.pem  |
| Current_tls_cipher                                    |     |
| Current_tls_ciphersuites                              |     |
| Current_tls_crl                                       |     |
| Current_tls_crlpath                                   |     |
| Current_tls_key                                       | server-key.pem   |
| Current_tls_version                                   | TLSv1.2,TLSv1.3  |
| Delayed_errors                                        | 0   |
| Delayed_insert_threads                                | 0   |
| Delayed_writes                                        | 0   |
| Deprecated_use_i_s_processlist_count                  | 0   |
| Deprecated_use_i_s_processlist_last_timestamp         | 0   |
| Error_log_buffered_bytes                              | 1128|
| Error_log_buffered_events                             | 8   |
| Error_log_expired_events                              | 0   |
| Error_log_latest_write                                | 1716215534735783 |
| Flush_commands                                        | 3   |
| Global_connection_memory                              | 0   |
| Handler_commit                                        | 3   |
| Handler_delete                                        | 0   |
| Handler_discover                                      | 0   |
| Handler_external_lock                                 | 46  |
| Handler_mrr_init                                      | 0   |
| Handler_prepare                                       | 0   |
| Handler_read_first                                    | 4   |
| Handler_read_key                                      | 21  |
| Handler_read_last                                     | 0   |
| Handler_read_next                                     | 10  |
| Handler_read_prev                                     | 0   |
| Handler_read_rnd                                      | 0   |
| Handler_read_rnd_next                                 | 10  |
| Handler_rollback                                      | 0   |
| Handler_savepoint                                     | 0   |
| Handler_savepoint_rollback                            | 0   |
| Handler_update                                        | 0   |
| Handler_write                                         | 0   |
| Innodb_buffer_pool_dump_status                        | Dumping of buffer pool not started|
| Innodb_buffer_pool_load_status                        | Buffer pool(s) load completed at 240520 14:32:14|
| Innodb_buffer_pool_resize_status                      |     |
| Innodb_buffer_pool_resize_status_code                 | 0   |
| Innodb_buffer_pool_resize_status_progress             | 0   |
| Innodb_buffer_pool_pages_data                         | 1309|
| Innodb_buffer_pool_bytes_data                         | 21446656|
| Innodb_buffer_pool_pages_dirty                        | 0   |
| Innodb_buffer_pool_bytes_dirty                        | 0   |
| Innodb_buffer_pool_pages_flushed                      | 255 |
| Innodb_buffer_pool_pages_free                         | 6864|
| Innodb_buffer_pool_pages_misc                         | 19  |
| Innodb_buffer_pool_pages_total                        | 8192|
| Innodb_buffer_pool_read_ahead_rnd                     | 0   |
| Innodb_buffer_pool_read_ahead                         | 0   |
| Innodb_buffer_pool_read_ahead_evicted                 | 0   |
| Innodb_buffer_pool_read_requests                      | 63275|
| Innodb_buffer_pool_reads                              | 1161|
| Innodb_buffer_pool_wait_free                          | 0   |
| Innodb_buffer_pool_write_requests                     | 2309|
| Innodb_data_fsyncs                                    | 199 |
| Innodb_data_pending_fsyncs                            | 0   |
| Innodb_data_pending_reads                             | 0   |
| Innodb_data_pending_writes                            | 0   |
| Innodb_data_read                                      | 19089920|
| Innodb_data_reads                                     | 1181|
| Innodb_data_writes                                    | 408 |
| Innodb_data_written                                   | 4332032|
| Innodb_dblwr_pages_written                            | 110 |
| Innodb_dblwr_writes                                   | 30  |
| Innodb_redo_log_read_only                             | OFF |
| Innodb_redo_log_uuid                                  | 4040442583 |
| Innodb_redo_log_checkpoint_lsn                        | 32189425 |
| Innodb_redo_log_current_lsn                           | 32189425  |
| Innodb_redo_log_flushed_to_disk_lsn                   | 32189425 |
| Innodb_redo_log_logical_size                          | 512 |
| Innodb_redo_log_physical_size                         | 3276800 |
| Innodb_redo_log_capacity_resized                      | 104857600 |
| Innodb_redo_log_resize_status                         | OK  |
| Innodb_log_waits                                      | 0   |
| Innodb_log_write_requests                             | 1003|
| Innodb_log_writes                                     | 95  |
| Innodb_os_log_fsyncs                                  | 77  |
| Innodb_os_log_pending_fsyncs                          | 0   |
| Innodb_os_log_pending_writes                          | 0   |
| Innodb_os_log_written                                 | 117248 |
| Innodb_page_size                                      | 16384|
| Innodb_pages_created                                  | 152 |
| Innodb_pages_read                                     | 1160|
| Innodb_pages_written                                  | 255 |
| Innodb_redo_log_enabled                               | ON  |
| Innodb_row_lock_current_waits                         | 0   |
| Innodb_row_lock_time                                  | 0   |
| Innodb_row_lock_time_avg                              | 0   |
| Innodb_row_lock_time_max                              | 0   |
| Innodb_row_lock_waits                                 | 0   |
| Innodb_rows_deleted                                   | 0   |
| Innodb_rows_inserted                                  | 0   |
| Innodb_rows_read                                      | 0   |
| Innodb_rows_updated                                   | 0   |
| Innodb_system_rows_deleted                            | 8   |
| Innodb_system_rows_inserted                           | 47  |
| Innodb_system_rows_read                               | 21331|
| Innodb_system_rows_updated                            | 331 |
| Innodb_sampled_pages_read                             | 0   |
| Innodb_sampled_pages_skipped                          | 0   |
| Innodb_num_open_files                                 | 15  |
| Innodb_truncated_status_writes                        | 0   |
| Innodb_undo_tablespaces_total                         | 2   |
| Innodb_undo_tablespaces_implicit                      | 2   |
| Innodb_undo_tablespaces_explicit                      | 0   |
| Innodb_undo_tablespaces_active                        | 2   |
| Key_blocks_not_flushed                                | 0   |
| Key_blocks_unused                                     | 6698|
| Key_blocks_used                                       | 0   |
| Key_read_requests                                     | 0   |
| Key_reads                                             | 0   |
| Key_write_requests                                    | 0   |
| Key_writes                                            | 0   |
| Last_query_cost                                       | 7.799008|
| Last_query_partial_plans                              | 13  |
| Locked_connects                                       | 0   |
| Max_execution_time_exceeded                           | 0   |
| Max_execution_time_set                                | 0   |
| Max_execution_time_set_failed                         | 0   |
| Max_used_connections                                  | 2   |
| Max_used_connections_time                             | 2024-05-20 14:50:15|
| Mysqlx_aborted_clients                                | 0   |
| Mysqlx_address                                        | ::  |
| Mysqlx_bytes_received                                 | 0   |
| Mysqlx_bytes_received_compressed_payload              | 0   |
| Mysqlx_bytes_received_uncompressed_frame              | 0   |
| Mysqlx_bytes_sent                                     | 0   |
| Mysqlx_bytes_sent_compressed_payload                  | 0   |
| Mysqlx_bytes_sent_uncompressed_frame                  | 0   |
| Mysqlx_compression_algorithm                          |     |
| Mysqlx_compression_level                              |     |
| Mysqlx_connection_accept_errors                       | 0   |
| Mysqlx_connection_errors                              | 0   |
| Mysqlx_connections_accepted                           | 0   |
| Mysqlx_connections_closed                             | 0   |
| Mysqlx_connections_rejected                           | 0   |
| Mysqlx_crud_create_view                               | 0   |
| Mysqlx_crud_delete                                    | 0   |
| Mysqlx_crud_drop_view                                 | 0   |
| Mysqlx_crud_find                                      | 0   |
| Mysqlx_crud_insert                                    | 0   |
| Mysqlx_crud_modify_view                               | 0   |
| Mysqlx_crud_update                                    | 0   |
| Mysqlx_cursor_close                                   | 0   |
| Mysqlx_cursor_fetch                                   | 0   |
| Mysqlx_cursor_open                                    | 0   |
| Mysqlx_errors_sent                                    | 0   |
| Mysqlx_errors_unknown_message_type                    | 0   |
| Mysqlx_expect_close                                   | 0   |
| Mysqlx_expect_open                                    | 0   |
| Mysqlx_init_error                                     | 0   |
| Mysqlx_messages_sent                                  | 0   |
| Mysqlx_notice_global_sent                             | 0   |
| Mysqlx_notice_other_sent                              | 0   |
| Mysqlx_notice_warning_sent                            | 0   |
| Mysqlx_notified_by_group_replication                  | 0   |
| Mysqlx_port                                           | 33060|
| Mysqlx_prep_deallocate                                | 0   |
| Mysqlx_prep_execute                                   | 0   |
| Mysqlx_prep_prepare                                   | 0   |
| Mysqlx_rows_sent                                      | 0   |
| Mysqlx_sessions                                       | 0   |
| Mysqlx_sessions_accepted                              | 0   |
| Mysqlx_sessions_closed                                | 0   |
| Mysqlx_sessions_fatal_error                           | 0   |
| Mysqlx_sessions_killed                                | 0   |
| Mysqlx_sessions_rejected                              | 0   |
| Mysqlx_socket                                         | /var/run/mysqld/mysqlx.sock|
| Mysqlx_ssl_accepts                                    | 0   |
| Mysqlx_ssl_active                                     |     |
| Mysqlx_ssl_cipher                                     |     |
| Mysqlx_ssl_cipher_list                                |     |
| Mysqlx_ssl_ctx_verify_depth                           | 18446744073709551615      |
| Mysqlx_ssl_ctx_verify_mode                            | 5   |
| Mysqlx_ssl_finished_accepts                           | 0   |
| Mysqlx_ssl_server_not_after                           | May 18 14:32:07 2034 GMT  |
| Mysqlx_ssl_server_not_before                          | May 20 14:32:07 2024 GMT  |
| Mysqlx_ssl_verify_depth                               |     |
| Mysqlx_ssl_verify_mode                                |     |
| Mysqlx_ssl_version                                    |     |
| Mysqlx_stmt_create_collection                         | 0   |
| Mysqlx_stmt_create_collection_index                   | 0   |
| Mysqlx_stmt_disable_notices                           | 0   |
| Mysqlx_stmt_drop_collection                           | 0   |
| Mysqlx_stmt_drop_collection_index                     | 0   |
| Mysqlx_stmt_enable_notices                            | 0   |
| Mysqlx_stmt_ensure_collection                         | 0   |
| Mysqlx_stmt_execute_mysqlx                            | 0   |
| Mysqlx_stmt_execute_sql                               | 0   |
| Mysqlx_stmt_execute_xplugin                           | 0   |
| Mysqlx_stmt_get_collection_options                    | 0   |
| Mysqlx_stmt_kill_client                               | 0   |
| Mysqlx_stmt_list_clients                              | 0   |
| Mysqlx_stmt_list_notices                              | 0   |
| Mysqlx_stmt_list_objects                              | 0   |
| Mysqlx_stmt_modify_collection_options                 | 0   |
| Mysqlx_stmt_ping                                      | 0   |
| Mysqlx_worker_threads                                 | 2   |
| Mysqlx_worker_threads_active                          | 0   |
| Not_flushed_delayed_rows                              | 0   |
| Ongoing_anonymous_transaction_count                   | 0   |
| Open_files                                            | 6   |
| Open_streams                                          | 0   |
| Open_table_definitions                                | 210 |
| Open_tables                                           | 276 |
| Opened_files                                          | 6   |
| Opened_table_definitions                              | 4   |
| Opened_tables                                         | 18  |
| Performance_schema_accounts_lost                      | 0   |
| Performance_schema_cond_classes_lost                  | 0   |
| Performance_schema_cond_instances_lost                | 0   |
| Performance_schema_digest_lost                        | 0   |
| Performance_schema_file_classes_lost                  | 0   |
| Performance_schema_file_handles_lost                  | 0   |
| Performance_schema_file_instances_lost                | 0   |
| Performance_schema_hosts_lost                         | 0   |
| Performance_schema_index_stat_lost                    | 0   |
| Performance_schema_locker_lost                        | 0   |
| Performance_schema_memory_classes_lost                | 0   |
| Performance_schema_metadata_lock_lost                 | 0   |
| Performance_schema_mutex_classes_lost                 | 0   |
| Performance_schema_mutex_instances_lost               | 0   |
| Performance_schema_nested_statement_lost              | 0   |
| Performance_schema_prepared_statements_lost           | 0   |
| Performance_schema_program_lost                       | 0   |
| Performance_schema_rwlock_classes_lost                | 0   |
| Performance_schema_rwlock_instances_lost              | 0   |
| Performance_schema_session_connect_attrs_longest_seen | 130 |
| Performance_schema_session_connect_attrs_lost         | 0   |
| Performance_schema_socket_classes_lost                | 0   |
| Performance_schema_socket_instances_lost              | 0   |
| Performance_schema_stage_classes_lost                 | 0   |
| Performance_schema_statement_classes_lost             | 0   |
| Performance_schema_table_handles_lost                 | 0   |
| Performance_schema_table_instances_lost               | 0   |
| Performance_schema_table_lock_stat_lost               | 0   |
| Performance_schema_thread_classes_lost                | 0   |
| Performance_schema_thread_instances_lost              | 0   |
| Performance_schema_users_lost                         | 0   |
| Prepared_stmt_count                                   | 0   |
| Queries                                               | 707 |
| Questions                                             | 4   |
| Replica_open_temp_tables                              | 0   |
| Resource_group_supported                              | ON  |
| Rsa_public_key                                        | -----BEGIN PUBLIC KEY-----
MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAsJwrtS3ecKBjYfMfYZS6
yZYkCRCn13NBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAsJwrtS3echdU79jjy
Wu5a4MSb1VdHiiS2us2KJgqiGIRjkOD+vqsDyEdA370sIzbUbQ0DYUI+fVqX2UIR
KZSCCI8bdaDfRrymoef/D/EAA2DI4190fXxxE40yf4g4OYRGZqqBRakMjRHZsbDB
IJ5nw4VK62DI4190fXxxE40yf4g4OYRGZqqBRal2dATq5cbCaMERuMlgT/5c/iWH
NunO9ltA+0+Y2/X0YOqWqxDmaTfck+xz5Szk3gnzKYwcVlG/XQtVBh3JwgGYToaB
/QIDAQAB
-----END PUBLIC KEY-----|
| Secondary_engine_execution_count                      | 0   |
| Select_full_join                                      | 2   |
| Select_full_range_join                                | 0   |
| Select_range                                          | 0   |
| Select_range_check                                    | 0   |
| Select_scan                                           | 2   |
| Slave_open_temp_tables                                | 0   |
| Slow_launch_threads                                   | 0   |
| Slow_queries                                          | 0   |
| Sort_merge_passes                                     | 0   |
| Sort_range                                            | 0   |
| Sort_rows                                             | 8   |
| Sort_scan                                             | 2   |
| Ssl_accept_renegotiates                               | 0   |
| Ssl_accepts                                           | 5   |
| Ssl_callback_cache_hits                               | 0   |
| Ssl_cipher                                            |     |
| Ssl_cipher_list                                       |     |
| Ssl_client_connects                                   | 0   |
| Ssl_connect_renegotiates                              | 0   |
| Ssl_ctx_verify_depth                                  | 18446744073709551615      |
| Ssl_ctx_verify_mode                                   | 5   |
| Ssl_default_timeout                                   | 0   |
| Ssl_finished_accepts                                  | 5   |
| Ssl_finished_connects                                 | 0   |
| Ssl_server_not_after                                  | May 18 14:32:07 2034 GMT  |
| Ssl_server_not_before                                 | May 20 14:32:07 2024 GMT  |
| Ssl_session_cache_hits                                | 0   |
| Ssl_session_cache_misses                              | 0   |
| Ssl_session_cache_mode                                | SERVER                    |
| Ssl_session_cache_overflows                           | 0   |
| Ssl_session_cache_size                                | 128 |
| Ssl_session_cache_timeout                             | 300 |
| Ssl_session_cache_timeouts                            | 0   |
| Ssl_sessions_reused                                   | 0   |
| Ssl_used_session_cache_entries                        | 0   |
| Ssl_verify_depth                                      | 0   |
| Ssl_verify_mode                                       | 0   |
| Ssl_version                                           |     |
| Table_locks_immediate                                 | 7   |
| Table_locks_waited                                    | 0   |
| Table_open_cache_hits                                 | 5   |
| Table_open_cache_misses                               | 18  |
| Table_open_cache_overflows                            | 0   |
| Tc_log_max_pages_used                                 | 0   |
| Tc_log_page_size                                      | 0   |
| Tc_log_page_waits                                     | 0   |
| Telemetry_traces_supported                            | ON  |
| Threads_cached                                        | 1   |
| Threads_connected                                     | 1   |
| Threads_created                                       | 2   |
| Threads_running                                       | 2   |
| Tls_library_version                                   | OpenSSL 3.0.11 19 Sep 2023|
| Uptime                                                | 1258|
| Uptime_since_flush_status                             | 1258|499 rows in set (0.00 sec)mysql> 

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处:http://www.mzph.cn/diannao/14794.shtml

如若内容造成侵权/违法违规/事实不符,请联系多彩编程网进行投诉反馈email:809451989@qq.com,一经查实,立即删除!

相关文章

codeblocks快速注释多行

ctrlshiftc可以快速注释掉多行。 ctrlshiftx可以取消注释,才发现,哈哈真方便。

elasticsearch如何使用reindex迁移索引,完成分片的拆分

1、删除我的测试索引:old_index curl -X DELETE "http://hostname -i:9200/old_index" curl -X DELETE "http://hostname -i:9200/new_index"2、检查集群索引情况 $ curl -X GET "http://hostname -i:9200/_cat/indices?v" health…

Java面试题:线程池中常见的阻塞队列

线程池中常见的阻塞队列 workQueue:当没有空闲核心线程时,新来任务会加入此队列进行排队,队列满会创建救急线程执行任务 ArrayBlockingQueue: 基于数组结构的有界(容量固定)阻塞队列,FIFO 先进先出 提前初始化Node数组 提前创建Node 一把锁,同时只能进行入队和出队 Lin…

秋招突击——算法打卡——5/24——无重复字符的最长字串

题目描述 实现代码 // 无重复字符的最长子串 int lengthOfLongestSubstring(string s) {int l 0,r 0;int res 0;unordered_map<char,int> temp;while(l < s.size()){temp[s.at(l)] l;for (r l 1; r < s.size() ; r) {if(temp.count(s.at(r))) break;else te…

Golang:使用go-resty/resty发送http请求get和post

简单的 HTTP 和 REST 客户端&#xff0c;受到 Ruby rest-client 的启发 文档 https://github.com/go-resty/resty/ 安装 go get github.com/go-resty/resty/v2示例 1、发起GET请求 package mainimport ("fmt""strconv""time""github.…

pandas ExcelWriter写excel报错openpyxl.utils.exceptions.IllegalCharacterError

一直使用pandas写excel&#xff0c;本次写的数据有大字段&#xff0c;每次写到该字段就报错&#xff0c;代码如下&#xff1a; with pd.ExcelWriter(r".\提数_20240523\tq_type3_doc.xlsx", engineopenpyxl) as writer: df.to_excel(writer,indexFalse, sheet_namesh…

漫画|基于SprinBoot+vue的漫画网站(源码+数据库+文档)

漫画网站 目录 基于SprinBootvue的漫画网站 一、前言 二、系统设计 三、系统功能设计 1系统功能模块 2管理员功能模块 3用户功能模块 四、数据库设计 五、核心代码 六、论文参考 七、最新计算机毕设选题推荐 八、源码获取&#xff1a; 博主介绍&#xff1a;✌️大…

【Linux学习】进程间通信 (1) —— 管道

下面是有关进程通信中管道的相关介绍&#xff0c;希望对你有所帮助&#xff01; 小海编程心语录-CSDN博客 1. 进程通信的基本概念 1.1 概念 进程间通信简称 IPC &#xff0c;指两个进程之间的通信。 IPC的方式通常有管道&#xff08;包括无名管道和命名管道&#xff09;、消息…

python将矩阵转化为灰度图

1.python将矩阵转化为灰度图的方法 要将一个矩阵&#xff08;通常是一个二维数组&#xff0c;其中每个元素代表一个像素的灰度值&#xff09;转换为灰度图&#xff0c;我们可以使用Python的matplotlib库。下面是一个详细的步骤和完整的代码示例&#xff1a; &#xff08;1&am…

【Muduo】缓冲区Buffer类

在 Muduo 网络库中&#xff0c;Buffer类用于处理网络 I/O 中的数据缓冲。防止应用程序读写太快而网络链路收发速度慢导致的速度不匹配问题。这个类封装了一个内部缓冲区&#xff08;使用了vector<char>&#xff09;&#xff0c;并提供了一系列方法来操作这个缓冲区&#…

【Linux网络】端口及UDP

文章目录 1.再看四层2.端口号2.1引入linux端口号和进程pid的区别端口号是如何生成的传输层有了pid还设置端口号端口号划分 2.2问题2.3netstat 3.UDP协议3.0每学一个协议 都要讨论一下问题3.1UDP协议3.2谈udp/tcp实际上是在讨论什么&#xff1f; 1.再看四层 2.端口号 端口号(Po…

//TODO 注释的作用

// TODO 用来标记某处&#xff0c;表示该处含有待办事项&#xff08;尚未解决&#xff09;。其设计本意只是提醒开发者注意&#xff0c;除了代码高亮之外&#xff0c;还可以借助编辑器实现快速定位。 如何使用&#xff1f; 直接在双斜杠后面加 TODO 或者 todo 即可&#xff0c…

CVPR2022医疗图像-GBCNet网络:胆囊癌(GBC)超声(USG)图像检测模型

Surpassing the Human Accuracy:Detecting Gallbladder Cancer from USG Images with Curriculum Learning&#xff1a;超越人类的准确性:基于课程学习的USG图像检测胆囊癌 目录 一、背景与意义 二、介绍 三、网络框架 3.1 区域选择网络 3.2 MS-SoP分类器 3.3 多尺度块 …

抖音运营_抖音电商介绍

截止20年8月&#xff0c;抖音的日活跃数高达6亿。 20年6月&#xff0c;上线抖店 &#xff08;抖音官方电商&#xff09; 一 抖店的定位和特色 1 一站式经营 帮助商家进行 商品交易、店铺管理、客户服务 等全链路的生意经营 2 多渠道拓展 抖音、今日头条、西瓜、抖音火山版…

ASP+ACCESS基于WEB社区论坛设计与实现

摘要&#xff1a;系统主要实现BBS网站全部功能。采用目前应用最为广泛的ASP作为开发工具来开发此系统、以保证系统的稳定性。采用目前最为流行的网页制作工具Dreamweaver和目前最为流行的动画制作工具Flash MX。整个系统从符合操作简便、界面友好、灵活、实用、安全的要求出发&…

首次面试实习岗,有点紧张。。。

首次面试实习岗&#xff0c;有点紧张。。。 文章目录 首次面试实习岗&#xff0c;有点紧张。。。算法1.三角形问题2.一年中第几天问题 提问&#xff1a;一、SpringBoot的配置文件中的数据有哪几种获取方式&#xff0c;分别是怎么获取的&#xff1f;二、Autowire和Resource有什么…

卤菜销售|基于SSM+vue的智能卤菜销售平台的设计与实现(源码+数据库+文档)

智能卤菜销售平台 目录 基于SSM&#xff0b;vue的智能卤菜销售平台的设计与实现 一、前言 二、系统设计 三、系统功能设计 1系统功能模块 2管理员功能模块 3用户功能模块 4商家功能模块 四、数据库设计 五、核心代码 六、论文参考 七、最新计算机毕设选题推荐 八…

windows查看mysql的版本(三种方法)

方法一&#xff1a;在win r 打开 cmd&#xff0c;在cmd命令状态下&#xff1a;mysql --help 回车即可 方法二&#xff1a;在mysql客户端窗口状态下&#xff1a;输入status并回车即可 在计算机开始菜单搜索以上应用打开即可进入mysql客户端窗口。 方法三&#xff1a;在mys…

【必会面试题】Redis如何实现分布式锁?

目录 一、为什么要使用分布式锁&#xff1f;二、什么是分布式锁&#xff1f;三、什么是Redis分布式锁&#xff1f;四、如何实现Redis分布式锁&#xff1f;1. 基础方法&#xff1a;SETNX EXPIRE2. Lua 脚本3. Redisson 实现4. Redlock 算法 五、JavaRedis分布式锁1. 基于Jedis的…

pikachu-Unsafe Filedownload

任意点击一个图片进行下载&#xff0c;发现下载的url。 http://127.0.0.1/pikachu/vul/unsafedownload/execdownload.php?filenamekb.png 构造payload&#xff1a; 即可下载 当前页面的源码&#xff0c;可以进行路径穿越来下载一些重要的配置文件来获取信息。 http://127.0.…