Working on deployment of 170 ml models using ML studio and azure Kubernetes service which is referred on the below doc link "https://github.com/MicrosoftDocs/azure-docs/blob/master/articles/machine-learning/how-to-deploy-azure-kubernetes-service.md".
We are training the model using python script with the custom environment and we are registering the ml model on the Azure ML services. Once we register the mode we are deploying it on the AKS by using the container images.
While deploying the ML model we are able to deploy up 10 to 11 models per pods for each Node in AKS. When we try to deploy the model on the same node we are getting deployment timeout error and we are getting the below error message.
For deploying the model in Azure Kubernetes Service using python language with below deployment configuration (auth_enabled = Flase, autoscale_enabled = Flase, cpu_cores = 0.6, memory_gb = 1, cpu_cores_limit = 2, memory_gb_limit = 2).
We also checked on the azure documentation and we could able to find any configuration or deployment setup for aks nodes.
Can you please provide us more clarification regarding "The number of models to be deployed is limited to 1,000 models per deployment (per container)" and Can you please give insight/feedback on how to increase the number of a ml model deployed in each node Azure Kubernetes Service. Thanks!