Skip to content

Commit 31067ed

Browse files
authored
Merge pull request #107728 from b-juche/patch-5
Determining if a dir is approaching the limit size
2 parents 5120b7a + 61bbf7b commit 31067ed

File tree

1 file changed

+22
-2
lines changed

1 file changed

+22
-2
lines changed

articles/azure-netapp-files/azure-netapp-files-faqs.md

Lines changed: 22 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ ms.workload: storage
1313
ms.tgt_pltfrm: na
1414
ms.devlang: na
1515
ms.topic: conceptual
16-
ms.date: 03/06/2020
16+
ms.date: 03/13/2020
1717
ms.author: b-juche
1818
---
1919
# FAQs About Azure NetApp Files
@@ -55,7 +55,7 @@ All Azure NetApp Files volumes are encrypted using the FIPS 140-2 standard. All
5555

5656
Key management for Azure NetApp Files is handled by the service. A unique XTS-AES-256 data encryption key is generated for each volume. An encryption key hierarchy is used to encrypt and protect all volume keys. These encryption keys are never displayed or reported in an unencrypted format. Encryption keys are deleted immediately when a volume is deleted.
5757

58-
Support for user-managed keys (Bring Your Own Keys) using Azure Dedicated HSM is available on a controlled basis in the US East, US West2, and US South Central regions. Customer can request access at [email protected], and as capacity is available, requests will be approved.
58+
Support for user-managed keys (Bring Your Own Keys) using Azure Dedicated HSM is available on a controlled basis in the US East, US West2, and US South Central regions. You can request access at **[email protected]**. As capacity is available, requests will be approved.
5959

6060
### Can I configure the NFS export policy rules to control access to the Azure NetApp Files service mount target?
6161

@@ -159,6 +159,26 @@ Azure NetApp Files provides capacity pool and volume usage metrics. You can also
159159

160160
No. Azure NetApp Files is not supported by Azure Storage Explorer.
161161

162+
### How do I determine if a directory is approaching the limit size?
163+
164+
You can use the `stat` command from a client to see whether a directory is approaching the maximum size limit (320 MB).
165+
166+
For a 320 MB directory, the number of blocks is 655360, with each block size being 512 bytes. (That is, 320x1024x1024/512.)
167+
168+
Examples:
169+
170+
[makam@cycrh6rtp07 ~]$ stat bin
171+
File: 'bin'
172+
Size: 4096 Blocks: 8 IO Block: 65536 directory
173+
174+
[makam@cycrh6rtp07 ~]$ stat tmp
175+
File: 'tmp'
176+
Size: 12288 Blocks: 24 IO Block: 65536 directory
177+
178+
[makam@cycrh6rtp07 ~]$ stat tmp1
179+
File: 'tmp1'
180+
Size: 4096 Blocks: 8 IO Block: 65536 directory
181+
162182
## Data migration and protection FAQs
163183

164184
### How do I migrate data to Azure NetApp Files?

0 commit comments

Comments
 (0)