I am using https://github.com/mlflow/mlflow-export-import to export experiments from local mlruns/ to a RDS Postgres. However, for each new imported experiment, the experiment ID is not sequential. It is the sum of all runs and experiments imported before.
For example:
ID 0: Default, 0 runs
ID 1: Experiment 1, 88 runs
ID 90: Experiment 2, 86 runs
ID 177: Experiment 3, 1 run
ID 179: Experiment 4, 10 runs
Since the experiments ids can not be setted mannualy, there is a way to change the mlflow-export-import code to use the original experiment id? Or, at least, use incremental experiment ids for each new imported experiment?