An Azure service that provides enterprise-grade file shares powered by NetApp.
Hello Denny Sun
It appears you’re using an NFS-based Azure NetApp Files volume with your AKS PVC, and new files aren’t appearing on the volume—while your DEV server shows about 5,000 images, only around 4,000 are visible in the ANF mount. Here are some steps to help troubleshoot and a few questions to further narrow down the issue with the missing files.
What to check first:
NFS mounting & connectivity:
On an AKS node, run the below command:
showmount -e <your-volume>.<account>.netapp.azure.com --> to ensure the export is accessible.
Make sure you’re using a supported NFS version (v3 or v4.1) and appropriate mount options (rsize/wsize, timeo, etc.).
Confirm that your firewall/NSG allows outbound NFS traffic (port 2049).
NetApp capacity/throughput:
In the Azure portal, check Metrics under your NetApp account and capacity pool. Ensure you haven’t reached volume capacity, IOPS, or throughput limits, as exceeding these can cause write issues.
Sync tool logs:
If you’re using rsync, Robocopy, or another bulk-copy tool, review logs for errors like “permission denied,” “file exists,” or timeouts. For file sets larger than 10 GB, using a tool with retries is recommended.
File naming or size limits:
Check that file paths don’t exceed 255 characters and don’t include unusual characters that might cause issues.
Azure File Sync:
Azure File Sync is only compatible with Azure Files, not Azure NetApp Files. For ANF, copy data directly over NFS or SMB.
I hope the above answer helps you! Please let us know if you have any further questions.
Please don't forget to "upvote" where the information provided will help you, this can be beneficial to other members of the community.