How to configure MySQL scheduled tasks (EVENT events) in detail

How to configure MySQL scheduled tasks (EVENT events) in detail

1. What is an event?

Since MySQL 5.1.6 , a very unique feature has been added -事件調度器Scheduler, which can be used to perform certain specific tasks (such as deleting records, data statistics reports, data backup, etc.) at a scheduled time to replace the work that could only be performed by the operating system's scheduled tasks.
It is worth mentioning that MySQL's event scheduler can execute a task accurately to every second, while the operating system's scheduled tasks (such as Linux's cron) can only be executed accurately to once a minute. It is very suitable for applications that have high requirements for real-time data (such as stocks, odds, scores, etc.).

Events are sometimes also called temporary triggers, because the event scheduler is triggered based on a specific time period to perform certain tasks, while triggers are triggered based on events generated by a certain table. This is the difference.

2. Enable the "Event" function

Before using the "Event" function, you must ensure that event_scheduler is enabled

1. Check whether the function is enabled:

-- Method 1 SELECT @@event_scheduler;
-- Method 2 SHOW VARIABLES LIKE 'event%';

If "ON" is displayed, it means the function has been turned on; as shown below:

mysql> SELECT @@event_scheduler;
+-------------------+
| @@event_scheduler |
+-------------------+
| ON |
+-------------------+
1 row in set (0.00 sec)

mysql> SHOW VARIABLES LIKE 'event%';
+-----------------+-------+
| Variable_name | Value |
+-----------------+-------+
| event_scheduler | ON |
+-----------------+-------+
1 row in set (0.00 sec)

2. Enable and disable function commands:

-- Enable function command:
SET GLOBAL event_scheduler = 1;
SET GLOBAL event_scheduler = ON;
-- Disable function command:
SET GLOBAL event_scheduler = 0;
SET GLOBAL event_scheduler = OFF;

Of course, it will be automatically closed when the database is restarted by opening the command;

持久化開啟方式: Write event_scheduler=1 to the my.cnf configuration file; as shown below:

insert image description here

Commonly used event operation commands:

  • Turn off the specified event: ALTER EVENT event name ON COMPLETION PRESERVE DISABLE;
  • Enable the specified event: ALTER EVENT event name ON COMPLETION PRESERVE ENABLE;
  • View current events: SHOW EVENTS ;

3. Event - SQL syntax creation

Below is the EVENT event creation statement. At first glance, it is quite complicated. Let's break it down and interpret it.

CREATE EVENT [IFNOT EXISTS] event_name
   ON SCHEDULE schedule (scheduling time setting)
   [ON COMPLETION [NOT] PRESERVE]
   [ENABLE | DISABLE | DISABLE ON SLAVE]
   [COMMENT 'comment']
   DO sql_statement;

SQL Syntax illustrate
DEFINER Optional, give specified users permission
IF NOT EXISTS Optional, used to determine whether the event to be created exists
EVENT event_name Required. Specifies the event name. The maximum length of event_name is 64 characters. If event_name is not specified, it defaults to the current MySQL user name (case-insensitive).
ON SCHEDULE schedule Required. The schedule here is used to define the execution time and time interval. We will explain it in detail below.
ON COMPLETION [NOT] PRESERVE Optional, configure the processing method after the event is executed once;
When on completion preserve is used, when the event expires, the event will be disabled, but the event will still exist. When on completion not preserve is used, when the event expires, the event will be automatically deleted.
ENABLE, DISABLE, DISABLE ON SLAVE Optional, used to specify an attribute of the event.
ENABLE means that the event is enabled, that is, the scheduler checks whether the event must be called;
DISABLE means that the event is disabled, that is, the event declaration is stored in the directory, but the scheduler does not check whether it should be called;
DISABLE ON SLAVE indicates that the event is disabled in the slave. If you do not specify any of these three selections, an event becomes active immediately after it is created.
COMMENT 'comment' Optional, used to define comments for the event
DO event_body Required, used to specify the code to be executed when the event is triggered. Can be any valid SQL statement, stored procedure, or an event that is scheduled to be executed. If it contains multiple statements, you can use the BEGIN...END compound structure

schedule time configuration syntax: Schedule time configuration includes AT and EVERY

AT timestamp [+ INTERVAL interval] ...
 | EVERY interval
 [STARTS timestamp [+ INTERVAL interval] ...]
 [ENDS timestamp [+ INTERVAL interval] ...]


-- The time units included in INTERVAL are as follows:
{YEAR | QUARTER | MONTH | DAY | HOUR | MINUTE |
 WEEK | SECOND | YEAR_MONTH | DAY_HOUR | DAY_MINUTE |
 DAY_SECOND | HOUR_MINUTE | HOUR_SECOND | MINUTE_SECOND}

1. Create - Single scheduled execution event

AT TIMESTAMP time string [+ INTERVAL INTERVAL]

AT TIMESTAMP means that the event is executed only once. TIMESTAMP represents a specific time point, which can be followed by a time interval to indicate that the event occurs after this time interval. [+ INTERVAL INTERVAL] indicates the delay trigger time;

It should be noted that TIMESTAMP is used together with a specific string. If it is not a specific string (such as CURRENT_TIMESTAMP to get the current time, etc.), TIMESTAMP is not added;

Example 1: Insert a row of data into the demo_1119 table. Execution time: 2020-11-20 00:00:00

CREATE EVENT demo_event2 
ON SCHEDULE AT TIMESTAMP '2020-11-20 00:00:00' 
DO INSERT INTO `demo_1119` (`id`, `name`, `createTime`) VALUES (null, '陈哈哈', NOW())

Result query:

mysql> select * from demo_1119;
+-----+-----------+---------------------+
| id | name | createTime |
+-----+-----------+---------------------+
| 145 | Chen Haha | 2020-11-20 00:00:00 |
+-----+-----------+---------------------+
9 rows in set (0.00 sec)

Example 2: Insert a row of data into the demo_1119 table, execution time: 5 hours after the current time;

CREATE EVENT demo_event2 
ON SCHEDULE AT CURRENT_TIMESTAMP + INTERVAL 5 HOUR
DO INSERT INTO `demo_1119` (`id`, `name`, `createTime`) VALUES (null, '陈哈哈', NOW())

2. Create - Loop Timed Execution Event

EVERY INTERVAL [STARTS TIMESTAMP] [ENDS TIMESTAMP]

EVERY表示循環執行該事件, where the STARTS clause is used to specify the start time; ENDS clause is used to specify the end time.

Example 1: From now on, insert a row of data into the demo_1119 table every 10 seconds

CREATE EVENT demo_event3 
ON SCHEDULE EVERY 10 SECOND 
ON COMPLETION PRESERVE 
DO INSERT INTO `demo_1119` (`id`, `name`, `createTime`) VALUES (null, '陈哈哈', NOW())
mysql> select * from demo_1119;
+-----+-----------+---------------------+
| id | name | createTime |
+-----+-----------+---------------------+
| 145 | Chen Haha | 2020-11-19 11:10:39 |
| 146 | Chen Haha | 2020-11-19 11:10:49 |
| 147 | Chen Haha | 2020-11-20 11:10:59 |
| 148 | Chen Haha | 2020-11-20 11:11:09 |
| 149 | Chen Haha | 2020-11-20 11:11:19 |
| 150 | Chen Haha | 2020-11-20 11:11:29 |
| 151 | Chen Haha | 2020-11-20 11:11:39 |
+-----+-----------+---------------------+
9 rows in set (0.00 sec)

Example 2: Starting from 2020-11-20 12:00:00, insert a row of data into the demo_1119 table every 10 minutes

CREATE EVENT demo_event4 
ON SCHEDULE EVERY 10 MINUTE STARTS '2020-11-20 12:00:00' 
ON COMPLETION PRESERVE 
DO INSERT INTO `demo_1119` (`id`, `name`, `createTime`) VALUES (null, '陈哈哈', NOW())
mysql> select * from demo_1119;
+-----+-----------+---------------------+
| id | name | createTime |
+-----+-----------+---------------------+
| 152 | Chen Haha | 2020-11-20 12:00:00 |
| 153 | Chen Haha | 2020-11-20 12:10:00 |
| 154 | Chen Haha | 2020-11-20 12:20:00 |
| 155 | Chen Haha | 2020-11-20 12:30:00 |
| 156 | Chen Haha | 2020-11-20 12:40:00 |
+-----+-----------+---------------------+
5 rows in set (0.00 sec)

Example 3: Starting one hour after the current time, insert a row of data into the demo_1119 table every 10 minutes; it has been tested and is available, so I will not post redundant query data~

CREATE EVENT demo_event5 
ON SCHEDULE EVERY 10 MINUTE STARTS CURRENT_TIMESTAMP+INTERVAL 1 HOUR 
ON COMPLETION PRESERVE 
DO INSERT INTO `demo_1119` (`id`, `name`, `createTime`) VALUES (null, '陈哈哈', NOW())

Example 4: Starting one day from the current time, insert a row of data into the demo_1119 table every hour, and end after three days

CREATE EVENT demo_event5 
ON SCHEDULE EVERY 1 HOUR 
STARTS CURRENT_TIMESTAMP+INTERVAL 1 DAY 
ENDS CURRENT_TIMESTAMP+INTERVAL 3 DAY 
ON COMPLETION PRESERVE 
DO INSERT INTO `demo_1119` (`id`, `name`, `createTime`) VALUES (null, '陈哈哈', NOW())

Example 5: Clear the data in the demo_1119 table at 0:00 every day

CREATE EVENT demo_event5 
ON SCHEDULE EVERY 1 DAY STARTS '2020-11-20 00:00:00' 
ON COMPLETION PRESERVE 
DO TRUNCATE table `demo_1119`

3. Modify events

The modify event statement is exactly the same as the create statement, the syntax is as follows:

ALTER EVENT event_name
   [ONSCHEDULE schedule]
   [old_NAME TO new_NAME]
   [ON COMPLETION [NOT] PRESERVE]
   [COMMENT 'comment']
   [ENABLE | DISABLE]
   [DO sql_statement]

Turn off the event task: ALTER EVENT event name ON COMPLETION PRESERVE DISABLE;

Enable event task: ALTER EVENT event name ON COMPLETION PRESERVE ENABLE;

4. Delete events

DROP EVENT [IF EXISTS] event_name

4. Events - Create with Navicat (Recommended)

Many people like to type SQL statements on the command line, which gives them a sense of professionalism, but they may also be morally kidnapped by their leaders~~

Just like some leaders think that it is cool and impressive for their employees to use Google, but it is low to use Baidu to search for csdn. But as a newbie, I still like to use my Navicat gadget and Baidu. Okay, without further ado, let's take a look at how Navicat creates EVENT events, GO!

As shown below, right click to create a new event

insert image description here

定義column in the create event is used to write the execution SQL, which can include one or more SQL statements, stored procedures, etc.計劃column is used to define the event trigger time. As shown below, I defined an insert statement during execution.

insert image description here

Of course, you can also write multiple SQL statements at the same time with semicolons in between. Start with BEGIN and end with END.

insert image description here

Open the plan column, doesn’t it feel familiar? We have seen this in the previous module. In order to help our friends have a deeper impression, let’s review it.

insert image description here

Parameter Description:

AT : Indicates that the event is executed only once. You can set a specific time, or you can use CURRENT_TIMESTAMP to represent the current time, followed by a time interval , which indicates how long after this time the event will occur, indicating the delayed trigger time.

  • EVERY : Execute the event repeatedly, where STARTS clause is used to specify the start time;
  • The ENDS clause is used to specify the end time.
  • interval :表示從現在開始時間延遲多久以后的一個時間點. Its value consists of a number and a unit. For example, use "4 WEEK" to indicate 4 weeks from now; use "'1:10' HOUR_MINUTE" to indicate 1 hour and 10 minutes from now. The interval distance is determined by the DATE_ADD() function.

The time units included in INTERVAL are as follows:

YEAR | QUARTER | MONTH | DAY | HOUR | MINUTE | WEEK | SECOND |
YEAR_MONTH | DAY_HOUR | DAY_MINUTE |
DAY_SECOND | HOUR_MINUTE | HOUR_SECOND | MINUTE_SECOND

Okay, let's use some examples to make it more memorable: Example 1: Insert a row of data into the demo_1119 table, execution time: 2020-11-20 00:00:00

insert image description here Example

2: Insert a row of data into the demo_1119 table, execution time: 5 hours after the current time;

insert image description here

Example 3: From now on, insert a row of data into the demo_1119 table every 10 seconds

insert image description here

Example 4: Starting from 2020-11-20 12:00:00, insert a row of data into the demo_1119 table every 10 minutes

insert image description here

Example 5: Starting one hour after the current time, insert a row of data into the demo_1119 table every 10 minutes;

insert image description here

Example 6: Starting one day from the current time, insert a row of data into the demo_1119 table every hour, and end after three days

insert image description here

Example 7: Clear the data in the demo_1119 table at 0:00 every day

insert image description here

This is the end of this article on how to configure MySQL scheduled tasks (EVENT events). For more relevant MySQL scheduled tasks, please search for previous articles on 123WORDPRESS.COM or continue to browse the following related articles. I hope everyone will support 123WORDPRESS.COM in the future!

You may also be interested in:
  • Getting Started Guide for MySQL Stored Procedures, Triggers, and Event Schedulers
  • MySQL database triggers from beginner to proficient
  • Detailed explanation of MySQL trigger trigger example
  • Introduction to the use and advantages and disadvantages of MySQL triggers
  • Detailed explanation of the idea of ​​MySQL trigger detecting a statement in real time for backup and deletion
  • MySQL uses events to complete scheduled tasks
  • Take you to understand the event scheduler EVENT in MySQL
  • Analysis of MySQL's planned tasks and event scheduling examples
  • MySQL events and triggers topic refinement

<<:  Detailed explanation of the principle and function of Vue list rendering key

>>:  W3C Tutorial (6): W3C CSS Activities

Recommend

An article to master MySQL index query optimization skills

Preface This article summarizes some common MySQL...

mysql method to view the currently used configuration file my.cnf (recommended)

my.cnf is the configuration file loaded when MySQ...

Specific method of viewing user authorization information in mysql

Specific method: 1. Open Command Prompt 2. Enter ...

N ways to achieve two-column layout with CSS

1. What is a two-column layout? There are two typ...

Example of Form action and onSubmit

First: action is an attribute of form. HTML5 has d...

Sample code for a large drop-down menu implemented in pure CSS

This is a large drop-down menu implemented purely...

Use Nginx to build a streaming media server to realize live broadcast function

Written in front In recent years, the live stream...

Summary of Mysql-connector-java driver version issues

Mysql-connector-java driver version problem Since...

mysql 8.0.19 win10 quick installation tutorial

This tutorial shares the installation tutorial of...

Example of how to change the line spacing of HTML table

When using HTML tables, we sometimes need to chan...

Some notes on mysql self-join deduplication

Let me briefly explain the functional scenario: T...

How to use html table (to show the visual effect of web page)

We know that when using HTML on NetEase Blog, we ...

Detailed tutorial on installing the jenkins container in a docker environment

Recommended Docker learning materials: https://ww...