Hi all! We've migrated to another cluster and the ...
# ask-metaflow
i
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
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
Thank you! Yes, because we have external DB which depends on those ids