Open retzero opened 10 months ago
No. Run IDs are UUIDs auto-generated by the system.
Is there any way we can align/associate the "same run" between two MLFlow Tracking Servers?
Or can we have an option to keep the run id
(e.g. --use-src-run-id BOOLEAN
) while importing since it is not likely to conflict? (Even if conflict I think we can just show a warning and regenerate one)
I think somehow if we can "create run" with a specific run id
(src_run_dct["info"].get("run_id", None)
) would work...
Maybe if we can have run_id: Optional[str] = None
in create_run
, then we can replace run_uuid = uuid.uuid4().hex if not run_id else run_id
(and maybe add assertion to make sure input run_id
is a valid UUID
Hello.
I'd like to keep the
run id
while importing runs. Is it possible? If not, can I manually change the run id from the DB(mysql
)?Thanks.