-
Notifications
You must be signed in to change notification settings - Fork 0
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
Support reset reapply exclude types for batch reset #187
Comments
Issue: Proto API and Server Changes for Batch ResetThe pull requests temporalio/api#348 and temporalio#5360 introduced However, we still need to update the corresponding proto API and server changes for batch reset. Specifically, this likely involves adding a new field This change is necessary to maintain consistency and allow for batch resets that correctly exclude certain event types. Here are the proposed changes:
By making these changes, we ensure that the batch reset functionality is updated to use the new |
This looks like a feature request. Thanks for the suggestion! You can work around this by modifying the batch command to use For example, to exclude temporal workflow reset-batch --query 'ExecutionStatus = "Running" AND WorkflowType="YourWorkflow"' --reset-options '{"reset_reapply_exclude_types": ["WorkflowType"]}' |
This is a feature request. Thank you for the request! There are no explicit limitations to the size of the input to the temporal workflow signal \
--workflow-id MyWorkflowId \
--name MySignal \
--input '{"Input": "As-JSON"}' \
--query 'ExecutionStatus = "Running" AND WorkflowType="YourWorkflow"' \
--reason "Testing" This will send the signal to all Workflows that match the |
Thanks for reporting this! This is a feature request to add support for batch reset with the new We are aware of this and are working to implement it. You can follow the progress in the linked PRs, and we will update the documentation once this feature is available. |
This is a feature request. Thank you for your request! To work around this issue, you could use the For more information on |
Thanks for reporting this! |
temporalio/api#348 introduced
ResetReapplyExcludeType
and deprecatedResetReapplyType
, and temporalio#5360 implemented support for this in the server.However, we need to make the corresponding proto api and server changes for batch reset. Specifically, this will probably mean adding a new field
reset_reapply_exclude_types
, and deprecatingreset_reapply_type
in ResetOptions.The text was updated successfully, but these errors were encountered: