maxbinlogcheck update
maxbinlogcheck update
This commit is contained in:
		
							
								
								
									
										327
									
								
								Reference/MaxBinlogCheck.md
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										327
									
								
								Reference/MaxBinlogCheck.md
									
									
									
									
									
										Normal file
									
								
							@ -0,0 +1,327 @@
 | 
			
		||||
# Maxbinlogcheck
 | 
			
		||||
 | 
			
		||||
# The MySQL/MariaDB binlog check utility 
 | 
			
		||||
 | 
			
		||||
Massimiliano Pinto
 | 
			
		||||
 | 
			
		||||
Last Updated: 08th September 2015
 | 
			
		||||
 | 
			
		||||
# Overview
 | 
			
		||||
 | 
			
		||||
Maxbinlogcheck is a command line utility for checkiing binlogfiles downloaded by MaxScale binlog router or the MySQL/MariaDB binlog files stored in a database server acting as a master in a replication environement.  
 | 
			
		||||
It checks the binlog file against any corruption and incomplete transaction stored and reports a transaction summary after reading all the events.  
 | 
			
		||||
It may optionally truncate binlog file.
 | 
			
		||||
 | 
			
		||||
Maxbinlogcheck supports
 | 
			
		||||
 | 
			
		||||
* MariaDB 5.5 and MySQL 5.6
 | 
			
		||||
 | 
			
		||||
* MariaDB 10.0 with a command line option
 | 
			
		||||
 | 
			
		||||
# Running maxbinlogcheck
 | 
			
		||||
```
 | 
			
		||||
# /usr/local/bin/maxbinlogcheck /path_to_file/bin.000002
 | 
			
		||||
```
 | 
			
		||||
 | 
			
		||||
# Command Line Switches
 | 
			
		||||
 | 
			
		||||
The maxbinlogcheck command accepts a number of switches
 | 
			
		||||
 | 
			
		||||
<table>
 | 
			
		||||
  <tr>
 | 
			
		||||
    <td>Switch</td>
 | 
			
		||||
    <td>Long Option</td>
 | 
			
		||||
    <td>Description</td>
 | 
			
		||||
  </tr>
 | 
			
		||||
  <tr>
 | 
			
		||||
    <td>-f</td>
 | 
			
		||||
    <td>--fix</td>
 | 
			
		||||
    <td>If the option is set the binlog file will be truncated at last safe transaction pos in case of any error</td>
 | 
			
		||||
  </tr>
 | 
			
		||||
  <tr>
 | 
			
		||||
    <td>-M</td>
 | 
			
		||||
    <td>--mariadb10</td>
 | 
			
		||||
    <td>Check the current binlog against MariaDB 10.0.x events</td>
 | 
			
		||||
  </tr>
 | 
			
		||||
  <tr>
 | 
			
		||||
    <td>-d</td>
 | 
			
		||||
    <td>--debug</td>
 | 
			
		||||
    <td>Set the debug mode. If set the FD Events, Rotate events and opening/closing transactions are displayed.</td>
 | 
			
		||||
  </tr>
 | 
			
		||||
  <tr>
 | 
			
		||||
    <td>-?</td>
 | 
			
		||||
    <td>--help</td>
 | 
			
		||||
    <td>Print usage information regarding maxbinlogcheck</td>
 | 
			
		||||
  </tr>
 | 
			
		||||
  <tr>
 | 
			
		||||
    <td>-V</td>
 | 
			
		||||
    <td>--version</td>
 | 
			
		||||
    <td>Print the maxbinlogcheck version information</td>
 | 
			
		||||
  </tr>
 | 
			
		||||
</table>
 | 
			
		||||
 | 
			
		||||
## Example without debug:
 | 
			
		||||
 | 
			
		||||
1) No transactions
 | 
			
		||||
 | 
			
		||||
```
 | 
			
		||||
[root@maxscale-02 build]# /usr/local/bin/maxbinlogcheck /servers/binlogs/new-trx/mar-bin.000002
 | 
			
		||||
2015-09-08 09:38:03   maxbinlogcheck 1.0.0
 | 
			
		||||
2015-09-08 09:38:03   Checking /servers/binlogs/new-trx/mar-bin.000002 (mar-bin.000002), size 290 bytes
 | 
			
		||||
2015-09-08 09:38:03   Transaction Summary:
 | 
			
		||||
			Description                   Total         Average             Max
 | 
			
		||||
			No. of Transactions               0
 | 
			
		||||
2015-09-08 09:38:03   Check retcode: 0, Binlog Pos = 290
 | 
			
		||||
```
 | 
			
		||||
 | 
			
		||||
