Skip to content

Commit

Permalink
block-builder: OOO native histograms are a non-terminal error (#9648)
Browse files Browse the repository at this point in the history
This applies the same logic from #9567 to block-builder. This currently has the effect of stopping block-builder ingestion when an OOO native histogram is encountered.
  • Loading branch information
seizethedave authored Oct 16, 2024
1 parent e1d5ba0 commit b0fcf34
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions pkg/blockbuilder/tsdb.go
Original file line number Diff line number Diff line change
Expand Up @@ -242,6 +242,8 @@ func checkTSDBAppendError(err error) error {
return nil
case errors.Is(err, histogram.ErrHistogramSpansBucketsMismatch):
return nil
case errors.Is(err, storage.ErrOOONativeHistogramsDisabled):
return nil
}
return err
}
Expand Down

0 comments on commit b0fcf34

Please sign in to comment.