feat(tsdb): add MetadataBuffer for pipeline stage metadata
#140521
+976
−0
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
TSDB codec pipeline stages need to serialize metadata (offsets, counts, flags) efficiently. This PR introduces
MetadataBuffer, a reusable byte buffer with variable-length integer encoding that follows Lucene's conventions.The buffer supports three encoding formats:
Key design decisions:
reset(), avoiding allocations in hot pathstoByteArray()returns a copy of written bytes; no mutable internal state exposedIllegalStateExceptionMetadataWriterandMetadataReaderinterfaces enable dependency injection and mocking for testing encode/decode stages independentlyThe class operates in implicit write/read modes. After writing, call
setPosition(0)to switch to read mode. Thesize()method returns bytes written (read boundary), whileposition()returns current cursor location.Unit tests cover round-trip correctness for random values, boundary conditions, error handling (negative values, read past end, invalid encodings), buffer growth cycles, and reset/reuse patterns.