Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Add a new service to existing service fabric application

How do I add a new Stateful Service to an existing service fabric application in Visual Studio 2015? I can only see the option to add a new service fabric application?

like image 660
bleeeah Avatar asked Mar 23 '17 08:03

bleeeah


People also ask

How do I update my local service Fabric cluster?

Get the list of Service Fabric versions that you can upgrade to. Start a cluster upgrade to an available version by using the Start-ServiceFabricClusterUpgrade Windows PowerShell command. If the cluster health policies aren't met, the upgrade is rolled back.

Which service helps in comparing the new application manifest with the previous version and determines which services in the application require updates?

During an upgrade, Service Fabric compares the new application manifest with the previous version and determines which services in the application require updates.

What is a partition in service Fabric?

Partition Service Fabric stateful services Partitioning in the context of Service Fabric stateful services refers to the process of determining that a particular service partition is responsible for a portion of the complete state of the service. (As mentioned before, a partition is a set of replicas).


1 Answers

The Service Fabric Application project has a Services node in the Solution Explorer in VS. You can right click on the node to add an existing service.

It's likely that you'll still need to change the application manifest manually though.

like image 90
LoekD Avatar answered Sep 18 '22 06:09

LoekD