Introduction to MySQL logical architecture Overview Compared to other databases, MySQL is a bit different in that its architecture can be applied in a variety of different scenarios and work well. This is mainly reflected in the storage engine architecture. The plug-in storage engine architecture separates query processing from other system tasks and data storage and extraction. This architecture allows you to select the appropriate storage engine based on business needs and actual requirements. Controller layer: The business logic is processed into: Pluggable storage engine File storage layer computer hardware 1. Connection layer The top layer is a number of clients and connection services, including local sock communication and most of the client/server-based tools to achieve similar TCP/IP communication. It mainly completes some tasks such as connection processing, authorization authentication, and related security solutions. The concept of thread pool is introduced at this layer to provide threads for clients that have accessed securely through authentication. SSL-based secure links can also be implemented at this layer. The server will also verify the operation permissions of each client that securely accesses it. 2. Service Layer 2.1 Management Services & Utilities: System management and control tools 2.2 SQL Interface: The SQL interface accepts the user's SQL commands and returns the results that the user needs to query. For example, select from calls the SQL Interface 2.3 Parser: Parser 2.4 Optimizer: Query optimizer. 2.5 Cache and Buffer: Query cache. 3. Engine layer Storage engine layer: The storage engine is actually responsible for the storage and extraction of data in MySQL. The server communicates with the storage engine through the API. Different storage engines have different functions, so we can choose according to our actual needs. MyISAM and InnoDB will be introduced later 4. Storage Layer The data storage layer mainly stores data on the file system running on the raw device and completes the interaction with the storage engine. General Overview Query flow chart: First of all, the query process of MySQL is roughly as follows:
mysql storage engine View Commands 1 How to view with command See what storage engine your MySQL currently provides: mysql> show engines; InnoDB default, supports transactions, foreign keys, and row locks Check your mysql's current default storage engine: mysql> show variables like '%storage_engine%'; The default is InnoDB Introduction to each engine 1. InnoDB storage engine InnoDB is the default transaction engine for MySQL, which is designed to handle a large number of short-lived transactions. Unless there is a very special reason to use another storage engine, the InnoDB engine should be given priority. Row-level locks, suitable for high concurrency situations 2. MyISAM storage engine MyISAM provides a large number of features, including full-text indexing, compression, spatial functions (GIS), etc., but MyISAM does not support transactions and row-level locks (MyISAM will lock the entire table when modifying the table). One undoubted flaw is that it cannot be safely recovered after a crash. 3. Archive Engine The Archive storage engine only supports INSERT and SELECT operations and does not support indexes before MySQL 5.1. 4. Blackhole Engine The Blackhole engine does not implement any storage mechanism. It discards all inserted data without saving any data. However, the server will record the logs of the Blackhole table, so it can be used to copy data to the backup database, or simply record it in the log. However, this application method will encounter many problems and is therefore not recommended. 5. CSV Engine The CSV engine can process ordinary CSV files as MySQL tables, but does not support indexes. 6. Memory Engine If you need to access data quickly, and the data will not be modified and will not be lost after a restart, then using a Memory table is very useful. Memory tables are at least an order of magnitude faster than MyISAM tables. (It is faster to use a professional memory database, such as redis) 7. Federated Engine The Federated engine is a proxy for accessing other MySQL servers. Although this engine appears to provide a good flexibility across servers, it also often causes problems, so it is disabled by default. MyISAM and InnoDB (Key Points)
InnoDB index uses B+TREE MyISAM index uses b-tree Which one should I use for Alibaba or Taobao? • Percona has made improvements to the MySQL database server, which has significant improvements in functionality and performance over MySQL. This version improves the performance of InnoDB under high load conditions, provides some very useful performance diagnostic tools for DBAs, and has more parameters and commands to control server behavior. •The company has created a new storage engine called XtraDB, which can completely replace InnoDB and has better performance and concurrency. •Most of Alibaba's MySQL databases are actually modified from the Percona prototype. The above is the introduction of Mysql logical architecture and the detailed integration of MySQL storage engine introduced by the editor. I hope it will be helpful to everyone. If you have any questions, please leave me a message and the editor will reply to you in time. I would also like to thank everyone for their support of the 123WORDPRESS.COM website! You may also be interested in:
|
<<: Detailed explanation of whereis example to find a specific program in Linux
>>: Vue local component data sharing Vue.observable() usage
Table of contents Solution: 1. IGNORE 2. REPLACE ...
CSS CodeCopy content to clipboard .bottomTable{ b...
Physically speaking, an InnoDB table consists of ...
This article describes MySQL multi-table query wi...
Preface Linux groups are organizational units use...
Table of contents background LIMIT Optimization O...
When using the docker-maven-plugin plug-in, Maven...
This article example shares the specific code of ...
Table of contents Create a new html file: Create ...
Record the installation and configuration method ...
This article shares with you two methods of setti...
A process is a program code that runs in the CPU ...
Cascading and Cascading Levels HTML elements are ...
Currently implemented are basic usage, clearable,...
Occasionally you'll see characters such as ...