Analysis and summary of the impact of MySQL transactions on efficiency

Analysis and summary of the impact of MySQL transactions on efficiency

1. Database transactions will reduce database performance. In order to ensure data consistency and isolation, transactions need to lock transactions.

2. If other transactions need to operate this part of data, they must wait for the last transaction to end (commit, rollback).

Examples

create table acct(
    acct_no varchar(32),
    acct_name varchar(32),
    balance decimal(16,2)
);
 
insert into acct values
    ('0001','Jerry', 1000),
    ('0002','Tom', 2000);
 
start transaction; -- Start transaction update acct set balance = balance - 100 where acct_no = '0001'; -- Simulate the deductor update acct set balance = balance + 100 where acct_no = '0002'; -- Simulate the payee commit; -- Transaction commit rollback; -- Transaction rollback

Knowledge point expansion:

Transactions

  • Atomicity: All operations of the entire transaction are either successfully committed or rolled back if they fail.
  • Consistency: refers to the transaction converting the database from one consistent state to another consistent state, and the integrity of the database is not destroyed before and after the transaction starts.
  • Isolation: requires that a transaction modify data in the database and that the modification is not visible to other transactions until it is completed.
  • Persistence: Once a transaction is committed, the changes it makes are permanently saved to the database. At this point, even if the system crashes, the modified data that has been submitted will not be lost.

Big Business

Transactions that take a long time to run and operate on a large amount of data

  • Locking too much data, causing a lot of blocking and lock timeouts
  • Rollback takes a long time
  • Long execution time, which may cause master-slave delay

How to handle big transactions:

  • Avoid processing too much data at once
  • Remove unnecessary select operations from transactions

This concludes this article on the impact of MySQL transactions on efficiency. For more information on the impact of MySQL transactions on efficiency, please search for previous articles on 123WORDPRESS.COM or continue to browse the following related articles. I hope you will support 123WORDPRESS.COM in the future!

You may also be interested in:
  • How to implement distributed transactions in MySQL XA
  • Implementation of Node connection to MySQL query transaction processing
  • MySQL database transaction example tutorial
  • Seven solutions for classic distributed transactions between MySQL and Golan
  • MySQL transaction isolation level details
  • Detailed explanation of transactions and indexes in MySQL database
  • MySQL transaction analysis

<<:  Vue3+Vite+TS implements secondary encapsulation of element-plus business components sfasga

>>:  HTML table layout example explanation

Recommend

Tutorial on building nextcloud personal network disk with Docker

Table of contents 1. Introduction 2. Deployment E...

How to analyze SQL execution plan in MySQL through EXPLAIN

Preface In MySQL, we can use the EXPLAIN command ...

How to view and optimize MySql indexes

MySQL supports hash and btree indexes. InnoDB and...

What codes should I master when learning web page design?

This article introduces in detail some of the tech...

HTML multimedia application: inserting flash animation and music into web pages

1. Application of multimedia in HTML_falsh animat...

How to install MySQL via SSH on a CentOS VPS

Type yum install mysql-server Press Y to continue...

Methods and steps for deploying multiple war packages in Tomcat

1 Background JDK1.8-u181 and Tomcat8.5.53 were in...

How to achieve centered layout in CSS layout

1. Set the parent container to a table and the ch...

Django2.* + Mysql5.7 development environment integration tutorial diagram

environment: MAC_OS 10.12 Python 3.6 mysql 5.7.25...

Solution to Tomcat server failing to open tomcat7w.exe

I encountered a little problem when configuring t...

Node+Express test server performance

Table of contents 1 Test Environment 1.1 Server H...

JavaScript custom plug-in to implement tab switching function

This article shares the specific code of JavaScri...