Add workflow-operator to micro-services - #2994
Merged
Merged
Conversation
Yicong-Huang
requested changes
Nov 4, 2024
Yicong-Huang
left a comment
Contributor
There was a problem hiding this comment.
In general it looks good. Left some comments for changes.
Yicong-Huang
reviewed
Nov 4, 2024
Yicong-Huang
reviewed
Nov 4, 2024
Yicong-Huang
reviewed
Nov 4, 2024
Yicong-Huang
reviewed
Nov 5, 2024
PurelyBlank
pushed a commit
that referenced
this pull request
Dec 4, 2024
This PR adds the `workflow-operator` to the `micro-services`. ### Dependencies of this component `workflow-operator` depends on `workflow-core` for definitions related to operator executer, sink storage and file resolver. ### How the move is done Two packages are added: - `com.kjetland.jackson.jsonSchema`, directly copy from `core/amber/src/main/scala/com/kjetland/jackson/jsonSchema` - `edu.uci.ics.amber.operator`, it contains the following codes: - all operators `core/amber/src/main/scala/edu/uci/ics/texera/workflow/operators` - `filter`, `flatmap`, `map`, `source` under `core/amber/src/main/scala/edu/uci/ics/texera/workflow/common/operators` - `amber.operator.metadata` package: include `metadata` under `core/amber/src/main/scala/edu/uci/ics/texera/workflow/common`, files like `scanner` and some constants under this directory have been merged to the usages. ### Few issues `CSVScanSourceOpExec` implements the `CheckpointSupport`, which requires the dependencies of akka. So The implementation is currently dropped in `micro-services/workflow-operator` ### Future PR plan Once this PR get merged, `micro-services/workflow-compiling-service` will be added, and then `core/amber` will be moved to `micro-services/`. --------- Co-authored-by: Yicong Huang <17627829+Yicong-Huang@users.noreply.github.com>
SarahAsad23
pushed a commit
to madisonmlin/texera
that referenced
this pull request
May 20, 2026
This PR adds the `workflow-operator` to the `micro-services`. ### Dependencies of this component `workflow-operator` depends on `workflow-core` for definitions related to operator executer, sink storage and file resolver. ### How the move is done Two packages are added: - `com.kjetland.jackson.jsonSchema`, directly copy from `core/amber/src/main/scala/com/kjetland/jackson/jsonSchema` - `edu.uci.ics.amber.operator`, it contains the following codes: - all operators `core/amber/src/main/scala/edu/uci/ics/texera/workflow/operators` - `filter`, `flatmap`, `map`, `source` under `core/amber/src/main/scala/edu/uci/ics/texera/workflow/common/operators` - `amber.operator.metadata` package: include `metadata` under `core/amber/src/main/scala/edu/uci/ics/texera/workflow/common`, files like `scanner` and some constants under this directory have been merged to the usages. ### Few issues `CSVScanSourceOpExec` implements the `CheckpointSupport`, which requires the dependencies of akka. So The implementation is currently dropped in `micro-services/workflow-operator` ### Future PR plan Once this PR get merged, `micro-services/workflow-compiling-service` will be added, and then `core/amber` will be moved to `micro-services/`. --------- Co-authored-by: Yicong Huang <17627829+Yicong-Huang@users.noreply.github.com>
yangzhang75
pushed a commit
to yangzhang75/texera
that referenced
this pull request
Jun 22, 2026
This PR adds the `workflow-operator` to the `micro-services`. ### Dependencies of this component `workflow-operator` depends on `workflow-core` for definitions related to operator executer, sink storage and file resolver. ### How the move is done Two packages are added: - `com.kjetland.jackson.jsonSchema`, directly copy from `core/amber/src/main/scala/com/kjetland/jackson/jsonSchema` - `edu.uci.ics.amber.operator`, it contains the following codes: - all operators `core/amber/src/main/scala/edu/uci/ics/texera/workflow/operators` - `filter`, `flatmap`, `map`, `source` under `core/amber/src/main/scala/edu/uci/ics/texera/workflow/common/operators` - `amber.operator.metadata` package: include `metadata` under `core/amber/src/main/scala/edu/uci/ics/texera/workflow/common`, files like `scanner` and some constants under this directory have been merged to the usages. ### Few issues `CSVScanSourceOpExec` implements the `CheckpointSupport`, which requires the dependencies of akka. So The implementation is currently dropped in `micro-services/workflow-operator` ### Future PR plan Once this PR get merged, `micro-services/workflow-compiling-service` will be added, and then `core/amber` will be moved to `micro-services/`. --------- Co-authored-by: Yicong Huang <17627829+Yicong-Huang@users.noreply.github.com>
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.
This PR adds the
workflow-operatorto themicro-services.Dependencies of this component
workflow-operatordepends onworkflow-corefor definitions related to operator executer, sink storage and file resolver.How the move is done
Two packages are added:
com.kjetland.jackson.jsonSchema, directly copy fromcore/amber/src/main/scala/com/kjetland/jackson/jsonSchemaedu.uci.ics.amber.operator, it contains the following codes:core/amber/src/main/scala/edu/uci/ics/texera/workflow/operatorsfilter,flatmap,map,sourceundercore/amber/src/main/scala/edu/uci/ics/texera/workflow/common/operatorsamber.operator.metadatapackage: includemetadataundercore/amber/src/main/scala/edu/uci/ics/texera/workflow/common, files likescannerand some constants under this directory have been merged to the usages.Few issues
CSVScanSourceOpExecimplements theCheckpointSupport, which requires the dependencies of akka. So The implementation is currently dropped inmicro-services/workflow-operatorFuture PR plan
Once this PR get merged,
micro-services/workflow-compiling-servicewill be added, and thencore/amberwill be moved tomicro-services/.