mirror of
https://github.com/prometheus/prometheus.git
synced 2024-11-09 23:24:05 -08:00
Allocate the shards only once while reading WAL (#6093)
Signed-off-by: Ganesh Vernekar <cs15btech11018@iith.ac.in>
This commit is contained in:
parent
493ef2f771
commit
53ea6d6390
|
@ -368,6 +368,7 @@ func (h *Head) loadWAL(r *wal.Reader, multiRef map[uint64]uint64) (err error) {
|
|||
samples []record.RefSample
|
||||
tstones []tombstones.Stone
|
||||
allStones = tombstones.NewMemTombstones()
|
||||
shards = make([][]record.RefSample, n)
|
||||
)
|
||||
defer func() {
|
||||
if err := allStones.Close(); err != nil {
|
||||
|
@ -421,7 +422,6 @@ func (h *Head) loadWAL(r *wal.Reader, multiRef map[uint64]uint64) (err error) {
|
|||
if len(samples) < m {
|
||||
m = len(samples)
|
||||
}
|
||||
shards := make([][]record.RefSample, n)
|
||||
for i := 0; i < n; i++ {
|
||||
var buf []record.RefSample
|
||||
select {
|
||||
|
|
Loading…
Reference in a new issue