vitess-gh/go/mysql/replication.go

128 строки
4.7 KiB
Go

/*
Copyright 2019 The Vitess Authors.
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
*/
package mysql
import (
"vitess.io/vitess/go/vt/proto/vtrpc"
"vitess.io/vitess/go/vt/vterrors"
)
const (
semiSyncIndicator byte = 0xef
semiSyncAckRequested byte = 0x01
)
// This file contains the methods related to replication.
// WriteComBinlogDump writes a ComBinlogDump command.
// See http://dev.mysql.com/doc/internals/en/com-binlog-dump.html for syntax.
// Returns a SQLError.
func (c *Conn) WriteComBinlogDump(serverID uint32, binlogFilename string, binlogPos uint32, flags uint16) error {
c.sequence = 0
length := 1 + // ComBinlogDump
4 + // binlog-pos
2 + // flags
4 + // server-id
len(binlogFilename) // binlog-filename
data, pos := c.startEphemeralPacketWithHeader(length)
pos = writeByte(data, pos, ComBinlogDump)
pos = writeUint32(data, pos, binlogPos)
pos = writeUint16(data, pos, flags)
pos = writeUint32(data, pos, serverID)
_ = writeEOFString(data, pos, binlogFilename)
if err := c.writeEphemeralPacket(); err != nil {
return NewSQLError(CRServerGone, SSUnknownSQLState, "%v", err)
}
return nil
}
// AnalyzeSemiSyncAckRequest is given a packet and checks if the packet has a semi-sync Ack request.
// This is only applicable to binlog dump event packets.
// If semi sync information exists, then the function returns a stopped buf that should be then
// processed as the event data
func (c *Conn) AnalyzeSemiSyncAckRequest(buf []byte) (strippedBuf []byte, ackRequested bool, err error) {
if !c.ExpectSemiSyncIndicator {
return buf, false, nil
}
// semi sync indicator is expected
// see https://dev.mysql.com/doc/internals/en/semi-sync-binlog-event.html
if len(buf) < 2 {
return buf, false, vterrors.Errorf(vtrpc.Code_FAILED_PRECONDITION, "semi sync indicator expected, but packet too small")
}
if buf[0] != semiSyncIndicator {
return buf, false, vterrors.Errorf(vtrpc.Code_FAILED_PRECONDITION, "semi sync indicator expected, but not found")
}
return buf[2:], buf[1] == semiSyncAckRequested, nil
}
// WriteComBinlogDumpGTID writes a ComBinlogDumpGTID command.
// Only works with MySQL 5.6+ (and not MariaDB).
// See http://dev.mysql.com/doc/internals/en/com-binlog-dump-gtid.html for syntax.
func (c *Conn) WriteComBinlogDumpGTID(serverID uint32, binlogFilename string, binlogPos uint64, flags uint16, gtidSet []byte) error {
c.sequence = 0
length := 1 + // ComBinlogDumpGTID
2 + // flags
4 + // server-id
4 + // binlog-filename-len
len(binlogFilename) + // binlog-filename
8 + // binlog-pos
4 + // data-size
len(gtidSet) // data
data, pos := c.startEphemeralPacketWithHeader(length)
pos = writeByte(data, pos, ComBinlogDumpGTID) //nolint
pos = writeUint16(data, pos, flags) //nolint
pos = writeUint32(data, pos, serverID) //nolint
pos = writeUint32(data, pos, uint32(len(binlogFilename))) //nolint
pos = writeEOFString(data, pos, binlogFilename) //nolint
pos = writeUint64(data, pos, binlogPos) //nolint
pos = writeUint32(data, pos, uint32(len(gtidSet))) //nolint
pos += copy(data[pos:], gtidSet) //nolint
if err := c.writeEphemeralPacket(); err != nil {
return NewSQLError(CRServerGone, SSUnknownSQLState, "%v", err)
}
return nil
}
// SendSemiSyncAck sends an ACK to the source, in response to binlog events
// the source has tagged with a SEMI_SYNC_ACK_REQ
// see https://dev.mysql.com/doc/internals/en/semi-sync-ack-packet.html
func (c *Conn) SendSemiSyncAck(binlogFilename string, binlogPos uint64) error {
c.sequence = 0
length := 1 + // ComSemiSyncAck
8 + // binlog-pos
len(binlogFilename) // binlog-filename
data, pos := c.startEphemeralPacketWithHeader(length)
pos = writeByte(data, pos, ComSemiSyncAck)
pos = writeUint64(data, pos, binlogPos)
_ = writeEOFString(data, pos, binlogFilename)
if err := c.writeEphemeralPacket(); err != nil {
return NewSQLError(CRServerGone, SSUnknownSQLState, "%v", err)
}
return nil
}
// SemiSyncExtensionLoaded checks if the semisync extension has been loaded.
// It should work for both MariaDB and MySQL.
func (c *Conn) SemiSyncExtensionLoaded() bool {
qr, err := c.ExecuteFetch("SHOW GLOBAL VARIABLES LIKE 'rpl_semi_sync%'", 10, false)
if err != nil {
return false
}
return len(qr.Rows) >= 1
}