docs/setup: support SageMaker Managed MLflow as a tracking backend#24
Open
jiahaoli97 wants to merge 1 commit into
Open
docs/setup: support SageMaker Managed MLflow as a tracking backend#24jiahaoli97 wants to merge 1 commit into
jiahaoli97 wants to merge 1 commit into
Conversation
SageMaker Managed MLflow exposes MLflow via a resource ARN tracking URI, which requires the `sagemaker-mlflow` plugin (registers the `arn` scheme). Add it as a backend option alongside Databricks/local: - setup-guide.md: document `pip install sagemaker-mlflow` (Step 1) and the ARN tracking URI forms (Step 2.1). - setup_mlflow.py: add ensure_backend_plugin() to fail fast with a clear install hint when an arn:aws:sagemaker URI is used without the plugin. Backwards compatible (guard only triggers on arn:aws:sagemaker URIs); sagemaker-mlflow is only needed for ARN URIs. Validated e2e against a managed instance (trace landed).
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
SageMaker Managed MLflow exposes MLflow via a resource ARN tracking URI, which requires the
sagemaker-mlflowplugin (registers thearnscheme). Add it as a backend option alongside Databricks/local:pip install sagemaker-mlflow(Step 1) and the ARN tracking URI forms (Step 2.1).Backwards compatible (guard only triggers on arn:aws:sagemaker URIs); sagemaker-mlflow is only needed for ARN URIs. Validated e2e against a managed instance (trace landed).