Bristol/

directory
v1.1.0-beta.19 Latest Latest
Warning

This package is not in the latest version of its module.

Go to latest
Published: Oct 19, 2019 License: Apache-2.0

README

Bristol ---- 模拟MySQL从库连接,监听MySQL binlog变更并解析

DDL 支持说明

当前只支持字段在表结构末尾追加新字段,如果配置的二进制位点是在DDL 之前的位点,会出现数据和字段对应不上 数据类型修改之后,如果配置的二进制位点是在DDL 之前的位点,可能会出现数据出错

类型转换

从Binlog解析出来的数据,在转成 map[string]interface{} 的数据格式的时候 MySQL里的存储类型对应Golang里的数据类型不一样 括号里的代表是Golang里的数据类型

  • - TINYINT ( int8 | unit8 )
  • - SMALLINT ( int16 | unit16 )
  • - MEDIUMINT ( int32 | uint32 )
  • - INT ( int32 | uint32 )
  • - BIGINT ( int64 | uint64 )
  • - FLOAT ( float32 )
  • - DOUBLE ( float64 )
  • - REAL ( float64 )
  • - DECIMAL , NUMERIC( 返回string类型 )
  • - DATE , TIME , YEAR , DATETIME , TIMESTAMP ( string类型 )
  • - CHAR , VARCHAR ( string )
  • - TEXT , TINYTEXT , MEDIUMINTTEXT , - LONGTEXT ( string )
  • - BLOB, TINYBLOB , MEDIUMINTBLOB , LONGBLOB ( string )
  • - ENUM ( string类型 )
  • - SET ( []string )
  • - BIT ( int64类型 )
使用案例
import (
	"log"

	"github.com/Bristol/mysql"
	"time"
)

func callback(data *mysql.EventReslut) {
	log.Println(data)
}

func main() {
	filename := "mysql-bin.000022"
	var position uint32 = 13333
	reslut := make(chan error, 1)
	m := make(map[string]uint8, 0)
	m["testdbcreate"] = 1
	BinlogDump := &mysql.BinlogDump{
		DataSource:    "root:root@tcp(127.0.0.1:3306)/test",
		CallbackFun:   callback,
		ReplicateDoDb: m,
		OnlyEvent:     []mysql.EventType{mysql.QUERY_EVENT, mysql.WRITE_ROWS_EVENTv1, mysql.UPDATE_ROWS_EVENTv1, mysql.DELETE_ROWS_EVENTv1},
	}
	go BinlogDump.StartDumpBinlog(filename, position, 100,reslut,"",0)
	go func() {
		v := <-reslut
		log.Printf("monitor reslut:%s \r\n", v)
	}()
	for {
		time.Sleep(10 * time.Second)
	}
}

数据检验

请参考 一键数据检验测试工具

Directories

Path Synopsis

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL