Binlog section in BINLOG suppression by MySQL

Source: Internet
Author: User

Binlog section in BINLOG suppression by MySQL

MySQL uses binlog to record the entire data change process. Therefore, we only need MySQL binlog to completely restore the database. There are three different methods for MySQL binlog logging: STATEMENT, MIXED, and ROW. For different log modes, the generated binlog has different recording methods. For MIXED (some SQL statements) and ROW modes, the record is in base-64 mode and starts with BINLOG, which is a pseudo SQL, And we can suppress the display using base64-output parameters. This article describes and demonstrates this.

For usage of mysqlbinlog, see use mysqlbinlog to extract binary logs.

 

Base64-output parameters of mysqlbinlog

-- Base64-output =Value

This option determines when events shoshould be displayed encoded as base-64 strings usingBINLOGStatements. The option has these permissible values (not case sensitive ):

AUTO("Automatic") or UNSPEC("Unspecified") displays BINLOGStatements automatically when necessary (that is, for format description events and row events). If no -- base64-output option is given, the effect is the same as -- base64-output = AUTO. NEVERCauses BINLOGStatements not to be displayed. MysqlbinlogExits with an error if a row event is found that must be displayed using BINLOG. DECODE-ROWSSpecifies MysqlbinlogThat you intend for row events to be decoded and displayed as commented SQL statements by also specifying the -- verbose option. Like NEVER, DECODE-ROWSSuppresses display BINLOGStatements, but unlike NEVER, It does not exit with an error if a row event is found.

The preceding description specifies the binlog part in the BINLOG.DECODE-ROWSAnd -- verbose options.

 

The SQL statements produced by -- verbose for row events are much more readable than the correspondingBINLOGStatements. However, they do not correspond exactly to the original SQL statements that generated the events. The following limitations apply:

The -- verbose option can obtain more readable information, but it is not an original SQL statement (similar ).

· The original column names are lost and replaced@N, WhereNIs a column number.

· Character set information is not available in the binary log, which affects string column display:

There is no distinction made between corresponding binary and nonbinary string types ( BINARYAnd CHAR, VARBINARYAnd VARCHAR, BLOBAnd TEXT). The output uses a data type STRINGFor fixed-length strings and VARSTRINGFor variable-length strings. for multibyte character sets, the maximum number of bytes per character is not present in the binary log, so the length for string types is displayed in bytes rather than in characters. for example, STRING (4)Will be used as the data type for values from either of these column types:

CHAR (4) character set latin1

CHAR (2) character set ucs2

Due to the storage format for events of type UPDATE_ROWS_EVENT, UPDATEStatements are displayed with WHEREClause preceding SETClause.

Proper interpretation of row events requires the information from the format description event at the beginning of the binary log. BecauseMysqlbinlogDoes not know in advance whether the rest of the log contains row events, by default it displays the format description event usingBINLOGStatement in the initial part of the output.

If the binary log is known not to contain any events requiringBINLOGStatement (that is, no row events), the -- base64-output = NEVER option can be used to prevent this header from being written.

 

2. Demonstrate binlog generation

-- Environment mysql> show variables like 'version '; + --------------- + ------------ + | Variable_name | Value | + --------------- + ------------ + | version | 5.6.12-log | + ------------- + ------------ + -- Query binlog as the row record mode mysql> show variables like 'binlog _ for % '; + --------------- + ------- + | Variable_name | Value | + --------------- + ------- + | binlog_format | ROW | + --------------- + ------- + mysql> reset master; Query OK, 0 rows affected (0.01 sec) mysql> show master status; + quota + ---------- + -------------- + ---------------- + quota + | File | Position | Binlog_Do_DB | bytes | + quota + ---------- + -------------- + ------------------ + quota + | APP01bin. 000001 | 120 | + ----------------- + ---------- + -------------- + ------------------ + ------------------- + mysql> use test; Database changed -- create table t1mysql> create table t1 (id smallint, val varchar (20); Query OK, 0 rows affected (0.01 sec) -- insert a single record mysql> insert into t1 values (1, 'Robin '); Query OK, 1 row affected (0.00 sec) -- clear table mysql> truncate table t1; Query OK, 0 rows affected (0.01 sec) -- View binlog eventsmysql> show binlog events; + region + ----- + ------------- + ----------- + region + | Log_name | Pos | Event_type | Server_id | End_log_pos | Info | + region + ----- + ------------- + ----------- + region + | APP01bin. 000001 | 4 | Format_desc | 11 | 120 | Server ver: 5.6.12-log, Binlog ver: 4 | APP01bin. 000001 | 120 | Query | 11 | 238 | use 'test'; create table t1 (id smallint, val varchar (20) | APP01bin. 000001 | 238 | Query | 11 | 310 | BEGIN | APP01bin. 000001 | 310 | Table_map | 11 | 358 | table_id: 74 (test. t1) | APP01bin. 000001 | 358 | Write_rows | 11 | 402 | table_id: 74 flags: STMT_END_F | APP01bin. 000001 | 402 | Xid | 11 | 433 | COMMIT/* xid = 30 */| APP01bin. 000001 | 433 | Query | 11 | 517 | use 'test'; truncate table t1 | + ----------------- + ----- + ------------- + ----------- + ------------- + rows + 7 rows in set (0.00 sec) -- Obtain the binlog location mysql> show variables like 'Log _ bin_basename '; + ------------------ + bytes + | Variable_name | Value | + ------------------ + bytes + | log_bin_basename |/opt/data/APP01bin | + ------------------ +

3. demonstrate how to extract binlog logs

Binlog' # The BINLOG part is a real SQL statement, details cannot be viewed <br> detail <br = ""> fzcsvb4laaaalaaaajibaaaaaeoaaaaaeaagac = "" wbaavyb2jpbv7cujq = "<br"> '= ""*! * = "";

# When the-v parameter is used, we can see the SQL statement generated by the operation, in the form of insert into... @ 1. If-vv is used, the description of the output column is

Binlog' <br> comment <br = ""> fzcsvb4laaaalaaaajibaaaaaeoaaaaaaaeaagac = "" wbaavyb2jpbv7cujq = "<br"> '= ""*! * = "";

# Add the -- base64-output = DECODE-ROWS option to suppress the display of BINLOG, we do not see the BINLOG section below

# Using mysqlbinlog for Incomplete recovery

# View the restored result

 

Related Article

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.