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
service = Model.deploy(ws, "aksservice", [model], inference_config, deployment_config, aks_target)
296
298
service.wait_for_deployment(show_output = True)
@@ -318,7 +320,9 @@ Creating or attaching an AKS cluster is a one time process for your workspace. Y
318
320
If you want to create an AKS cluster for development, validation, and testing, you set `cluster_purpose = AksCompute.ClusterPurpose.DEV_TEST` when using [`provisioning_configuration()`](https://docs.microsoft.com/python/api/azureml-core/azureml.core.compute.akscompute?view=azure-ml-py). A cluster created with this setting will only have one node.
319
321
320
322
> [!IMPORTANT]
321
-
> Setting `cluster_purpose = AksCompute.ClusterPurpose.DEV_TEST` creates an AKS cluster that is not suitable for handling production traffic, and may increase inference times for the deployed model. When deploying a model to a devtest cluster, Microsoft recommends configuring 2 cores.
323
+
> Setting `cluster_purpose = AksCompute.ClusterPurpose.DEV_TEST` creates an AKS cluster that is not suitable for handling production traffic. Inference times may be longer than on a cluster created for production. Fault tolerance is also not guaranteed for dev/test clusters.
324
+
>
325
+
> We recommend that clusters created for dev/test use at least two virtual CPUs.
322
326
323
327
The following example demonstrates how to create a new Azure Kubernetes Service cluster:
0 commit comments