2) With complete transactions
 | 
			
		||||
 | 
			
		||||
```
 | 
			
		||||
[root@maxscale-02 build]# /usr/local/bin/maxbinlogcheck /servers/binlogs/new-trx/mar-bin.000004
 | 
			
		||||
2015-09-08 09:38:35   maxbinlogcheck 1.0.0
 | 
			
		||||
2015-09-08 09:38:35   Checking /servers/binlogs/new-trx/mar-bin.000004 (mar-bin.000004), size 38738629 bytes
 | 
			
		||||
2015-09-08 09:38:36   Transaction Summary:
 | 
			
		||||
			Description                    Total          Average              Max
 | 
			
		||||
			No. of Transactions            21713
 | 
			
		||||
			No. of Events                 186599              8.6             5082
 | 
			
		||||
			No. of Bytes                     36M               1k               5M
 | 
			
		||||
2015-09-08 09:38:36   Check retcode: 0, Binlog Pos = 38738629
 | 
			
		||||
```
 | 
			
		||||
 | 
			
		||||
## Example with debug:
 | 
			
		||||
 | 
			
		||||
1) one complete transaction
 | 
			
		||||
 | 
			
		||||
```
 | 
			
		||||
[root@maxscale-02 build]# /usr/local/bin/maxbinlogcheck /servers/binlogs/new-trx/mar-bin.000001 -d
 | 
			
		||||
2015-09-08 09:36:49   maxbinlogcheck 1.0.0
 | 
			
		||||
2015-09-08 09:36:49   Checking /servers/binlogs/new-trx/mar-bin.000001 (mar-bin.000001), size 590760698 bytes
 | 
			
		||||
2015-09-08 09:36:49   - Format Description event FDE @ 4, size 241
 | 
			
		||||
2015-09-08 09:36:49          FDE ServerVersion [                                5.5.35-MariaDB-log]
 | 
			
		||||
2015-09-08 09:36:49          FDE Header EventLength 19, N. of supported MySQL/MariaDB events 160
 | 
			
		||||
2015-09-08 09:36:49          FDE Checksum alg desc 1, alg type BINLOG_CHECKSUM_ALG_CRC32
 | 
			
		||||
2015-09-08 09:36:49   > Transaction starts @ pos 572
 | 
			
		||||
2015-09-08 09:36:49          Transaction XID @ pos 572, closing @ 590760644
 | 
			
		||||
2015-09-08 09:36:49   < Transaction @ pos 572, is now closed @ 590760644. 18001 events seen
 | 
			
		||||
2015-09-08 09:36:49   End of binlog file [mar-bin.000001] at 590760698.
 | 
			
		||||
2015-09-08 09:36:49   Transaction Summary:
 | 
			
		||||
			Description                    Total          Average              Max
 | 
			
		||||
			No. of Transactions                1
 | 
			
		||||
			No. of Events                  18001          18001.0            18001
 | 
			
		||||
			No. of Bytes                    563M             563M             563M
 | 
			
		||||
2015-09-08 09:36:49   Check retcode: 0, Binlog Pos = 590760698
 | 
			
		||||
```
 | 
			
		||||
 | 
			
		||||
2) some transactions
 | 
			
		||||
 | 
			
		||||
