Skip to content

Tags: sharath1709/cadence

Tags

v0.3.11

Toggle v0.3.11's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
bugfix: mutable state should be reset if the operation is not success… (

uber#667)

v0.3.10

Toggle v0.3.10's commit message
hotfix issue uber#658

v0.3.9

Toggle v0.3.9's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
Update docker image with latest cadence release (uber#614)

Fix config template to include new required config changes to bring up
the Cadence server.

v0.3.8

Toggle v0.3.8's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
Revert "history service should do event reordering making sure corres…

…ponding … (uber#601)" (uber#611)

This reverts commit 6164b73.

v0.3.7

Toggle v0.3.7's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
bugfix: parent workflow, when signaling child workflow, can experienc… (

uber#607)

* bugfix: parent workflow, when signaling child workflow, can experience deadlock, if child workflow, at the same time, is completed.

* bugfix: handling workflow using decision to cancel itself.

v0.3.6

Toggle v0.3.6's commit message
Bug fixes for throttling burst size and activity timeout processing

v0.3.5

Toggle v0.3.5's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
fix flicky TestVisibility (uber#506)

v0.3.4

Toggle v0.3.4's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
TimerQueueProcessor stuck fix on large backlog on available timers (u…

…ber#460)

TimerQueueProcessor issues a query to DB for visibilityTime '>=' from
the readlevel.  This could result in reading same timer multiple times
and trips the processor in thinking it fired all available timers as the
number of tasks returned back to the caller would be less than batch
size.
Updated the logic to return an explicit flag back to the caller so it
can immediately callback again when there are more timers to fire.

fixes uber#461.

v0.3.3

Toggle v0.3.3's commit message
This release has a lot of new features and some important stability f…

…ixes for known Cadence server issues. This release also includes few schema changes to both cadence and visibility keyspaces. It is required to deploy schema version 0.2 of cadence and visibility keyspaces before deploying this release.

This tag version update includes schema version updates in docker scripts.

v0.3.2

Toggle v0.3.2's commit message
Create a single connection pool per host (uber#359)

When history service comes up it creates a gocql client for execution manager and then uses the same client for all shards for making persistence calls. Also created config knobs to configure number of connections for both events and execution manager clients.

Also include shard tag for shard manager calls.

fixes uber#307