Use of MySQL query rewrite plugin

Use of MySQL query rewrite plugin

Query Rewrite Plugin

As of MySQL 5.7.6, MySQL Server supports query rewrite plugins that can inspect and potentially modify statements received by the server before the server executes them.

The following is the official document introduction:

The pre-parse rewrite plugin has the following features:

1. This plugin allows rewriting SQL statements that arrive at the server before they are processed by the server.

2. The plugin receives a statement string and may return a different string.

A post-parse query rewrite plugin has the following characteristics:

1. The plugin supports statement rewriting based on parse tree.

2. The server parses each statement and passes its parse tree to the plugin, which can traverse the tree. The plugin can return the original tree to the server for further processing, or construct a different tree and return that one.

Generally speaking, the plug-in supports two rewriting methods. One is to directly modify the SQL string before syntax parsing, and the other is to rewrite by manipulating the syntax parsing tree after syntax parsing. This feature is very useful. For example, if a SQL statement is uploaded incorrectly, but the entire database cannot be queried because the index cannot be found, or you may be using a third-party compiled software, but the SQL statement may be executed incorrectly, and you cannot modify the application directly. This feature will be very useful, and you can also write plug-ins that meet user requirements.

Install or Uninstall

The simplest installation process is as follows:

shell> mysql -u root -p < install_rewriter.sql Enter password: (enter root password here) 

It can be found that a new library query_rewrite has been added to the database. Check the database:

Check if the plugin is currently installed:

Practical Operation

For example, the following statement forces the use of primary key query:

SELECT DBA_no, name from DBA_inf where DBA_no = ?

Rewrite it as:

SELECT DBA_no, name from DBA_inf force index(primary) where DBA_no = ?

To add rules for the Rewriter plugin, there are two steps:

1. Add corresponding rules to the rewrite_rules table;

2. Call the flush_rewrite_rules() stored procedure to load the rules in the table into the plugin.

The following example creates a simple rule to match statements that select a single literal value, performing the following actions:

insert into query_rewrite.rewrite_rules(pattern, replacement, pattern_database) values ​​("SELECT DBA_no, name from DBA_inf where DBA_no = ?","SELECT DBA_no, name from DBA_inf force index(primary) where DBA_no = ?","DBAs");

Query the rules just inserted:

The content of each column of the output rule is as follows:

id:

Rule ID. This column is the table primary key. This ID can be used to uniquely identify any rule.

pattern:

A template indicating the statement pattern that the rule matches, using ? to indicate the matched data value.

pattern_database:

The database is used to match unqualified table names in statements. A qualified table name in a statement matches a qualified name in the schema if the corresponding database and table names are the same; an unqualified table name in a statement matches an unqualified name in the schema only if the default database pattern_database is the same as the table name and the statement name is the same.

replacement:

A template indicating how to rewrite statements matching the pattern column value. Use ? to indicate the matching data value. It is a parameter marker and can be replaced in the actual statement.

enabled:

Whether the rule is enabled. A load operation (performed by calling the flush_rewrite_rules() stored procedure) causes Rewriter to load the rules from the table into the in-memory cache only if this column is loaded with YES . This column makes it possible to deactivate rules without deleting them: set the column to a value other than YES in the table, then reload the table into the plugin.

message:

The plugin uses this column to communicate with the user. If no errors occur while loading the rules table into memory, the plugin sets the message column to NULL. A non-NULL value indicates an error, and the column contents are the error message. Errors may occur in these cases: 1. The pattern or substitution is an incorrect SQL statement that produces a syntax error. 2. The substitution contains more parameter markers than the pattern. If a load error occurs, the plugin also sets the Rewriter_reload_error status variable to ON .

pattern_digest:

This column is used for debugging and diagnostics. If the column exists when the rules table is loaded into memory, the plugin updates it with the schema summary. This column can help determine why certain statements could not be rewritten.

normalized_pattern

This column is used for debugging and diagnostics. If the column exists when the rules table is loaded into memory, the plugin updates it with the normalized form of the schema. This column can be useful if you are trying to determine why certain statements could not be rewritten.

Rewriter query rewriting plugin process

