Hello Medhavi,
Thank you for posting the question!
I understand that your Storage account is stuck in an incomplete geo-replication state after a failover.
could you please confirm me the below details:
- Can you confirm the number of file shares currently in the storage account?
- Is there any specific operation not working, or are you facing issues across the entire storage account?
Please be informed that after a failover, Azure needs to reconfigure the account for geo-redundancy and begin copying data from the new primary region to the new secondary: https://learn.microsoft.com/en-us/azure/storage/common/storage-failover-customer-managed-unplanned?tabs=grs-ra-grs
Since your account shows as RA-GRS but has missing replication telemetry, try reconfiguring the redundancy temporarily switch to LRS then back to RA-GRS:
# Switch to LRS first
Set-AzStorageAccount -ResourceGroupName "mscom-demandgenbi-rg" -Name "adopsstorage" -SkuName "Standard_LRS"
# Wait a few minutes, then switch back to RA-GRS
Set-AzStorageAccount -ResourceGroupName "mscom-demandgenbi-rg" -Name "adopsstorage" -SkuName "Standard_RAGRS"
Let me know if you have any questions via comment, I'm happy to assist you.