MySQL scheduled task example tutorial

MySQL scheduled task example tutorial

Preface

Since MySQL 5.1.6, a very unique feature has been added - Event Scheduler, which can be used to perform certain specific tasks (such as deleting records, aggregating data, etc.) at a scheduled time to replace the work that could only be performed by the operating system's scheduled tasks. What is more worth mentioning is that MySQL's event scheduler can execute a task accurately to every second, while the operating system's scheduled tasks (such as CRON under Linux or task scheduling under Windows) can only be executed accurately to once per minute. It is very suitable for applications that have high requirements for real-time data (such as stocks, odds, scores, etc.).

This article will give you a detailed introduction about MySQL scheduled tasks and share it for your reference. Let's take a look at the detailed introduction.

mysql scheduled tasks

Application scenario: Automatically change the order status to received 15 days after delivery

Implementation method: MySQL event

1. Check whether the event is enabled. It is disabled by default. SHOW VARIABLES LIKE 'event_scheduler';

2. Enable event set global event_scheduler=on;

3. Create a function

Note the following parameters

4. Then just start it in your own code. It is usually enabled when shipping in the background (I also include the function of automatically canceling orders within 15 minutes)

Attached to close the scheduled task

alter event event_day_update ON COMPLETION PRESERVE DISABLE;

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. If you have any questions, you can leave a message to communicate. Thank you for your support for 123WORDPRESS.COM.

You may also be interested in:
  • How to configure MySQL scheduled tasks (EVENT events) in detail
  • MySQL scheduled task implementation and usage examples
  • Analysis of the method of setting up scheduled tasks in mysql
  • Detailed explanation of mysql scheduled tasks (event events)
  • How to implement Mysql scheduled task backup data under Linux
  • How to implement Mysql scheduled tasks under Linux
  • Analysis and solution of the reasons why MySQL scheduled tasks cannot be executed normally

<<:  Coexistence of python2 and python3 under centos7 system

>>:  JavaScript timer to achieve seamless scrolling of pictures

Recommend

MySQL 5.7.18 Installer installation download graphic tutorial

This article records the detailed installation tu...

Minimalistic website design examples

Web Application Class 1. DownForEveryoneOrJustMe ...

Vue implements Dialog encapsulation

Table of contents Vue2 Writing Vue3 plugin versio...

Solution to Docker's failure to release ports

Today I encountered a very strange situation. Aft...

MySQL character set viewing and modification tutorial

1. Check the character set 1. Check the MYSQL dat...

Explore how an LED can get you started with the Linux kernel

Table of contents Preface LED Trigger Start explo...

VMware + Ubuntu18.04 Graphic Tutorial on Building Hadoop Cluster Environment

Table of contents Preface VMware clone virtual ma...

Solution to the failure of entering the container due to full docker space

Since the problem occurred rather suddenly and th...

Detailed explanation of template tag usage (including summary of usage in Vue)

Table of contents 1. Template tag in HTML5 2. Pro...

27 Linux document editing commands worth collecting

Linux col command The Linux col command is used t...

A very detailed summary of communication between Vue components

Table of contents Preface 1. Props, $emit one-way...

Share JS four fun hacker background effect codes

Table of contents Example 1 Example 2 Example 3 E...

How to set up a shared folder on a vmware16 virtual machine

1. Set up a shared folder on the virtual machine:...