# Closed workflow not visible in the UI

**URL:** https://community.temporal.io/t/closed-workflow-not-visible-in-the-ui/5189
**Category:** Community Support
**Tags:** cassandra, web-ui
**Created:** [July 2, 2022, 9:32am UTC](https://community.temporal.io/t/closed-workflow-not-visible-in-the-ui/5189 "2022-07-02T09:32:19Z")
**Posts on this page:** 2
**Page:** 1

<div class="post-metadata">

### Author: ![Sanil\_Khurana](https://sea2.discourse-cdn.com/flex016/user_avatar/community.temporal.io/sanil_khurana/32/2334_2.png) [@Sanil\_Khurana](https://community.temporal.io/u/Sanil_Khurana)
#### Post date: [July 2, 2022, 9:32am UTC](https://community.temporal.io/t/closed-workflow-not-visible-in-the-ui/5189/1 "2022-07-02T09:32:19Z")

</div>

Hey guys, we have been using and testing out temporal for the last couple of weeks, and we were facing an issue. Closed workflows disappear after 1 day or so from the web UI. This doesn’t affect running workflows which are still visible. Is there any configuration that I can do to disable this feature or increase the time workflows are visible within the UI?  
We are using the Typescript SDK, Cassandra for persistence if that’s important

---

<div class="post-metadata">

### Author: ![tihomir](https://sea2.discourse-cdn.com/flex016/user_avatar/community.temporal.io/tihomir/32/6580_2.png) [@tihomir](https://community.temporal.io/u/tihomir)
#### Post date: [July 2, 2022, 4:05pm UTC](https://community.temporal.io/t/closed-workflow-not-visible-in-the-ui/5189/2 "2022-07-02T16:05:04Z")

</div>

Default [retention](https://docs.temporal.io/concepts/what-is-a-retention-period/) for “default” namespace for docker compose setups using auto-setup image is set to [1 day](https://github.com/temporalio/docker-builds/blob/main/docker/auto-setup.sh#L55).

You can update the retention period via tctl for example:

`tctl --ns <namespace_name> n u --rd 2`

where the retention period (rd) value is in days.  
Note the min retention period is 1 day and max is 30.  
If you need to persist your workflow histories and visibility data past max 30 days you would need to look into using [archival](https://docs.temporal.io/concepts/what-is-archival/).
