mirror of
https://github.com/MariaDB/server.git
synced 2026-05-15 03:17:20 +02:00
Binlog compressed
Add some event types for the compressed event, there are:
QUERY_COMPRESSED_EVENT,
WRITE_ROWS_COMPRESSED_EVENT_V1,
UPDATE_ROWS_COMPRESSED_EVENT_V1,
DELETE_POWS_COMPRESSED_EVENT_V1,
WRITE_ROWS_COMPRESSED_EVENT,
UPDATE_ROWS_COMPRESSED_EVENT,
DELETE_POWS_COMPRESSED_EVENT.
These events inheritance the uncompressed editor events. One of their constructor functions and write
function have been overridden for uncompressing and compressing. Anything but this is totally the same.
On slave, The IO thread will uncompress and convert them When it receiving the events from the master.
So the SQL and worker threads can be stay unchanged.
Now we use zlib as compress algorithm. It maybe support other algorithm in the future.
This commit is contained in:
parent
27025221fe
commit
640051e06a
13 changed files with 797 additions and 39 deletions
|
|
@ -7232,3 +7232,5 @@ ER_PARTITION_DEFAULT_ERROR
|
|||
ukr "Припустимо мати тільки один DEFAULT розділ"
|
||||
ER_REFERENCED_TRG_DOES_NOT_EXIST
|
||||
eng "Referenced trigger '%s' for the given action time and event type does not exist"
|
||||
ER_BINLOG_UNCOMPRESS_ERROR
|
||||
eng "Uncompress the compressed binlog failed"
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue