We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent fd3890e commit 45fa58bCopy full SHA for 45fa58b
worker/worker.go
@@ -60,7 +60,7 @@ func (w *Worker) stepBatchWithCondition(threadNum int, conditionSql string) erro
60
w.statsRecorder.RecordMetric(AlreadyIngestBytes, AlreadyIngestRows)
61
stats := w.statsRecorder.Stats(time.Since(startTime))
62
log.Printf("Globla speed: total ingested %d rows (%f rows/s), %d bytes (%f bytes/s)",
63
- AlreadyIngestRows, stats.RowsPerSecond, AlreadyIngestBytes, stats.BytesPerSecond)
+ AlreadyIngestRows+1, stats.RowsPerSecond, AlreadyIngestBytes, stats.BytesPerSecond)
64
65
if err != nil {
66
logrus.Errorf("Failed to ingest data between %s into Databend: %v", conditionSql, err)
0 commit comments