uber-cadence

Solutions to fix stuck timers / activities in Cadence/SWF/StepFunctions

♀尐吖头ヾ 提交于 2020-12-13 04:54:34
问题 So timers are durable in workflow engines like Cadence, SWF and Step functions. Durable timer is useful for use cases that need to wait for a long period of time, then wake up to execute some business logic. Because of the durability, it’s resilient to various failures, making the programming experience and model much better for developers. But what if you want to change a timer after it has started? Like this example: @Override public void sampleWorkflowWithTimer(Input input){ //... //some