forked from grafana/loki
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
3 changed files
with
788 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,135 @@ | ||
package partition | ||
|
||
import ( | ||
"context" | ||
"strconv" | ||
"sync" | ||
"time" | ||
|
||
"github.com/go-kit/log" | ||
"github.com/go-kit/log/level" | ||
"github.com/prometheus/client_golang/prometheus" | ||
"github.com/prometheus/client_golang/prometheus/promauto" | ||
"go.uber.org/atomic" | ||
) | ||
|
||
type refactoredPartitionCommitter struct { | ||
commitRequestsTotal prometheus.Counter | ||
commitRequestsLatency prometheus.Histogram | ||
commitFailuresTotal prometheus.Counter | ||
lastCommittedOffset prometheus.Gauge | ||
|
||
logger log.Logger | ||
reader ReaderIfc | ||
commitFreq time.Duration | ||
|
||
toCommit *atomic.Int64 | ||
wg sync.WaitGroup | ||
cancel context.CancelFunc | ||
} | ||
|
||
func newRefactoredCommitter(reader ReaderIfc, commitFreq time.Duration, logger log.Logger, reg prometheus.Registerer) *refactoredPartitionCommitter { | ||
c := &refactoredPartitionCommitter{ | ||
logger: logger, | ||
reader: reader, | ||
commitFreq: commitFreq, | ||
commitRequestsTotal: promauto.With(reg).NewCounter(prometheus.CounterOpts{ | ||
Name: "loki_ingest_storage_reader_offset_commit_requests_total", | ||
Help: "Total number of requests issued to commit the last consumed offset (includes both successful and failed requests).", | ||
ConstLabels: prometheus.Labels{"partition": strconv.Itoa(int(reader.Partition()))}, | ||
}), | ||
commitFailuresTotal: promauto.With(reg).NewCounter(prometheus.CounterOpts{ | ||
Name: "loki_ingest_storage_reader_offset_commit_failures_total", | ||
Help: "Total number of failed requests to commit the last consumed offset.", | ||
ConstLabels: prometheus.Labels{"partition": strconv.Itoa(int(reader.Partition()))}, | ||
}), | ||
commitRequestsLatency: promauto.With(reg).NewHistogram(prometheus.HistogramOpts{ | ||
Name: "loki_ingest_storage_reader_offset_commit_request_duration_seconds", | ||
Help: "The duration of requests to commit the last consumed offset.", | ||
ConstLabels: prometheus.Labels{"partition": strconv.Itoa(int(reader.Partition()))}, | ||
NativeHistogramBucketFactor: 1.1, | ||
NativeHistogramMaxBucketNumber: 100, | ||
NativeHistogramMinResetDuration: time.Hour, | ||
Buckets: prometheus.DefBuckets, | ||
}), | ||
lastCommittedOffset: promauto.With(reg).NewGauge(prometheus.GaugeOpts{ | ||
Name: "loki_ingest_storage_reader_last_committed_offset", | ||
Help: "The last consumed offset successfully committed by the partition reader. Set to -1 if not offset has been committed yet.", | ||
ConstLabels: prometheus.Labels{"partition": strconv.Itoa(int(reader.Partition()))}, | ||
}), | ||
toCommit: atomic.NewInt64(-1), | ||
} | ||
|
||
// Initialize the last committed offset metric to -1 to signal no offset has been committed yet | ||
c.lastCommittedOffset.Set(-1) | ||
|
||
if commitFreq > 0 { | ||
c.wg.Add(1) | ||
ctx, cancel := context.WithCancel(context.Background()) | ||
c.cancel = cancel | ||
go c.autoCommitLoop(ctx) | ||
} | ||
|
||
return c | ||
} | ||
|
||
func (c *refactoredPartitionCommitter) autoCommitLoop(ctx context.Context) { | ||
defer c.wg.Done() | ||
commitTicker := time.NewTicker(c.commitFreq) | ||
defer commitTicker.Stop() | ||
|
||
previousOffset := c.toCommit.Load() | ||
for { | ||
select { | ||
case <-ctx.Done(): | ||
return | ||
case <-commitTicker.C: | ||
currOffset := c.toCommit.Load() | ||
if currOffset == previousOffset { | ||
continue | ||
} | ||
|
||
if err := c.Commit(ctx, currOffset); err == nil { | ||
previousOffset = currOffset | ||
} | ||
} | ||
} | ||
} | ||
|
||
func (c *refactoredPartitionCommitter) EnqueueOffset(o int64) { | ||
if c.commitFreq > 0 { | ||
c.toCommit.Store(o) | ||
} | ||
} | ||
|
||
func (c *refactoredPartitionCommitter) Commit(ctx context.Context, offset int64) error { | ||
startTime := time.Now() | ||
c.commitRequestsTotal.Inc() | ||
|
||
if err := c.reader.Commit(ctx, offset); err != nil { | ||
level.Error(c.logger).Log("msg", "failed to commit offset", "err", err, "offset", offset) | ||
c.commitFailuresTotal.Inc() | ||
c.commitRequestsLatency.Observe(time.Since(startTime).Seconds()) | ||
return err | ||
} | ||
|
||
level.Debug(c.logger).Log("msg", "successfully committed offset", "offset", offset) | ||
c.lastCommittedOffset.Set(float64(offset)) | ||
c.commitRequestsLatency.Observe(time.Since(startTime).Seconds()) | ||
return nil | ||
} | ||
|
||
func (c *refactoredPartitionCommitter) Stop() { | ||
if c.commitFreq <= 0 { | ||
return | ||
} | ||
c.cancel() | ||
c.wg.Wait() | ||
|
||
offset := c.toCommit.Load() | ||
if offset < 0 { | ||
return | ||
} | ||
// Commit has internal timeouts, so this call shouldn't block for too long | ||
_ = c.Commit(context.Background(), offset) | ||
} |
Oops, something went wrong.