Hi all! We've migrated to another cluster and the run_ids started from the begging, where is in the database the run_id is stored? How to change it?
✅ 1
a
average-beach-28850
05/15/2025, 4:13 AM
its a auto incrementing key on the run table, backed by a postgres sequence generator. If you want run ids start from some higher number so they don't overlap with the old ones, you can use
ALTER SEQUENCE
to fast forward it
👍 1
i
important-address-85681
05/15/2025, 7:49 AM
Thank you! Yes, because we have external DB which depends on those ids