What's the difference between legacy and current service fabric installation mode?

Qianqian Zu 0 Reputation points Microsoft Employee
2023-08-14T08:47:51.86+00:00

Previously, we can install service fabric via PS cmd .\CreateServiceFabricCluster.ps1 with different cluster config json files.

But now, there's only an exe file, e.g. MicrosoftServiceFabric.9.1.1583.9590.exe, installation mode is changed to run ".\MicrosoftServiceFabric.9.1.1583.9590.exe /accepteula".

Do we all use the same cluster settings now? How can I know the cluster settings?

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

1 answer

Sort by: Most helpful
  1. kobulloc-MSFT 26,321 Reputation points Microsoft Employee
    2023-08-28T19:46:26.18+00:00

    Hello, @Qianqian Zu ! Thank you for being patient as we reached out to the Service Fabric team. We are still waiting for a response but hopefully the answer from the documentation will address your question. If not, please let us know in the comments and we'd be happy to investigate this further.

    What is the difference between a standalone cluster and development environment for Azure Service Fabric?

    Azure Service Fabric offers the ability to create a standalone cluster which offers additional flexibility in hosting options in addition to Azure clusters. When creating a standalone cluster running on Windows Server, you will still use the PowerShell command which references the config file path:

    https://video2.skills-academy.com/en-us/azure/service-fabric/service-fabric-cluster-creation-for-windows-server#download-the-service-fabric-for-windows-server-package

    .\CreateServiceFabricCluster.ps1 -ClusterConfigFilePath .\ClusterConfig.Unsecure.DevCluster.json -AcceptEULA

    It's also possible to set up a development environment which will allow you to build and run Azure Service Fabric applications on a Windows development machine. This is installed using an .exe like you described (example: MicrosoftServiceFabric.9.1.1583.9590.exe). This process allows you to use Visual Studio to create Service Fabric applications, add services, or package, register, and deploy applications in your local development cluster.

    https://video2.skills-academy.com/en-us/azure/service-fabric/service-fabric-get-started

    Here are instructions on how to manage your cluster using Visual studio and Cloud Explorer:
    https://video2.skills-academy.com/en-us/azure/service-fabric/service-fabric-manage-application-in-visual-studio

    0 comments No comments

Your answer

Answers can be marked as Accepted Answers by the question author, which helps users to know the answer solved the author's problem.