feat(tsdb): add pipeline runtime and rename stage interfaces#145110
Closed
salvatore-campagna wants to merge 1 commit intoelastic:mainfrom
Closed
feat(tsdb): add pipeline runtime and rename stage interfaces#145110salvatore-campagna wants to merge 1 commit intoelastic:mainfrom
salvatore-campagna wants to merge 1 commit intoelastic:mainfrom
Conversation
Add the pipeline runtime that connects the composable stage framework to the doc values consumer/producer: NumericEncodePipeline, NumericDecodePipeline, NumericBlockEncoder, NumericBlockDecoder, NumericCodecFactory, StageFactory, TransformEncoder, TransformDecoder. Rename the stage-level interfaces from NumericEncoder/NumericDecoder to TransformEncoder/TransformDecoder, freeing those names for the pipeline coordinators. This aligns with the architecture in the POC (elastic#141353) where transform stages and pipeline coordinators are separate concerns.
This file contains hidden or 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
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
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.
Summary
Adds the pipeline runtime that connects the composable stage framework (from #143589 and #143934) to the doc values consumer/producer. Also renames the stage-level interfaces to align with the POC architecture (#141353).
What's included
New pipeline runtime classes:
NumericEncodePipeline,NumericDecodePipeline,NumericBlockEncoder/NumericBlockDecoder,NumericCodecFactory,StageFactory,TransformEncoder/TransformDecoder.Stage interface rename: The stage-level
NumericEncoder/NumericDecoderfrom #143934 are renamed toTransformEncoder/TransformDecoder, freeing those names for the pipeline coordinators (NumericEncoder/NumericDecoder) that the ES94 consumer/producer will interact with. This aligns with the POC architecture where transform stages and pipeline coordinators are separate concerns.Testing