MyISAM and InnoDB are the most common storage engines for MySQL. In the previous article, we talked about the difference between InnoDB and MyISAM. Since MyISAM does not support transactions, when we need to use a robust transactional storage engine, InnoDB must be the best choice. Innodb achieves high concurrency through multi-version concurrency control (MVCC) and implements four SQL standard isolation levels, with the default being the How to set InnoDB as the default engine:
InnoDB common configuration parameters: #InnoDB stores the data dictionary and internal data structure buffer pool. 16MB is large enough. innodb_additional_mem_pool_size = 16M #InnoDB is used to cache data, indexes, locks, insert buffers, data dictionaries, etc. #If it is a dedicated DB server and the InnoDB engine is the main scenario, you can usually set it to 50% of physical memory #If it is a non-dedicated DB server, you can try to set it to 1/4 of the memory first, and adjust it if there is a problem. #The default value is 8M, which is very bad. This is also the reason why many people think that InnoDB is not as good as MyISAM. innodb_buffer_pool_size = 4G #InnoDB shared tablespace initialization size, the default is 10MB, which is also very tricky, change it to 1GB, and automatically extend innodb_data_file_path = ibdata1:1G:autoextend #If you don't understand this option, it is recommended to set it to 1, which can better protect data reliability and have a certain impact on performance, but it is controllable innodb_flush_log_at_trx_commit = 1 #InnoDB log buffer, usually set to 64MB is sufficient innodb_log_buffer_size = 64M #InnoDB redo log size, usually 256MB is enough innodb_log_file_size = 256M #InnoDB redo log file group, usually setting it to 2 is enough innodb_log_files_in_group = 2 #Enable InnoDB's independent tablespace mode for easy management innodb_file_per_table = 1 # Enable InnoDB's status file for administrators to view and monitor, etc. innodb_status_file = 1 #Set the transaction isolation level to READ-COMMITTED to improve transaction efficiency. Usually, transaction consistency requirements are met. transaction_isolation = READ-COMMITTED Other configuration options are also worth noting: #Set the maximum number of concurrent connections. If the front-end program is PHP, you can increase it appropriately, but not too much. #If the front-end program uses a connection pool, you can adjust it down appropriately to avoid too many connections max_connections = 60 #The maximum number of connection errors can be increased appropriately to prevent the front-end host from being rejected by mysql after frequent connection errors max_connect_errors = 100000 #Set the slow query threshold. It is recommended to set the minimum value to 1 second long_query_time = 1 #Set the maximum value of the temporary table. This will be allocated for each connection. It is not advisable to set it too large. max_heap_table_size and tmp_table_size should be set to the same size max_heap_table_size = 96M tmp_table_size = 96M #Each connection will allocate some sorting, connection and other buffers, generally set to 2MB is enough sort_buffer_size = 2M join_buffer_size = 2M read_buffer_size = 2M read_rnd_buffer_size = 2M #It is recommended to turn off the query cache, which may harm performance. query_cache_size = 0 #If the main DB is InnoDB, the key_buffer_size for MyISAM can be set smaller. 8MB is enough. #If the main DB is MyISAM, it can be set larger, but not more than 4G #Here, it is strongly recommended not to use the MyISAM engine. The default is to use the InnoDB engine key_buffer_size = 8M #Set the connection timeout threshold. If the front-end program uses a short connection, it is recommended to shorten these two values. #If the front-end program uses a long connection, you can directly comment out these two options and use the default configuration (8 hours) interactive_timeout = 120 wait_timeout = 120 Several suggestions on InnoDB engine data table design:
InnoDB Lock Types The InnoDB storage engine implements the following two standard row-level locks
Compatibility of shared locks and exclusive locks Notice: (1) Both S locks and X locks are row locks. Compatibility refers to the compatibility of locks on the same record (row). (2) Transaction T1 has already obtained a shared lock on row R. Another transaction T2 can immediately obtain a shared lock on row R. This situation is called lock compatibility. If transaction T3 wants to obtain an exclusive lock on row R, it must wait for transactions T1 and T2 to release the shared lock on row R. This situation becomes lock incompatibility. Summarize The above is the full content of this article. I hope that the content of this article will have certain reference learning value for your study or work. Thank you for your support of 123WORDPRESS.COM. If you want to learn more about this, please check out the following links You may also be interested in:
|
<<: React implements dynamic pop-up window component
>>: Implementing a simple calculator based on JavaScript
As a tester, you may often need to install some s...
These specifications are designed to allow for bac...
There are significant differences between centos7...
drop procedure sp_name// Before this, I have told...
What is a tree in web design? Simply put, clicking...
Since I started working on Vulhub in 2017, I have...
Table of contents Object parameters using destruc...
When you send a network request, the following sa...
1. Prepare data The following operations will be ...
Table of contents VMware BurpSuite 1. Virtual mac...
XHTML Headings Overview When we write Word docume...
Sometimes we need to import some data from anothe...
Location means "positioning", which is ...
When you write buttons (input, button), you will f...
Lock classification: From the granularity of data...