Yimin Chen
Yimin Chen
The ListWorkflowExecutions is now working for basic visibility, so we probably should deprecate ListOpen/CloseWorkflowExecutions
Temporal server provide default authorizer that user can specify via [config](https://github.com/temporalio/temporal/blob/c0fbdf96c4a5e956b44ff0fe70c2ea38b2157264/common/config/config.go#L461-L462) User who want to run with a different authorizer can do so by using the [WithAuthorizer](https://github.com/temporalio/temporal/blob/c0fbdf96c4a5e956b44ff0fe70c2ea38b2157264/temporal/server_option.go#L97) extension point. See...
Set per task queue rate limit to 1, observe the RPS stay at around 1, then reboot matching and you will see a big spike of throughput for the first...
There are many uses cases where the ability to pause a workflow would be very much appreciated. Pause a workflow would mean no more workflow task would be scheduled for...
History uses mutable state cache and history event cache, and the caches are per shard, this is not efficient and hard to config. We should make cache host level that...
The ListWorkflow API for basic visibility does not support filter like `StartTime > "2022-05-16T10:41:43-06:00"`, it require the filter in the form of `StartTime BETWEEN "2022-05-16T10:41:43-06:00" AND "2022-05-17T11:41:43-06:00"`. This is not...
Currently, we load all persistence libraries no matter what persistence the server is configured to run with. With recent added auth plugin, we are now also pull in aws libraries...
This is due to worker not processing query fast enough (either is worker too slow or they are stuck), or it could also caused by concurrent queries (2 queries come...
We see one weird workflow task failure from SDK that keeps retrying and eventually succeed after 13K retry attempts. The workflow logic is it schedules 16 activities and wait for...
We have history scavenger to clean up dangling history data, but only for Cassandra based persistence. We need to have that for SQL based persistence as well. The major missing...