cadence-java-client
cadence-java-client copied to clipboard
Java framework for Cadence Workflow Service
Error message: ``` > Task :compileThrift FAILED Could not find /Users/myuser/Workspace/cadence/cadence-java-client/src/main/thrift. Will ignore it [FAILURE:arguments:1] Could not open input file with realpath: /Users/myuser/.gradle/daemon/6.0/src/main/idls/thrift/cadence.thrift ```
I have an application where app classes are loaded by a different class loader than that which loads library classes (the library class loader is a parent of the application...
I have a workflow where I launch a child workflow. I have something roughly like try { } catch (e: CancellationException) { Workflow.newUntypedExternalWorkflowStub(childWorkflowId).cancel() logger.info("Cancel successful") } but even when I...
[WorkflowInterceptor](https://github.com/uber/cadence-java-client/blob/7912a840aefdd3f1ebdb96f94d709f874b95bc44/src/main/java/com/uber/cadence/workflow/WorkflowInterceptor.java#L32:18) lacks methods that are invoked before the workflow is started and after it completes. They might be necessary to inject appropriate thread local variables.
Seems there's a bug when using JavaClient WorkflowClient.execute to start a new workflow async. WorkflowClient.execute(workflow::start) JavaClient version: com.uber.cadence cadence-client 2.7.1 Cadence container that i'm running: ubercadence/server:0.11.0-auto-setup ``` 020-04-10 03:20:03.204 INFO...
For a workflow, where "memo" field is set through WorkflowOptions, calling continueAsNew fails to propagate the value to subsequent instances. So any subsequent invocation of "describe workflow" will have null...
Environment: cadence-client: 2.6.3 Cadence tag: 0.10.2 After added custom attributes properly, with success response we observe that this element is included into development_es.yaml. frontend.validSearchAttributes: value: BinaryChecksums: 1 CadenceChangeVersion: 1 CloseStatus:...
Inside a Spring application I have a WorkerFactory `Worker.Factory factory = new Worker.Factory(domain);` I want to create two workers, one to handle the Workflows, and one to handle the Activities....
If pagination through the history takes longer than decision task timeout the following failure is recorded: ``` 2020-02-18 12:59:00.507 ERROR 11 --- [oarding": 18633] c.u.c.internal.worker.PollerOptions : uncaught exception java.lang.RuntimeException: Failure...