()
| 170 | } |
| 171 | |
| 172 | func (s *Scanner) metaScanLoopRuntime() *scanLoopRuntime { |
| 173 | return &scanLoopRuntime{ |
| 174 | mode: modeCheckMeta, |
| 175 | nextBatch: s.worker.getKvsInBatch, |
| 176 | interval: s.cfg.IntervalMeta, |
| 177 | batchSize: uint64(s.cfg.BatchSize), |
| 178 | nextIndex: 0, |
| 179 | } |
| 180 | } |
| 181 | |
| 182 | func (s *Scanner) blobScanLoopRuntime() *scanLoopRuntime { |
| 183 | return &scanLoopRuntime{ |