Skip to content

Commit c9dbadf

Browse files
committed
small fix
1 parent 9354160 commit c9dbadf

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

logservice/eventstore/event_store.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -166,7 +166,7 @@ func New(
166166
) EventStore {
167167
clientConfig := &logpuller.SubscriptionClientConfig{
168168
RegionRequestWorkerPerStore: 16,
169-
ChangeEventProcessorNum: 32,
169+
ChangeEventProcessorNum: 64,
170170
AdvanceResolvedTsIntervalInMs: 600,
171171
}
172172
client := logpuller.NewSubscriptionClient(

logservice/schemastore/persist_storage.go

+1
Original file line numberDiff line numberDiff line change
@@ -292,6 +292,7 @@ func (p *persistentStorage) getTableInfo(tableID int64, ts uint64) (*common.Tabl
292292
return store.getTableInfo(ts)
293293
}
294294

295+
// TODO: this may consider some shouldn't be send ddl, like create table, does it matter?
295296
func (p *persistentStorage) getMaxEventCommitTs(tableID int64, ts uint64) uint64 {
296297
p.mu.RLock()
297298
defer p.mu.RUnlock()

0 commit comments

Comments
 (0)