@@ -14,6 +14,7 @@ import (
14
14
"github.com/prometheus/prometheus/model/labels"
15
15
"github.com/prometheus/prometheus/tsdb/chunks"
16
16
"github.com/prometheus/prometheus/tsdb/record"
17
+ "github.com/stretchr/testify/assert"
17
18
"github.com/stretchr/testify/require"
18
19
19
20
"github.com/grafana/loki/v3/pkg/distributor/writefailures"
@@ -302,3 +303,42 @@ func TestSeriesRecoveryNoDuplicates(t *testing.T) {
302
303
}
303
304
require .Equal (t , expected , result .resps [0 ].Streams )
304
305
}
306
+
307
+ func TestRecoveryWritesContinuesEntryCountAfterWALReplay (t * testing.T ) {
308
+ ingesterConfig := defaultIngesterTestConfig (t )
309
+ limits , err := validation .NewOverrides (defaultLimitsTestConfig (), nil )
310
+ require .NoError (t , err )
311
+
312
+ store := & mockStore {
313
+ chunks : map [string ][]chunk.Chunk {},
314
+ }
315
+
316
+ readRingMock := mockReadRingWithOneActiveIngester ()
317
+
318
+ i , err := New (ingesterConfig , client.Config {}, store , limits , loki_runtime .DefaultTenantConfigs (), nil , writefailures.Cfg {}, constants .Loki , log .NewNopLogger (), nil , readRingMock , nil )
319
+ require .NoError (t , err )
320
+
321
+ var (
322
+ users = 10
323
+ streamsCt = 1000
324
+ entriesPerStream = 50
325
+ )
326
+
327
+ reader , _ := buildMemoryReader (users , streamsCt , entriesPerStream , true )
328
+
329
+ recoverer := newIngesterRecoverer (i )
330
+
331
+ err = RecoverWAL (context .Background (), reader , recoverer )
332
+ require .NoError (t , err )
333
+
334
+ recoverer .Close ()
335
+
336
+ // Check that the entry count continues counting from the last WAL entry to avoid overwriting existing entries in the WAL on future replays.
337
+ for _ , inst := range i .getInstances () {
338
+ err := inst .forAllStreams (context .Background (), func (s * stream ) error {
339
+ assert .Equal (t , int64 (entriesPerStream ), s .entryCt )
340
+ return nil
341
+ })
342
+ require .NoError (t , err )
343
+ }
344
+ }
0 commit comments