Skip to content

Commit 3a75f6a

Browse files
authored
Add a optional function to decode optional meta of table map event (#833)
* lower memory usage by reducing event chan size in streamer When consuming events from stream is blocked, the chan may use too much memory * make streamer's event chan size configurable When the consumption speed of the event chan in streamer cannot catch up with its production speed, leading to an accumulation of events, the current fixed channel size of 10240 might occupy significant memory, potentially triggering an Out Of Memory (OOM) condition. Making the size of the event chan configurable would allow for controlling the memory usage of the streamer. * update cfg name StreamerChanSize to EventCacheSize * EventCacheSize is renamed to EventCacheCount, to make the variable name more reflective of its actual meaning. * Add a optional function to decode optional meta of table map event
1 parent e598b6e commit 3a75f6a

File tree

3 files changed

+21
-3
lines changed

3 files changed

+21
-3
lines changed

replication/binlogsyncer.go

+3
Original file line numberDiff line numberDiff line change
@@ -121,6 +121,8 @@ type BinlogSyncerConfig struct {
121121

122122
RowsEventDecodeFunc func(*RowsEvent, []byte) error
123123

124+
TableMapOptionalMetaDecodeFunc func([]byte) error
125+
124126
DiscardGTIDSet bool
125127

126128
EventCacheCount int
@@ -189,6 +191,7 @@ func NewBinlogSyncer(cfg BinlogSyncerConfig) *BinlogSyncer {
189191
b.parser.SetUseDecimal(b.cfg.UseDecimal)
190192
b.parser.SetVerifyChecksum(b.cfg.VerifyChecksum)
191193
b.parser.SetRowsEventDecodeFunc(b.cfg.RowsEventDecodeFunc)
194+
b.parser.SetTableMapOptionalMetaDecodeFunc(b.cfg.TableMapOptionalMetaDecodeFunc)
192195
b.running = false
193196
b.ctx, b.cancel = context.WithCancel(context.Background())
194197

replication/parser.go

+8-1
Original file line numberDiff line numberDiff line change
@@ -42,6 +42,8 @@ type BinlogParser struct {
4242
verifyChecksum bool
4343

4444
rowsEventDecodeFunc func(*RowsEvent, []byte) error
45+
46+
tableMapOptionalMetaDecodeFunc func([]byte) error
4547
}
4648

4749
func NewBinlogParser() *BinlogParser {
@@ -218,6 +220,10 @@ func (p *BinlogParser) SetRowsEventDecodeFunc(rowsEventDecodeFunc func(*RowsEven
218220
p.rowsEventDecodeFunc = rowsEventDecodeFunc
219221
}
220222

223+
func (p *BinlogParser) SetTableMapOptionalMetaDecodeFunc(tableMapOptionalMetaDecondeFunc func([]byte) error) {
224+
p.tableMapOptionalMetaDecodeFunc = tableMapOptionalMetaDecondeFunc
225+
}
226+
221227
func (p *BinlogParser) parseHeader(data []byte) (*EventHeader, error) {
222228
h := new(EventHeader)
223229
err := h.Decode(data)
@@ -257,7 +263,8 @@ func (p *BinlogParser) parseEvent(h *EventHeader, data []byte, rawData []byte) (
257263
e = &XIDEvent{}
258264
case TABLE_MAP_EVENT:
259265
te := &TableMapEvent{
260-
flavor: p.flavor,
266+
flavor: p.flavor,
267+
optionalMetaDecodeFunc: p.tableMapOptionalMetaDecodeFunc,
261268
}
262269
if p.format.EventTypeHeaderLengths[TABLE_MAP_EVENT-1] == 6 {
263270
te.tableIDSize = 4

replication/row_event.go

+10-2
Original file line numberDiff line numberDiff line change
@@ -84,6 +84,8 @@ type TableMapEvent struct {
8484

8585
// VisibilityBitmap stores bits that are set if corresponding column is not invisible (MySQL 8.0.23+)
8686
VisibilityBitmap []byte
87+
88+
optionalMetaDecodeFunc func(data []byte) (err error)
8789
}
8890

8991
func (e *TableMapEvent) Decode(data []byte) error {
@@ -140,8 +142,14 @@ func (e *TableMapEvent) Decode(data []byte) error {
140142

141143
pos += nullBitmapSize
142144

143-
if err = e.decodeOptionalMeta(data[pos:]); err != nil {
144-
return err
145+
if e.optionalMetaDecodeFunc != nil {
146+
if err = e.optionalMetaDecodeFunc(data[pos:]); err != nil {
147+
return err
148+
}
149+
} else {
150+
if err = e.decodeOptionalMeta(data[pos:]); err != nil {
151+
return err
152+
}
145153
}
146154

147155
return nil

0 commit comments

Comments
 (0)