Adding a rule to the rewrite_rules table is not sufficient for the Rewriter plugin to use that rule. flush_rewrite_rules() must also be called to load the table contents into the plugin memory cache:

The Rewriter plugin operation uses a stored procedure to load the rules table into its memory cache. Under normal operation, the user simply calls flush_rewrite_rules() to load the contents of the rewrite_rules table into the Rewriter memory cache. After loading the table, it also clears the query cache.

When the rules table is modified, this procedure needs to be called again to have the plugin update its cache from the new table contents:

Use the statement pattern defined in the rewrite plugin to query the corresponding records:

SELECT DBA_no, name from DBA_inf where DBA_no =8; 

By using the explain statement, the current SQL has used the index

Rewrite plugin operation information

The Rewriter plugin provides information about its operation through several status variables:

Notes on these variables:

  • Rewriter_number_loaded_rules: The number of rewrite plugin rewrite rules that were successfully loaded into memory from the rewrite_rules table for use by the Rewriter plugin.
  • Rewriter_number_reloads: The number of times rewrite_rules are loaded into the Rewriter plugin cache.
  • Rewriter_number_rewritten_queries: The number of queries rewritten by the Rewriter query rewriting plugin since it was loaded.
  • Rewriter_reload_error: Whether an error occurred while loading the rewrite_rules table into the in-memory cache used by the Rewriter plugin recently. If the value is OFF, no error occurs. If the value is ON, an error occurs; check the message column of the rewriter_rules table for an error message.

When loading the rules table by calling the flush_rewrite_rules() stored procedure, if an error occurs in some rules, the CALL statement will generate an error and the plugin will set the Rewriter_reload_error status variable to ON:

In this case, check the rewrite_rules table for rows that contain non-NULL message column values ​​to see what the problem is.

Rewriter plugin uses character set

When the rewrite_rules table is loaded into the Rewriter plugin, the plugin uses the current global value of the character_set_client system variable to interpret statements. If character_set_client subsequently changes the global value, the rules table must be reloaded.

The client's session character_set_client value must be the same as the global value when the rule table was loaded, otherwise rule matching will not apply to that client.

The above is the detailed content of using MySQL query rewrite plug-in. For more information about MySQL query rewrite plug-in, please pay attention to other related articles on 123WORDPRESS.COM!

You may also be interested in:
  • How to monitor mysql using percona plugin in zabbix
  • Spring mvc integrates mybatis (crud + paging plug-in) to operate mysql
  • How to install and use the validate password plugin in MySql5.6 to enhance password strength
  • MySQL Password Enhancement Plugin
  • Tutorial on using the Memcached plugin for InnoDB in MySQL
  • Detailed explanation of the Memcached plugin in the InnoDB engine under MySQL
  • MySQL HandlerSocket plugin installation and configuration tutorial
  • The payment PHP spider statistics plug-in can be used as long as there is MySQL
  • The payment PHP spider statistics plug-in can be used as long as there is MySQL
  • Introduction to MySQL Connection Control Plugin

<<:  Practice of multi-layer nested display of element table

>>:  Record of the actual process of packaging and deployment of Vue project

Recommend

How to convert Chinese into UTF-8 in HTML

In HTML, the Chinese phrase “學好好學” can be express...

Detailed explanation of MySQL database (based on Ubuntu 14.0.4 LTS 64 bit)

1. Composition and related concepts of MySQL data...

Vue-Router installation process and principle detailed

Table of contents 1. Front-end routing implementa...

Basic understanding and use of HTML select option

Detailed explanation of HTML (select option) in ja...

Implementation of Single Div drawing techniques in CSS

You can often see articles about CSS drawing, suc...

Node.js makes a simple crawler case tutorial

Preparation First, you need to download nodejs, w...

Use of Linux ipcs command

1. Command Introduction The ipcs command is used ...

MySQL 5.6 binary installation process under Linux

1.1 Download the binary installation package wget...

MySQL spatial data storage and functions

Table of contents 1. Data Type 1. What is MySQL s...

Add a floating prompt for the header icon in the ElementUI table

This article mainly introduces how to add floatin...

Web Design Teaching or Learning Program

Section Course content Hours 1 Web Design Overvie...