```
 | 
			
		||||
[root@maxscale-02 build]# /usr/local/bin/maxbinlogcheck /servers/binlogs/new-trx/mar-bin.000004 -d
 | 
			
		||||
2015-09-08 10:19:35   maxbinlogcheck 1.0.0
 | 
			
		||||
2015-09-08 10:19:35   Checking /servers/binlogs/new-trx/mar-bin.000004 (mar-bin.000004), size 38738629 bytes
 | 
			
		||||
2015-09-08 10:19:35   - Format Description event FDE @ 4, size 241
 | 
			
		||||
2015-09-08 10:19:35          FDE ServerVersion [                                5.5.35-MariaDB-log]
 | 
			
		||||
2015-09-08 10:19:35          FDE Header EventLength 19, N. of supported MySQL/MariaDB events 160
 | 
			
		||||
2015-09-08 10:19:35          FDE Checksum alg desc 1, alg type BINLOG_CHECKSUM_ALG_CRC32
 | 
			
		||||
2015-09-08 10:19:35   > Transaction starts @ pos 971
 | 
			
		||||
2015-09-08 10:19:35          Transaction XID @ pos 971, closing @ 1128
 | 
			
		||||
2015-09-08 10:19:35   < Transaction @ pos 971, is now closed @ 1128. 3 events seen
 | 
			
		||||
...
 | 
			
		||||
2015-09-08 10:19:51   > Transaction starts @ pos 33440561
 | 
			
		||||
2015-09-08 10:19:51          Transaction XID @ pos 33440561, closing @ 33440763
 | 
			
		||||
2015-09-08 10:19:51   < Transaction @ pos 33440561, is now closed @ 33440763. 3 events seen
 | 
			
		||||
2015-09-08 10:19:51   > Transaction starts @ pos 33440794
 | 
			
		||||
2015-09-08 10:19:51          Transaction XID @ pos 33440794, closing @ 38738553
 | 
			
		||||
2015-09-08 10:19:51   < Transaction @ pos 33440794, is now closed @ 38738553. 5082 events seen
 | 
			
		||||
2015-09-08 10:19:51   - Rotate event @ 38738584, next file is [mar-bin.000005] @ 4
 | 
			
		||||
2015-09-08 10:19:51   End of binlog file [mar-bin.000004] at 38738629.
 | 
			
		||||
2015-09-08 10:19:51   Transaction Summary:
 | 
			
		||||
			Description                    Total          Average              Max
 | 
			
		||||
			No. of Transactions            21713
 | 
			
		||||
			No. of Events                 186599              8.6             5082
 | 
			
		||||
			No. of Bytes                     36M               1k               5M
 | 
			
		||||
2015-09-08 10:19:51   Check retcode: 0, Binlog Pos = 38738629
 | 
			
		||||
```
 | 
			
		||||
 | 
			
		||||
3) No transactions
 | 
			
		||||
 | 
			
		||||
```
 | 
			
		||||
2015-09-08 09:41:02   Check retcode: 0, Binlog Pos = 290
 | 
			
		||||
[root@maxscale-02 build]# /usr/local/bin/maxbinlogcheck /servers/binlogs/new-trx/mar-bin.000002 -d
 | 
			
		||||
2015-09-08 09:41:08   maxbinlogcheck 1.0.0
 | 
			
		||||
2015-09-08 09:41:08   Checking /servers/binlogs/new-trx/mar-bin.000002 (mar-bin.000002), size 290 bytes
 | 
			
		||||
2015-09-08 09:41:08   - Format Description event FDE @ 4, size 241
 | 
			
		||||
2015-09-08 09:41:08          FDE ServerVersion [                                5.5.35-MariaDB-log]
 | 
			
		||||
2015-09-08 09:41:08          FDE Header EventLength 19, N. of supported MySQL/MariaDB events 160
 | 
			
		||||
2015-09-08 09:41:08          FDE Checksum alg desc 1, alg type BINLOG_CHECKSUM_ALG_CRC32
 | 
			
		||||
2015-09-08 09:41:08   - Rotate event @ 245, next file is [mar-bin.000003] @ 4
 | 
			
		||||
2015-09-08 09:41:08   End of binlog file [mar-bin.000002] at 290.
 | 
			
		||||
2015-09-08 09:41:08   Transaction Summary:
 | 
			
		||||
			Description                   Total         Average             Max
 | 
			
		||||
			No. of Transactions               0
 | 
			
		||||
2015-09-08 09:41:08   Check retcode: 0, Binlog Pos = 290
 | 
			
		||||
```
 | 
			
		||||
 | 
			
		||||
## Fixing a corrupted binlog file
 | 
			
		||||
 | 
			
		||||
This file is corrupted, as reported by the utility:
 | 
			
		||||
 | 
			
		||||
```
 | 
			
		||||
2015-09-08 10:03:16   maxbinlogcheck 1.0.0
 | 
			
		||||
2015-09-08 10:03:16   Checking /servers/binlogs/new-trx/bin.000002 (bin.000002), size 109498 bytes
 | 
			
		||||
2015-09-08 10:03:16   Event size error: size 0 at 290.
 | 
			
		||||
2015-09-08 10:03:16   warning : an error has been found. Setting safe pos to 245, current pos 290
 | 
			
		||||
2015-09-08 10:03:16   Check retcode: 1, Binlog Pos = 245
 | 
			
		||||
```
 | 
			
		||||
 | 
			
		||||
The suggested safe pos is 245
 | 
			
		||||
 | 
			
		||||
Use -f option for fix with debug:
 | 
			
		||||
 | 
			
		||||
