Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand Down