Home PC Games Linux Windows Database Network Programming Server Mobile  
           
  Home \ Database \ MySQL performance view and configure finishing Daquan     - Find details block device with Linux blkid command (Linux)

- How to modify the SQL Server auto-increment value and the corresponding solution (Database)

- Linux command binlog by filtering out the complete SQL statement (Database)

- Linux performance monitoring and common commands Introduction (Linux)

- Using Linux / Unix Text processing (Linux)

- Django Signals from practice to source code analysis (Programming)

- Mind mapping software installed in CentOS 7 in XMind (Linux)

- Linux / UNIX: Use the dd command to create a 1GB size binary (Linux)

- Linux usage in echo (Linux)

- Write perfect printf (Programming)

- Linux environment RabbitMQ installation and monitoring of plug-in installation (Linux)

- How to configure SNMPv3 on Ubuntu, CentOS and Cisco systems (Linux)

- Cacti monitoring service Nginx (Linux)

- Linux system performance monitoring with Nmon (Linux)

- CentOS 6.6 install rsync server (Server)

- init level settings for Linux / etc / inittab file into six (restart) or does not support the level of solution (Linux)

- LNMP Note: Addressing mail function can not send mail (Server)

- Linux Network Analysis Tcpdump Command Guide (Linux)

- Linux system Passwd file detailed analysis (Linux)

- Linux hybrid character device (Linux)

 
         
  MySQL performance view and configure finishing Daquan
     
  Add Date : 2018-11-21      
         
         
         
  MySQL database performance Views:
Show proceelist view the status of the database connection and the total number of connections
show globalstatus like 'Max_used_connections'; the high number of connections to view the largest database of response to the connection, the maximum number of connections less than 10% of the mysql
Show processlist View connection status
 showglobal status like 'Thread%'; see the process usage
show globalstatus like 'qcache%'; view cache usage
show statuslike 'key_read%' proportion key_reads / key_read_requests should be as low as possible, at least 1: 100 or 1: 1000
Table show statuslike "open%" view open database

Currently the database on the production line is generally occupied by a great memory, the main reason is because the database configuration file parameters misconfigured reasons, resulting in a large buffer space to read:
Related parameters can refer to the configuration:
Some important parameters of the database:
[Mysqld]
Skip-external-locking // skip the external lock for multiple processes under myisam data table Locking
Key_buffer_size = 384M // specified index buffer size, 4G memory index is generally 384M or 512M, for this configuration is generally worth using to view the status value key_read_request to check whether a reasonable ratio of 1: 100 and 1: 1000 or so.
table_open_cache = 2048 // mysql database table is going to be opened to read some data to table_open_cachede, and when mysql can not find the data in the database will be read to the database, you can reduce the file opening and closing times, the configuration is reasonable for the configuration of the number of general view of the number of open tables. Use show global status like 'open% _tables' open to view the number of tables making the settings is generally recommended to open_tables / opened_tables> = 0.85.
read_buffer_size = 2M // read size used in the query buffer. This parameter is only valid for myisam table
read_rnd_buffer_size = 8M // for all storage engines are limited
myisam_sort_buffer_size = 64M // rebuild the index of the maximum file size
thread_concurrency = 4 // worth this size is generally double the number of cpu core, this value is an important part of the configuration object 5.5 later this value is invalid
user = mysql
pid-file = /var/run/mysqld/mysqld.pid
socket = /var/run/mysqld/mysqld.sock
port = 3306
basedir = / usr
datadir = / var / lib / mysql
tmpdir = / tmp
lc_messages_dir = / usr / share / mysql
lc_messages = en_US
skip-name-resolve
lower_case_table_names // # ignores table name case
connect_timeout = 15 // default like
wait_timeout = 600 // default like
max_allowed_packet = 16M // default is 16M, but when it came to the large field of the message packet is too large to amend the problem, generally increased to 32M
thread_cache_size = 128 // cache to save the number of threads, memory 8G generally set to about 64 or 128, 3G is 16 to 32,2G
sort_buffer_size = 8M // when the reorder buffer 100 is connected consumes 0.8G memory
bulk_insert_buffer_size = 16M // bulk insert default 8M cache
tmp_table_size = 256 M // default to 32M
max_heap_table_size = 256M
query_cache_limit = 0 # do not use data cache, there is a need to use memcache general external cache, the default is 1M
query_cache_size = 0 # mysqlisam generally used for optimization, the proposed closure of this feature
log_bin = / var / log / mysql / mariadb-bin // note space log-bin storage
log_bin_index = /var/log/mysql/mariadb-bin.index
expire_logs_days = 10 // store log-bin period of time
max_binlog_size = 100M // maximum binlog size, not to be set
innodb_buffer_pool_size = 16384M // generally configured as a 50% -80% of system memory
innodb_log_buffer_size = 32M // log file to determine the memory used
innodb_file_per_table = 1
innodb_open_files = 400
innodb_io_capacity = 400
innodb_flush_method = O_DIRECT
innodb_log_file_size = 512M // determine the size of data files, a large installation can improve performance but also increases recovery time of the failed database needed
 
In innode configuration of two parameters are important and innodb_log_file_size innodb_buffer_pool_size
In official documents mysql's generally recommended to configure innodb_buffer_pool_sixe about 50% to 80% memory
show status like 'Innodb_buffer_pool_%'; View innode performance
 
 
[Mysqldump]
quick // in exporting large table when the need to open, usually after backup 20G, do not use the form mydqldump
     
         
         
         
  More:      
 
- Lambda expressions of evolution (Programming)
- Oracle 11g maintenance partitions (Seven) - Modifying Real Attributes of Partitions (Database)
- The difference between free command displays the buffers and cache (Linux)
- Python interview must look at 15 questions (Programming)
- Raspberry Pi configuration wireless hotspot (Linux)
- Java interview questions in nine radio (Programming)
- Four levels to deal with Linux server attacks (Linux)
- CentOS 6.5 / Linux restart network card being given Determining if ip address x.x.x.x is already in use (Linux)
- Oracle large table to clean truncate .. reuse storage (Database)
- Python programming style (Programming)
- Java memory area and memory overflow exception (Programming)
- Oracle database NUMBER (x, y) data types (Database)
- Java exception handling mechanism (Programming)
- Erase do with HTML5 Canvas and diffusion effect (Programming)
- Use Oracle 11g show spparameter command (Database)
- Python Basics Tutorial - lambda keyword (Programming)
- Simple to use Linux GPG (Linux)
- Linux system with a firewall to prevent the DOS attack (Linux)
- Getting CentOS Learning Notes (Linux)
- Oracle user password problem (Database)
     
           
     
  CopyRight 2002-2022 newfreesoft.com, All Rights Reserved.