```
 | 
			
		||||
[root@maxscale-02 build]# /usr/local/bin/maxbinlogcheck /servers/binlogs/new-trx/bin.000002 -d -f
 | 
			
		||||
2015-09-08 09:56:52   maxbinlogcheck 1.0.0
 | 
			
		||||
2015-09-08 09:56:52   Checking /servers/binlogs/new-trx/bin.000002 (bin.000002), size 109498 bytes
 | 
			
		||||
2015-09-08 09:56:52   - Format Description event FDE @ 4, size 241
 | 
			
		||||
2015-09-08 09:56:52          FDE ServerVersion [                                5.5.35-MariaDB-log]
 | 
			
		||||
2015-09-08 09:56:52          FDE Header EventLength 19, N. of supported MySQL/MariaDB events 160
 | 
			
		||||
2015-09-08 09:56:52          FDE Checksum alg desc 1, alg type BINLOG_CHECKSUM_ALG_CRC32
 | 
			
		||||
2015-09-08 09:56:52   - Rotate event @ 245, next file is [mar-bin.000003] @ 4
 | 
			
		||||
2015-09-08 09:56:52   Event size error: size 0 at 290.
 | 
			
		||||
2015-09-08 09:56:52   warning : an error has been found. Setting safe pos to 245, current pos 290
 | 
			
		||||
2015-09-08 09:56:52   Check retcode: 1, Binlog Pos = 245
 | 
			
		||||
```
 | 
			
		||||
 | 
			
		||||
Check it again, last pos will be 245 and no errors will be reported:
 | 
			
		||||
 | 
			
		||||
```
 | 
			
		||||
[root@maxscale-02 build]# /usr/local/bin/maxbinlogcheck /servers/binlogs/new-trx/bin.000002 -d 
 | 
			
		||||
2015-09-08 09:56:56   maxbinlogcheck 1.0.0
 | 
			
		||||
2015-09-08 09:56:56   Checking /servers/binlogs/new-trx/bin.000002 (bin.000002), size 245 bytes
 | 
			
		||||
2015-09-08 09:56:56   - Format Description event FDE @ 4, size 241
 | 
			
		||||
2015-09-08 09:56:56          FDE ServerVersion [                                5.5.35-MariaDB-log]
 | 
			
		||||
2015-09-08 09:56:56          FDE Header EventLength 19, N. of supported MySQL/MariaDB events 160
 | 
			
		||||
2015-09-08 09:56:56          FDE Checksum alg desc 1, alg type BINLOG_CHECKSUM_ALG_CRC32
 | 
			
		||||
2015-09-08 09:56:56   End of binlog file [bin.000002] at 245.
 | 
			
		||||
2015-09-08 09:56:56   Transaction Summary:
 | 
			
		||||
			Description                   Total         Average             Max
 | 
			
		||||
			No. of Transactions               0
 | 
			
		||||
2015-09-08 09:56:56   Check retcode: 0, Binlog Pos = 245
 | 
			
		||||
```
 | 
			
		||||
 | 
			
		||||
## Detection of an incomplete big transaction
 | 
			
		||||
 | 
			
		||||
```
 | 
			
		||||
[root@maxscale-02 build]# /usr/local/bin/maxbinlogcheck /servers/binlogs/new-trx/mar-bin.000003
 | 
			
		||||
2015-09-08 10:10:21   maxbinlogcheck 1.0.0
 | 
			
		||||
2015-09-08 10:10:21   Checking /servers/binlogs/new-trx/mar-bin.000003 (mar-bin.000003), size 16476284 bytes
 | 
			
		||||
2015-09-08 10:10:21   Warning : pending transaction has been found. Setting safe pos to 572, current pos 16476284
 | 
			
		||||
2015-09-08 10:10:21   Transaction Summary:
 | 
			
		||||
			Description                   Total         Average             Max
 | 
			
		||||
			No. of Transactions               0
 | 
			
		||||
2015-09-08 10:10:21   Check retcode: 0, Binlog Pos = 572
 | 
			
		||||
```
 | 
			
		||||
 | 
			
		||||
with debug option:
 | 
			
		||||
 | 
			
		||||
