Skip to content

Commit

Permalink
fix: adjust dml fetch interval
Browse files Browse the repository at this point in the history
  • Loading branch information
Rustin170506 committed Sep 26, 2024
1 parent c14bc86 commit 280d515
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pkg/statistics/handle/autoanalyze/priorityqueue/queue2.go
Original file line number Diff line number Diff line change
Expand Up @@ -109,7 +109,7 @@ func (pq *AnalysisPriorityQueueV2) init() error {
}

func (pq *AnalysisPriorityQueueV2) run() {
dmlFetchInterval := time.NewTicker(time.Second * 10)
dmlFetchInterval := time.NewTicker(time.Minute * 1)
defer dmlFetchInterval.Stop()
timeRefreshInterval := time.NewTicker(time.Minute * 10)
defer timeRefreshInterval.Stop()
Expand Down

0 comments on commit 280d515

Please sign in to comment.