cadence-java-client
cadence-java-client copied to clipboard
Java framework for Cadence Workflow Service
https://github.com/temporalio/sdk-java/pull/69 https://github.com/temporalio/sdk-java/pull/73
https://github.com/temporalio/sdk-java/pull/63
https://github.com/temporalio/sdk-java/pull/61
Hello team! I've noticed that graphs of next metrics on Activity shows are almost same value in case of Activity attempt failure: - cadence-activity-execution-failed - cadence-activity-task-failed I propose to rethink...
It seems `WorkflowReplayer.replayWorkflowExecutionFromResource` cannot detect non-deterministic change for the last decision. Repro workflow: ``` public static class TestGetVersionAddedImpl implements TestWorkflow1 { @Override public String execute(String taskList) { Workflow.sleep(10); // This...
I am implementing a Parent Workflow **P1** and inside that I am implementing child workflows **C!1,C2,C3,C4**. The child workflows are implemented sequentially. Logic : P1 -> Called C1 -> Called...
Hi, I noticed that context propagation was added for Workflow and Activity - https://github.com/uber/cadence-java-client/pull/428 While missing it for LocalActivity, Signal, Query.