Most likely, you will need to use the power shell and uninstall the application in this way, I had this problem when you start working with tags.
For instructions on connecting to a cluster using powershell, click here .
$nodes = Get-ServiceFabricNode foreach ($node in $nodes) { $replicas = Get-ServiceFabricDeployedReplica -NodeName $node.NodeName -ApplicationName "fabric:/AppNameHere" foreach ($replica in $replicas) { Remove-ServiceFabricReplica -ForceRemove -NodeName $node.NodeName -PartitionId $replica.PartitionId -ReplicaOrInstanceId $replica.ReplicaOrInstanceId } }
The exceptions that are stuck, in my experience, are often due to the fact that the application does not comply with cancellation tokens. What application did you deploy?
source share