From bdc914faff00fd4cc3f2f32281ee6d65ebf328be Mon Sep 17 00:00:00 2001 From: Kevin Wallimann Date: Thu, 15 Dec 2022 16:15:19 +0100 Subject: [PATCH] Update README.md Change default values for archive_dag_instance call --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index b215e9e8a..7472de272 100644 --- a/README.md +++ b/README.md @@ -307,9 +307,9 @@ archived, but discarded. The archival process can be executed with the following DB procedure ```sql CALL archive_dag_instances( -i_to_ts => (now() - interval '12 months')::timestamp, +i_to_ts => (now() - interval '3 months')::timestamp, i_max_records => 200000, -i_chunk_size => 40000 +i_chunk_size => 10000 ); ``` This would archive all dag instances (and referenced job instances and events), which were created over 12 months ago.