https://flyte.org logo
#ask-the-community
Title
# ask-the-community
n

Nicholas Roberson

06/06/2023, 9:08 PM
When trying to retrieve historical workflow executions, is there any limit on how far back we can go? For example the generic code would look like
Copy code
existing_execution = flyte_remote.fetch_execution(
            project=project, name=execution_name
        )
        return existing_execution
if it doesn't exist it will throw an error, however if it does but is ~1 year old, will there be any issues?
k

Kevin Su

06/06/2023, 9:13 PM
fetch_execution will only return one execution, are you talking about list execution?
n

Nicholas Roberson

06/07/2023, 10:00 PM
I am aware, someone was just asking at work and I couldn't find docs on any kind of expiration date on historical executions. I am just trying to get a single one.