```
 | 
			
		||||
[root@maxscale-02 build]# /usr/local/bin/maxbinlogcheck /servers/binlogs/new-trx/mar-bin.000003 -d
 | 
			
		||||
2015-09-08 10:11:08   maxbinlogcheck 1.0.0
 | 
			
		||||
2015-09-08 10:11:08   Checking /servers/binlogs/new-trx/mar-bin.000003 (mar-bin.000003), size 16476284 bytes
 | 
			
		||||
2015-09-08 10:11:08   - Format Description event FDE @ 4, size 241
 | 
			
		||||
2015-09-08 10:11:08          FDE ServerVersion [                                5.5.35-MariaDB-log]
 | 
			
		||||
2015-09-08 10:11:08          FDE Header EventLength 19, N. of supported MySQL/MariaDB events 160
 | 
			
		||||
2015-09-08 10:11:08          FDE Checksum alg desc 1, alg type BINLOG_CHECKSUM_ALG_CRC32
 | 
			
		||||
2015-09-08 10:11:08   > Transaction starts @ pos 572
 | 
			
		||||
2015-09-08 10:11:08   Warning : pending transaction has been found. Setting safe pos to 572, current pos 16476284
 | 
			
		||||
2015-09-08 10:11:08   End of binlog file [mar-bin.000003] at 16476284.
 | 
			
		||||
2015-09-08 10:11:08   Transaction Summary:
 | 
			
		||||
			Description                   Total         Average             Max
 | 
			
		||||
			No. of Transactions               0
 | 
			
		||||
2015-09-08 10:11:08   Check retcode: 0, Binlog Pos = 572
 | 
			
		||||
```
 | 
			
		||||
 | 
			
		||||
Retcode is 0 as the transaction may proceed over time, example:
 | 
			
		||||
 | 
			
		||||
Another check ...
 | 
			
		||||
 | 
			
		||||
```
 | 
			
		||||
[root@maxscale-02 build]# /usr/local/bin/maxbinlogcheck /servers/binlogs/new-trx/mar-bin.000003 -d
 | 
			
		||||
2015-09-08 10:17:13   maxbinlogcheck 1.0.0
 | 
			
		||||
2015-09-08 10:17:13   Checking /servers/binlogs/new-trx/mar-bin.000003 (mar-bin.000003), size 569296364 bytes
 | 
			
		||||
2015-09-08 10:17:13   - Format Description event FDE @ 4, size 241
 | 
			
		||||
2015-09-08 10:17:13          FDE ServerVersion [                                5.5.35-MariaDB-log]
 | 
			
		||||
2015-09-08 10:17:13          FDE Header EventLength 19, N. of supported MySQL/MariaDB events 160
 | 
			
		||||
2015-09-08 10:17:13          FDE Checksum alg desc 1, alg type BINLOG_CHECKSUM_ALG_CRC32
 | 
			
		||||
2015-09-08 10:17:13   > Transaction starts @ pos 572
 | 
			
		||||
2015-09-08 10:17:14   End of binlog file [mar-bin.000003] at 577567062.
 | 
			
		||||
2015-09-08 10:17:14   Transaction Summary:
 | 
			
		||||
			Description                   Total         Average             Max
 | 
			
		||||
			No. of Transactions               0
 | 
			
		||||
2015-09-08 10:17:14   Warning : pending transaction has been found. Setting safe pos to 572, current pos 577567062
 | 
			
		||||
2015-09-08 10:17:14   Check retcode: 0, Binlog Pos = 572
 | 
			
		||||
```
 | 
			
		||||
 | 
			
		||||
And finally big transaction is now done.
 | 
			
		||||
 | 
			
		||||
```
 | 
			
		||||
[root@maxscale-02 build]# /usr/local/bin/maxbinlogcheck /servers/binlogs/new-trx/mar-bin.000003 -d
 | 
			
		||||
2015-09-08 10:17:15   maxbinlogcheck 1.0.0
 | 
			
		||||
2015-09-08 10:17:15   Checking /servers/binlogs/new-trx/mar-bin.000003 (mar-bin.000003), size 590760698 bytes
 | 
			
		||||
2015-09-08 10:17:15   - Format Description event FDE @ 4, size 241
 | 
			
		||||
2015-09-08 10:17:15          FDE ServerVersion [                                5.5.35-MariaDB-log]
 | 
			
		||||
2015-09-08 10:17:15          FDE Header EventLength 19, N. of supported MySQL/MariaDB events 160
 | 
			
		||||
2015-09-08 10:17:15          FDE Checksum alg desc 1, alg type BINLOG_CHECKSUM_ALG_CRC32
 | 
			
		||||
2015-09-08 10:17:15   > Transaction starts @ pos 572
 | 
			
		||||
2015-09-08 10:17:16          Transaction XID @ pos 572, closing @ 590760644
 | 
			
		||||
2015-09-08 10:17:16   < Transaction @ pos 572, is now closed @ 590760644. 18001 events seen
 | 
			
		||||
2015-09-08 10:17:16   End of binlog file [mar-bin.000003] at 590760698.
 | 
			
		||||
2015-09-08 10:17:16   Transaction Summary:
 | 
			
		||||
			Description                    Total          Average              Max
 | 
			
		||||
			No. of Transactions                1
 | 
			
		||||
			No. of Events                  18001          18001.0            18001
 | 
			
		||||
			No. of Bytes                    563M             563M             563M
 | 
			
		||||
2015-09-08 10:17:16   Check retcode: 0, Binlog Pos = 590760698
 | 
			
		||||
```
 | 
			
		||||
 | 
			
		||||
