Skip to content

Commit f715f17

Browse files
committed
tune slice append performance
1 parent 39976f7 commit f715f17

File tree

5 files changed

+22
-29
lines changed

5 files changed

+22
-29
lines changed

canal/sync.go

+6-6
Original file line numberDiff line numberDiff line change
@@ -183,12 +183,12 @@ type node struct {
183183
func parseStmt(stmt ast.StmtNode) (ns []*node) {
184184
switch t := stmt.(type) {
185185
case *ast.RenameTableStmt:
186-
for _, tableInfo := range t.TableToTables {
187-
n := &node{
186+
ns = make([]*node, len(t.TableToTables))
187+
for i, tableInfo := range t.TableToTables {
188+
ns[i] = &node{
188189
db: tableInfo.OldTable.Schema.String(),
189190
table: tableInfo.OldTable.Name.String(),
190191
}
191-
ns = append(ns, n)
192192
}
193193
case *ast.AlterTableStmt:
194194
n := &node{
@@ -197,12 +197,12 @@ func parseStmt(stmt ast.StmtNode) (ns []*node) {
197197
}
198198
ns = []*node{n}
199199
case *ast.DropTableStmt:
200-
for _, table := range t.Tables {
201-
n := &node{
200+
ns = make([]*node, len(t.Tables))
201+
for i, table := range t.Tables {
202+
ns[i] = &node{
202203
db: table.Schema.String(),
203204
table: table.Name.String(),
204205
}
205-
ns = append(ns, n)
206206
}
207207
case *ast.CreateTableStmt:
208208
n := &node{

replication/binlogstreamer.go

+2-2
Original file line numberDiff line numberDiff line change
@@ -60,9 +60,9 @@ func (s *BinlogStreamer) GetEventWithStartTime(ctx context.Context, startTime ti
6060
// DumpEvents dumps all left events
6161
func (s *BinlogStreamer) DumpEvents() []*BinlogEvent {
6262
count := len(s.ch)
63-
events := make([]*BinlogEvent, 0, count)
63+
events := make([]*BinlogEvent, count)
6464
for i := 0; i < count; i++ {
65-
events = append(events, <-s.ch)
65+
events[i] = <-s.ch
6666
}
6767
return events
6868
}

replication/event.go

+4-4
Original file line numberDiff line numberDiff line change
@@ -225,17 +225,17 @@ type PreviousGTIDsEvent struct {
225225
}
226226

227227
func (e *PreviousGTIDsEvent) Decode(data []byte) error {
228-
var previousGTIDSets []string
229228
pos := 0
230229
uuidCount := binary.LittleEndian.Uint16(data[pos : pos+8])
231230
pos += 8
232231

232+
previousGTIDSets := make([]string, uuidCount)
233233
for i := uint16(0); i < uuidCount; i++ {
234234
uuid := e.decodeUuid(data[pos : pos+16])
235235
pos += 16
236236
sliceCount := binary.LittleEndian.Uint16(data[pos : pos+8])
237237
pos += 8
238-
var intervals []string
238+
intervals := make([]string, sliceCount)
239239
for i := uint16(0); i < sliceCount; i++ {
240240
start := e.decodeInterval(data[pos : pos+8])
241241
pos += 8
@@ -247,9 +247,9 @@ func (e *PreviousGTIDsEvent) Decode(data []byte) error {
247247
} else {
248248
interval = fmt.Sprintf("%d-%d", start, stop-1)
249249
}
250-
intervals = append(intervals, interval)
250+
intervals[i] = interval
251251
}
252-
previousGTIDSets = append(previousGTIDSets, fmt.Sprintf("%s:%s", uuid, strings.Join(intervals, ":")))
252+
previousGTIDSets[i] = fmt.Sprintf("%s:%s", uuid, strings.Join(intervals, ":"))
253253
}
254254
e.GTIDSets = strings.Join(previousGTIDSets, ",")
255255
return nil

replication/parser.go

+1-2
Original file line numberDiff line numberDiff line change
@@ -142,8 +142,7 @@ func (p *BinlogParser) parseSingleEvent(r io.Reader, onEvent OnEventFunc) (bool,
142142
return false, errors.Errorf("invalid raw data size in event %s, need %d but got %d", h.EventType, h.EventSize, buf.Len())
143143
}
144144

145-
var rawData []byte
146-
rawData = append(rawData, buf.Bytes()...)
145+
rawData := buf.Bytes()
147146
bodyLen := int(h.EventSize) - EventHeaderSize
148147
body := rawData[EventHeaderSize:]
149148
if len(body) != bodyLen {

replication/row_event.go

+9-15
Original file line numberDiff line numberDiff line change
@@ -570,12 +570,9 @@ func (e *TableMapEvent) SetStrValueString() [][]string {
570570
if len(e.SetStrValue) == 0 {
571571
return nil
572572
}
573-
e.setStrValueString = make([][]string, 0, len(e.SetStrValue))
574-
for _, vals := range e.SetStrValue {
575-
e.setStrValueString = append(
576-
e.setStrValueString,
577-
e.bytesSlice2StrSlice(vals),
578-
)
573+
e.setStrValueString = make([][]string, len(e.SetStrValue))
574+
for i, vals := range e.SetStrValue {
575+
e.setStrValueString[i] = e.bytesSlice2StrSlice(vals)
579576
}
580577
}
581578
return e.setStrValueString
@@ -588,12 +585,9 @@ func (e *TableMapEvent) EnumStrValueString() [][]string {
588585
if len(e.EnumStrValue) == 0 {
589586
return nil
590587
}
591-
e.enumStrValueString = make([][]string, 0, len(e.EnumStrValue))
592-
for _, vals := range e.EnumStrValue {
593-
e.enumStrValueString = append(
594-
e.enumStrValueString,
595-
e.bytesSlice2StrSlice(vals),
596-
)
588+
e.enumStrValueString = make([][]string, len(e.EnumStrValue))
589+
for i, vals := range e.EnumStrValue {
590+
e.enumStrValueString[i] = e.bytesSlice2StrSlice(vals)
597591
}
598592
}
599593
return e.enumStrValueString
@@ -612,9 +606,9 @@ func (e *TableMapEvent) bytesSlice2StrSlice(src [][]byte) []string {
612606
if src == nil {
613607
return nil
614608
}
615-
ret := make([]string, 0, len(src))
616-
for _, item := range src {
617-
ret = append(ret, string(item))
609+
ret := make([]string, len(src))
610+
for i, item := range src {
611+
ret[i] = string(item)
618612
}
619613
return ret
620614
}

0 commit comments

Comments
 (0)