Keep application old version running side-by-side with the newer version in Azure Service Fabric

前端 未结 2 767
醉酒成梦
醉酒成梦 2021-02-06 16:33

I need to keep several versions of a application running at the same time on Service Fabric.

1.0 1.1 ....

Instead of updating and replacing versions, I need to k

2条回答
  •  感情败类
    2021-02-06 17:20

    Yes, you can do this as long as you have different application names. The application name is specified in the application parameters file in your Service Fabric Application (.sfproj) project. That application name value is used when Visual Studio invokes Service Fabric's New-ServiceFabricApplication PowerShell cmdlet. This means you can have two apps running in a cluster with the same application type and version as long as they have different application names. Or you could have different versions of the application type if you wish. As long as they have different application names, it doesn't matter; they're treated as unique applications.

提交回复
热议问题