Service Fabric Mesh Preview - Deployment Time Limit?

Micah McKittrick 946 Reputation points Microsoft Employee
2019-10-30T19:27:27.497+00:00

While Azure Service Fabric Mesh is in preview, is there a limit to how long I can keep my mesh application deployed?

Sourced from FAQ

Azure Service Fabric
Azure Service Fabric
An Azure service that is used to develop microservices and orchestrate containers on Windows and Linux.
253 questions
0 comments No comments
{count} votes

Accepted answer
  1. olufemia-MSFT 2,861 Reputation points
    2019-10-30T21:50:24.883+00:00

    Welcome to the Microsoft Q&A platform (Preview).

    We have currently limited the lifetime of an application to two days. This is in order to maximize the use of the free cores allocated to the preview. As a result, you are only allowed to run a given deployment continuously for 48 hours, after which time it will be shut down.
    If you see this happen, you can validate that the system shut it down by running the az mesh app show command in the Azure CLI. Check to see if it returns "status": "Failed", "statusDetails": "Stopped resource due to max lifetime policies for an application during preview. Delete the resource to continue."
    For example:
    cli

    ~$ az mesh app show --resource-group myResourceGroup --name helloWorldApp  
    {  
      "debugParams": null,  
      "description": "Service Fabric Mesh HelloWorld Application!",  
      "diagnostics": null,  
      "healthState": "Ok",  
      "id": "/subscriptions/1134234-b756-4979-84re-09d671c0c345/resourcegroups/myResourceGroup/providers/Microsoft.ServiceFabricMesh/applications/helloWorldApp",  
      "location": "eastus",  
      "name": "helloWorldApp",  
      "provisioningState": "Succeeded",  
      "resourceGroup": "myResourceGroup",  
      "serviceNames": [  
        "helloWorldService"  
      ],  
      "services": null,  
      "status": "Failed",  
      "statusDetails": "Stopped resource due to max lifetime policies for an application during preview. Delete the resource to continue.",  
      "tags": {},  
      "type": "Microsoft.ServiceFabricMesh/applications",  
      "unhealthyEvaluation": null  
    }  
    

    To delete the resource group, use the az group delete command.

    Sourced from FAQ

    0 comments No comments

0 additional answers

Sort by: Most helpful