How to solve the high concurrency problem in MySQL database

How to solve the high concurrency problem in MySQL database

Preface

We all know that startups initially use monolithic applications as their primary architecture, usually in the form of a single monolithic database. However, with the iteration of versions, the database needs to withstand more high concurrency, which has become a point that needs to be considered in architectural design.

So to solve the problem, we have to talk about solutions. But there are many options, how should we choose?

Optimization and solutions

Basically, our optimization should start with several keywords: short distance, less data, and dispersed pressure.

Short distance

The so-called short distance means that the path from the front end to the database should be short.

  1. Page static. The data of some pages remains unchanged during certain periods of time, so this page can be made static, which can increase the access speed.
  2. Use cache. Everyone knows about cache, and the reason it is fast is that it is based on memory. Therefore, using memory-based cache can reduce access to the database and speed up access.
  3. Batch read. In high concurrency situations, multiple queries can be combined and run at once to reduce the speed of accessing the database.
  4. Delayed modification. Delayed modification means that in high concurrency situations, the data that has been modified multiple times may be placed in the cache, and then the data in the cache may be updated to the database periodically; or it may be asynchronously synchronized to the database through parsing through the cache synchronization strategy.
  5. Use an index. Needless to say, there are many types of indexes, such as normal index/primary key index/combined index/full-text index, etc.

Less data

The so-called less data actually means less data to be queried.

  1. Sub-table. The so-called table segmentation actually includes horizontal segmentation and vertical splitting. Friends who have played stand-alone games know that some historical forms often contain hundreds of millions of data. In this case, for MySQL, even if indexes are added and SQL is further optimized, it is difficult to achieve faster query speeds. Then we can achieve this through the operation of sub-table. For example, the most common method is to split the table horizontally based on the time dimension, keeping this year's data and storing last year's data in another table.
  2. Separate active data. In fact, this is a bit like caching, but the difference is that the data is still on MySQL. For example, in a product query business, there can be an active table for some popular/frequently searched products. When querying, query the active table first, and if not found, query the total product table.
  3. Chunking. This block division is somewhat similar to the "index sequential search" in the algorithm. Through data-level optimization, the data is placed in different blocks, and we only need to calculate and find the corresponding blocks.

Distribute pressure

The so-called pressure distribution actually means distributing the pressure of different database servers.

  1. Cluster. I believe everyone is clear about the concept of cluster. For business servers, it actually means deploying multiple servers with the same business process, and distributing requests to different servers through load balancing or other methods. The same goes for databases, which direct data to specific database servers through specific rule strategies.
  2. distributed. The so-called distribution actually means allocating the business logic originally in the same process to different servers for execution, achieving the effect of "concurrent" execution and speeding up the execution.
  3. Divide the database and tables. The main methods of database and table sharding are horizontal and vertical sharding. For a single table with high access frequency and huge data volume, you can reduce the data in the single table and split it horizontally according to specific dimensions to increase the database throughput. This is horizontal splitting of the table. For multiple tables with low business coupling, different tables can be stored in different databases, and the database can be split vertically to improve the database write capability. This is vertical splitting of the database.
  4. Establish master-slave relationship. The purpose of establishing a master-slave relationship is actually to separate reading and writing. We all know that as long as the transaction level of the database is high enough, concurrent reading will not cause data confusion, but concurrent writing will. So when setting up a master-slave server, generally speaking, writes will be written on the master server, and reads will be made on the slave server. So basically let the master server do the transactional operations and the slave server do the select queries. In this way, changes caused by transactional operations (add/delete/modify) are synchronized to the slave databases in the cluster.

Conclusion

The above is the details of how MySQL handles high concurrency. For more information about MySQL high concurrency, please pay attention to other related articles on 123WORDPRESS.COM!

You may also be interested in:
  • MySQL Series 10 MySQL Transaction Isolation to Implement Concurrency Control
  • Detailed explanation of MySQL multi-version concurrency control mechanism (MVCC) source code
  • Implementation of MySQL's MVCC multi-version concurrency control
  • MySQL high concurrency method to generate unique order number
  • MySQL lock control concurrency method
  • Mysql transaction concurrency problem solution
  • MySQL concurrency control principle knowledge points
  • Implementation of MySQL multi-version concurrency control MVCC
  • How to handle concurrent updates of MySQL data
  • Tomcat+Mysql high concurrency configuration optimization explanation
  • How does MySQL achieve multi-version concurrency?

<<:  Detailed explanation of Docker's most commonly used image commands and container commands

>>:  Vue uses echart to customize labels and colors

Recommend

Detailed explanation of Vue's live broadcast function

Recently, the company happened to be doing live b...

HTML+CSS div solution when relative width and absolute width conflict

Div solution when relative width and absolute wid...

Implementation of MySQL GRANT user authorization

Authorization is to grant certain permissions to ...

Example of using UserMap in IMG

usemap is an attribute of the <img> tag, use...

JavaScript code to implement a simple calculator

This article example shares the specific code of ...

Create an SSL certificate that can be used in nginx and IIS

Table of contents Creating an SSL Certificate 1. ...

Design Reference Beautiful and Original Blog Design

All blogs listed below are original and uniquely ...

MySQL 8.0.25 installation and configuration tutorial under Linux

The latest tutorial for installing MySQL 8.0.25 o...

Element dynamic routing breadcrumbs implementation example

To master: localStorage, component encapsulation ...

Public free STUN servers

Public free STUN servers When the SIP terminal us...

In-depth understanding of Linux load balancing LVS

Table of contents 1. LVS load balancing 2. Basic ...

Tutorial on resetting the root password of Mac MySQL

Disclaimer: This password reset method can direct...