-
Notifications
You must be signed in to change notification settings - Fork 75
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Introduce State Related Operators #2858
Draft
aglinxinyuan
wants to merge
225
commits into
master
Choose a base branch
from
xinyuan-state-operators
base: master
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Draft
Conversation
This file contains 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
aglinxinyuan
requested review from
Yicong-Huang
and removed request for
Yicong-Huang
September 23, 2024 00:48
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.
This PR introduces
State to Data
andData to State
operators, enabling users to convert between data and state.New Operator Groups and Constants:
STATE_GROUP
toOperatorGroupConstants
and updated the group hierarchy to include this new group.New Operators:
DataToState
Operator to convert data into state.StateToData
Operator to convert state back into data.The
State to Data
operator retrieves the first tuple from the first port, converting it into a state while taking all tuples from the second port as data to pass downstream. The user can configure whether the state is passed once or to all downstream operators.The
Data to State
operator retrieves the first state from the input port, converting it into a tuple and output to the first output port while taking all tuples from the input port as data and output to the second output port. The user has to define the state's scheme.Even though this pair of operators will only take the first tuple/state, it's possible to nest multiple pairs of those operators to convert multiple tuples/states.
This pull request introduces a new feature for state management within the workflow system. The changes include adding new operator groups and implementing two new operators:
DataToStateOpDesc
andStateToDataOpDesc
. These operators facilitate the conversion between data and state within workflows.