You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: articles/machine-learning/how-to-deploy-mlflow-models-online-progressive.md
+7-6Lines changed: 7 additions & 6 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -16,7 +16,7 @@ ms.devlang: azurecli
16
16
17
17
# Progressive rollout of MLflow models to Online Endpoints
18
18
19
-
In this article, you'll learn how you can progressively update and deploy MLflow models to Online Endpoints without causing service disruption. You'll use blue-green deployment, also known as a safe rollout strategy, to introduce a new version of a web service to production. This strategy will allow you to roll out your new version of the web service to a small subset of users or requests before rolling it out completely.
19
+
In this article, you learn how you can progressively update and deploy MLflow models to Online Endpoints without causing service disruption. You use blue-green deployment, also known as a safe rollout strategy, to introduce a new version of a web service to production. This strategy will allow you to roll out your new version of the web service to a small subset of users or requests before rolling it out completely.
20
20
21
21
## About this example
22
22
@@ -59,7 +59,7 @@ Additionally, you will need to:
59
59
pip install mlflow azureml-mlflow
60
60
```
61
61
62
-
- If you are not running in Azure Machine Learning compute, configure the MLflow tracking URI or MLflow's registry URI to point to the workspace you are working on. See [Configure MLflow for Azure Machine Learning](how-to-use-mlflow-configure-tracking.md) for more details.
62
+
- If you are not running in Azure Machine Learning compute, configure the MLflow tracking URI or MLflow's registry URI to point to the workspace you are working on. Learn how to [configure MLflow for Azure Machine Learning](how-to-use-mlflow-configure-tracking.md).
63
63
64
64
---
65
65
@@ -109,9 +109,10 @@ The workspace is the top-level resource for Azure Machine Learning, providing a
109
109
from mlflow.deployments import get_deploy_client
110
110
```
111
111
112
-
1. Configure the deployment client
112
+
1. Configure the MLflow client and the deployment client:
@@ -220,7 +221,7 @@ We are going to exploit this functionality by deploying multiple versions of the
220
221
221
222
# [Python (MLflow SDK)](#tab/mlflow)
222
223
223
-
We can configure the properties of this endpoint using a configuration file. In this case, we are configuring the authentication mode of the endpoint to be "key".
224
+
We can configure the properties of this endpoint using a configuration file. We configure the authentication mode of the endpoint to be "key" in the following example:
224
225
225
226
```python
226
227
endpoint_config = {
@@ -280,11 +281,11 @@ We are going to exploit this functionality by deploying multiple versions of the
280
281
281
282
# [Python (MLflow SDK)](#tab/mlflow)
282
283
283
-
This functionality is not available in the MLflow SDK. Go to [Azure Machine Learning studio](https://ml.azure.com), navigate to the endpoint and retrieve the secret key from there.
284
+
This functionality is not available in the MLflow SDK. Go to [Azure Machine Learning studio](https://ml.azure.com), navigate to the endpoint, and retrieve the secret key from there.
284
285
285
286
### Create a blue deployment
286
287
287
-
So far, the endpoint is empty. There are no deployments on it. Let's create the first one by deploying the same model we were working on before. We will call this deployment "default" and it will represent our "blue deployment".
288
+
So far, the endpoint is empty. There are no deployments on it. Let's create the first one by deploying the same model we were working on before. We will call this deployment "default", representing our "blue deployment".
0 commit comments