Workflow deletion in dashboard

Hi,

Using temporal server locally using docker.
Do workflows get automatically deleted after some days from temporal server dashboard?
Also, can we delete workflows manually?

1 Like

hello @nehapatil7199

you can use temporal cli GitHub - temporalio/cli: Command-line interface for running Temporal Server and interacting with Workflows, Activities, Namespaces, and other parts of Temporal

temporal workflow delete -w workflowId -r runId

1 Like

Do workflows get automatically deleted after some days from temporal server dashboard?

Yes, completed executions are removed from both persistence stores (primary and visibility) from time when they close to when they reach the namespace retention period (that you can configure).

Also, can we delete workflows manually?

Yes as mentioned but what’s the use case?