**Note**  
 | 
			
		||||
with current maxbinlogcheck it's not possible to fix a binlog with incomplete transaction and no other errors
 | 
			
		||||
 | 
			
		||||
If that is really desired it will be possible with UNIX command line:
 | 
			
		||||
 | 
			
		||||
```
 | 
			
		||||
# truncate /servers/binlogs/new-trx/mar-bin.000003 --size=572
 | 
			
		||||
```
 | 
			
		||||
 | 
			
		||||
In case of an error and incomplete transactions fix will work
 | 
			
		||||
 | 
			
		||||
```
 | 
			
		||||
[root@maxscale-02 build]# /usr/local/bin/maxbinlogcheck /servers/binlogs/new-trx/mar-bin.000003 -d -f
 | 
			
		||||
2015-09-08 10:35:57   maxbinlogcheck 1.0.0
 | 
			
		||||
2015-09-08 10:35:57   Checking /servers/binlogs/new-trx/mar-bin.000003 (mar-bin.000003), size 282580902 bytes
 | 
			
		||||
2015-09-08 10:35:57   - Format Description event FDE @ 4, size 241
 | 
			
		||||
2015-09-08 10:35:57          FDE ServerVersion [                                5.5.35-MariaDB-log]
 | 
			
		||||
2015-09-08 10:35:57          FDE Header EventLength 19, N. of supported MySQL/MariaDB events 160
 | 
			
		||||
2015-09-08 10:35:57          FDE Checksum alg desc 1, alg type BINLOG_CHECKSUM_ALG_CRC32
 | 
			
		||||
2015-09-08 10:35:57   > Transaction starts @ pos 572
 | 
			
		||||
2015-09-08 10:35:57   Short read when reading the event at 304898502 in mar-bin.000003. Expected 65563 bytes got 15911 bytes.
 | 
			
		||||
2015-09-08 10:35:57   warning : an error has been found. Setting safe pos to 572, current pos 304898502
 | 
			
		||||
2015-09-08 10:35:57   Check retcode: 1, Binlog Pos = 572
 | 
			
		||||
```
 | 
			
		||||
 | 
			
		||||
Check result:
 | 
			
		||||
 | 
			
		||||
```
 | 
			
		||||
[root@maxscale-02 build]# /usr/local/bin/maxbinlogcheck /servers/binlogs/new-trx/mar-bin.000003 -d
 | 
			
		||||
2015-09-08 10:54:17   maxbinlogcheck 1.0.0
 | 
			
		||||
2015-09-08 10:54:17   Checking /servers/binlogs/new-trx/mar-bin.000003 (mar-bin.000003), size 572 bytes
 | 
			
		||||
2015-09-08 10:54:17   - Format Description event FDE @ 4, size 241
 | 
			
		||||
2015-09-08 10:54:17          FDE ServerVersion [                                5.5.35-MariaDB-log]
 | 
			
		||||
2015-09-08 10:54:17          FDE Header EventLength 19, N. of supported MySQL/MariaDB events 160
 | 
			
		||||
2015-09-08 10:54:17          FDE Checksum alg desc 1, alg type BINLOG_CHECKSUM_ALG_CRC32
 | 
			
		||||
2015-09-08 10:54:17   Transaction Summary:
 | 
			
		||||
			Description                   Total         Average             Max
 | 
			
		||||
			No. of Transactions               0
 | 
			
		||||
2015-09-08 10:54:17   End of binlog file [mar-bin.000003] at 572.
 | 
			
		||||
2015-09-08 10:54:17   Check retcode: 0, Binlog Pos = 572
 | 
			
		||||
```
 | 
			
		||||
 | 
			
		||||
		Reference in New Issue
	
	Block a user