Skip to content
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

Add workflow rules #7437

Merged
merged 6 commits into from
Apr 2, 2025
Merged

Add workflow rules #7437

merged 6 commits into from
Apr 2, 2025

Conversation

ychebotarev
Copy link
Contributor

@ychebotarev ychebotarev commented Mar 6, 2025

What changed?

Add implementation to the following API:

  • CreateWorkflowRule
  • DescribeWorkflowRule
  • DeleteWorkflowRule
  • ListWorkflowRules

Add initial rule implementation - activity will be paused on activity Retry.
Add functional test for that.

All functions are behind feature flag.

Why?

Part of workflow rules work.

How did you test it?

Add unit test.
Add func test.

Potential risks

N/A

Copy link
Member

@alexshtin alexshtin left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Looks good to me. Ready to approve after comments are addressed.

Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I always wanted to remove namespace_handler or at least change its name and interfaces. handler is suffix reserved for gRPC handlers, I wouldn't add new code to it but add it directly to workflow_handler.go.

Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Here you have part of validation in workflow_handler.go and another part here. It adds more confusion than help.

Copy link
Contributor Author

@ychebotarev ychebotarev Mar 13, 2025

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

namespace_handle is a bad name, sure, and should be renamed.
But functions in namespace handle I added doesn't depend on gRPC.
So there is a clear separation - workflow_handle handle gRPC part, and "namespace...hm...handle" handles actual work.
All validation is a workflow_handle validation code done agains request.

Comment on lines 705 to 707
existingNamespace := getResponse.Namespace

config := existingNamespace.Config
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I personally don't like such variables. getResponse (btw, it is a very bad name) is still accessible and someone will use one day. If you just rename getResponse to existing you will get the same English but w/o extra vars.
I agree, it is matter of personal preferences though.

Copy link
Contributor Author

@ychebotarev ychebotarev Mar 13, 2025

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I think I copy/paster it from somewhere, getResponse was a weird name. I rename it.

But the rest - it is easier for me to read existingNamespace.Config then getNamespaceResponse.Namespace.Config, less cognitive load

Copy link
Member

@alexshtin alexshtin left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I still don't agree with namespace_handler.go separation, but I won't fight for it.

@ychebotarev ychebotarev force-pushed the y_workflow_rules branch 2 times, most recently from a9e0559 to 34bd801 Compare March 25, 2025 17:49
@ychebotarev ychebotarev force-pushed the y_workflow_rules branch 4 times, most recently from 03f1aa8 to 42758bd Compare April 1, 2025 23:09
ychebotarev added a commit to temporalio/api that referenced this pull request Apr 2, 2025
<!-- Describe what has changed in this PR -->
**What changed?**
Note:
->[Previous PR we use to
review](https://github.com/temporalio/api/pull/550)<-
It has lots of discussion, and current implementation is mostly what we
settle on. With some changes from design review.

Add definitions for the following API:
* CreateWorkflowRule
* DescribeWorkflowRule
* DeleteWorkflowRule
* ListWorkflowRules

Add definitions for Rules, and Actions.
Corresponding Server PR contains implementation of those APIs.

<!-- Tell your future self why have you made these changes -->
**Why?**
Working on workflow rules.

<!-- Are there any breaking changes on binary or code level? -->
**Breaking changes**
New API is added.

<!-- If this breaks the Server, please provide the Server PR to merge
right after this PR was merged. -->
**Server PR**

[Implementation](temporalio/temporal#7437)
temporal-cicd bot pushed a commit to temporalio/api-go that referenced this pull request Apr 2, 2025
<!-- Describe what has changed in this PR -->
**What changed?**
Note:
->[Previous PR we use to
review](https://github.com/temporalio/api/pull/550)<-
It has lots of discussion, and current implementation is mostly what we
settle on. With some changes from design review.

Add definitions for the following API:
* CreateWorkflowRule
* DescribeWorkflowRule
* DeleteWorkflowRule
* ListWorkflowRules

Add definitions for Rules, and Actions.
Corresponding Server PR contains implementation of those APIs.

<!-- Tell your future self why have you made these changes -->
**Why?**
Working on workflow rules.

<!-- Are there any breaking changes on binary or code level? -->
**Breaking changes**
New API is added.

<!-- If this breaks the Server, please provide the Server PR to merge
right after this PR was merged. -->
**Server PR**

[Implementation](temporalio/temporal#7437)
@ychebotarev ychebotarev merged commit bd25609 into main Apr 2, 2025
50 checks passed
@ychebotarev ychebotarev deleted the y_workflow_rules branch April 2, 2025 17:56
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants