cadence-java-client icon indicating copy to clipboard operation
cadence-java-client copied to clipboard

Java framework for Cadence Workflow Service

Results 143 cadence-java-client issues
Sort by recently updated
recently updated
newest added

Hey, I use `com.uber.cadence.client.WorkflowOptions` to add memo and search attributes in a simple run but I am having troubles trying to find a way to add memo\search attributes for reruns....

Cannot be reproduced stably. Version: 2.7.1 ![stacktrace](https://user-images.githubusercontent.com/4523955/100399683-930e6d80-3008-11eb-82bf-d865d358f2fc.png) ![code-trace](https://user-images.githubusercontent.com/4523955/100399686-94d83100-3008-11eb-86f8-1fa3f3265b6a.png) https://uber-cadence.slack.com/archives/CM29NND28/p1606398004176000

In https://github.com/uber/cadence-java-client/pull/556/files We have seen buildkite integ test failure constently until I enlarged the timeout for buildkite https://github.com/uber/cadence-java-client/pull/568 ![5771608081890_ pic_hd](https://user-images.githubusercontent.com/4523955/102294057-43331000-3efd-11eb-8884-1996f497ca53.jpg) [cadence-java-client_build_504_java-unit-test-with-docker-services-sticky-off.log](https://github.com/uber/cadence-java-client/files/5699776/cadence-java-client_build_504_java-unit-test-with-docker-services-sticky-off.log)

During production support. I noticed an issue. When candence-frontend goes down, by some reason. Java client does not try to reconnect to cadence-frontend. This situation leads to outage of client-worker...

bug

Implements OpenTracing support using the ContextPropagator functionality recently released.

Imagine rolling out some breaking change to fix a workflow bug without versioning, most cases users just need to reset the workflows to a place that doesn't have non deterministic...

It is not allowed to call Workflow.sleep in activity implementation. We expect activity to failed with reasonable error message rather than timing out.

Implements WorkerActivitiesPerSecond as per [documentation](https://javadoc.io/doc/com.uber.cadence/cadence-client/latest/com/uber/cadence/worker/WorkerOptions.Builder.html#setWorkerActivitiesPerSecond-double-). closes https://github.com/uber/cadence-java-client/issues/553 **Key points:** - Implements WorkerActivitiesPerSecond with Throttler at PollTaskExecutor - Throttler evaluation interval defaults to 1s when interval per message is less than...

**Describe the bug** Setting workerActivitiesPerSecond via setWorkerActivitiesPerSecond() does not perform any rate limiting. **To Reproduce** Is the issue reproducible? - Yes **Steps to reproduce the behavior:** 1. Write and run...

Original issue: https://github.com/uber/cadence/issues/3475 This is more of an activity task processing issue, but it can theoretically be an issue for decision tasks as well. Right now the polling logic is...