Reputation: 8208
I used to work on a Service Fabric project. Now I have several Fabric.exe processes running. A couple of them take up a lot of memory. When I try to kill them in Windows Task Manager, something starts new Fabric.exe processes. I also have other processes with "Fabric" in the name that I don't want anymore. Two questions:
Upvotes: 1
Views: 2928
Reputation: 11361
To do what you want you have to remove the cluster. These are SF services used for your cluster nodes.
You can remove your cluster services via 'Cluster Manager' or via 'POwershell'.
Via Cluster Manager:
Via Powershell:
Executing the following powershell script(as administrator) instead:
C:\Program Files\Microsoft SDKs\Service Fabric\ClusterSetup\CleanCluster.ps1'
Upvotes: 3