Maxim Fateev
Maxim Fateev
No need for such flag in Java. The solution is to make two API calls: 1. StartWorkflow which is going to throw "already running" 2. Wait for workflow result
Another option is to show results of a DescribeWorkflowExecution call. From its result determine what to show in the column. It might require some server side changes if some info...
Making fields public would be enough for external encoders to work.
Would you update the doc to remove the global flag?
This one is pretty outdated, but might still be relevant: https://github.com/venkat1109/cadence-codelab
Currently the only example that uses multiple task lists is [fileprocessing](https://github.com/uber/cadence-java-samples/tree/master/src/main/java/com/uber/cadence/samples/fileprocessing). Feel free to join [Cadence Slack channel ](https://join.slack.com/t/uber-cadence/shared_invite/enQtNDczNTgxMjYxNDEzLTQyYjcxZDM2YTIxMTZkMzQ0NjgxYmI3OWY5ODhiOTliM2I5MzA4NTM4MjU4YzgzZDkwNGEzOTUzNTBlNDk3Yjc) to discuss your use case.
One of the main reasons for using Cassandra was to stay available during network partitions. Any metadata solution that requires quorum to operate is going to have lower availability. I...
Commenting out panic at `ssa.go:339 `lets the module to execute, failing as expected on non resolved `go runtime.nanotime` : ``` Got a connection, launched process /private/var/folders/q2/4s0fwr9s30zbg8qr8tw8y_440000gn/T/___go_build_main_go (pid = 68435). Resolve...
Recreate session solves a different use case of opening a new session on the same computer. This feature request is to give ability to share session among multiple workflows while...
The workflow code must not depend on runId as reset operation changes it.