Application is throwing error after deploying in new cluster

Pushkar Srivastava 0 Reputation points Microsoft Employee
2026-04-10T12:38:45.71+00:00

Application deployment is successful, but it is throwing the error in newly deployed cluster
Partition is below target replica or instance count.
error details

fabric:/AzureStackEdge/AgentWebRole -1 1

(Showing 0 out of 0 instances. Total available instances: 0)

For more information see: http://aka.ms/sfhealth

Azure Service Fabric
Azure Service Fabric

An Azure service that is used to develop microservices and orchestrate containers on Windows and Linux.


1 answer

Sort by: Most helpful
  1. Anonymous
    2026-04-10T13:28:23.0433333+00:00

    Hello Pushkar,

    The message “Partition is below target replica or instance count” is a standard Service Fabric system health report generated by System.FM. It means the partition is currently running fewer replicas (stateful) or instances (stateless) than the service configuration expects. Depending on whether the partition is below the target count versus below the minimum allowed count, Service Fabric can report this as a warning or an error. (see: https://learn.microsoft.com/en-us/azure/service-fabric/service-fabric-understand-and-troubleshoot-with-system-health-reports#partition-system-health-report)

    In your specific output, Total available instances: 0” indicates Service Fabric currently sees zero eligible nodes for placement. This generally happens when there are no nodes that are Up/healthy/available for placement, or when placement constraints/policies effectively exclude all nodes.

    Can you please check below details and share us the details in Private Message:

    1. Use Service Fabric Explorer to review cluster and service health, and confirm whether nodes are present and healthy (https://learn.microsoft.com/en-us/azure/service-fabric/service-fabric-view-entities-aggregated-health) or if you have access to run powershell commands then run Get-ServiceFabricNode and Get-ServiceFabricPartitionHealth
    2. If nodes are up but instances still cannot be placed, run below commands and share us the details
         Get-ServiceFabricNodeLoadInformation 
         Get-ServiceFabricPartitionLoadInformation 
      
    3. What does Get-ServiceFabricNode show for node status and health state (or what do you see in Service Fabric Explorer for node health)?
    4. Is AgentWebRole a stateless service with InstanceCount = -1 by design, and does it have any PlacementConstraints or placement policies configured?
    5. What are the specific health events returned by Get-ServiceFabricPartitionHealth for the affected partition?

    Was this answer helpful?

    0 comments No comments

Your answer

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