arjunanan6 commented on issue #33370:
URL: https://github.com/apache/airflow/issues/33370#issuecomment-1813925950

   Hi @SeethalakshmiB, unfortunately, I've not been able to get started on this 
- too much going on. However, you can clear this out manually provided you have 
access to the metadata database. I assume that you are using the 
[default](https://airflow.apache.org/docs/apache-airflow/stable/configurations-ref.html)
 session lifetime configuration of 30 days. 
   
   If that's the case, simply back up your session table and run (postgres 
syntax):
   ```sql
   DELETE FROM session
   WHERE expiry < NOW() - INTERVAL '30 days';
   ```
   
   


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: [email protected]

For queries about this service, please contact Infrastructure at:
[email protected]

Reply via email to