You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: articles/hpc-cache/hpc-cache-manage.md
+2Lines changed: 2 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -69,6 +69,8 @@ The software update can take several hours. Caches configured with higher throug
69
69
70
70
When a software upgrade is available, you will have a week or so to apply it manually. The end date is listed in the upgrade message. If you don't upgrade during that time, Azure automatically applies the update to your cache. The timing of the automatic upgrade is not configurable. If you are concerned about the cache performance impact, you should upgrade the software yourself before the time period expires.
71
71
72
+
If your cache is stopped when the end date passes, the cache will automatically upgrade software the next time it is started. (The update might not start immediately, but it will start in the first hour.)
73
+
72
74
Click the **Upgrade** button to begin the software update. The cache status changes to **Upgrading** until the operation completes.
Copy file name to clipboardExpand all lines: articles/hpc-cache/hpc-cache-prereqs.md
+47-7Lines changed: 47 additions & 7 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -4,7 +4,7 @@ description: Prerequisites for using Azure HPC Cache
4
4
author: ekpgh
5
5
ms.service: hpc-cache
6
6
ms.topic: conceptual
7
-
ms.date: 10/30/2019
7
+
ms.date: 02/12/2020
8
8
ms.author: rohogue
9
9
---
10
10
@@ -65,12 +65,6 @@ The cache supports Azure Blob containers or NFS hardware storage exports. Add st
65
65
66
66
Each storage type has specific prerequisites.
67
67
68
-
### NFS storage requirements
69
-
70
-
If using on-premises hardware storage, the cache needs to have high-bandwidth network access to the datacenter from its subnet. [ExpressRoute](https://docs.microsoft.com/azure/expressroute/) or similar access is recommended.
71
-
72
-
NFS back-end storage must be a compatible hardware/software platform. Contact the Azure HPC Cache team for details.
73
-
74
68
### Blob storage requirements
75
69
76
70
If you want to use Azure Blob storage with your cache, you need a compatible storage account and either an empty Blob container or a container that is populated with Azure HPC Cache formatted data as described in [Move data to Azure Blob storage](hpc-cache-ingest.md).
@@ -89,6 +83,52 @@ It's a good practice to use a storage account in the same location as your cache
89
83
90
84
You also must give the cache application access to your Azure storage account as mentioned in [Permissions](#permissions), above. Follow the procedure in [Add storage targets](hpc-cache-add-storage.md#add-the-access-control-roles-to-your-account) to give the cache the required access roles. If you are not the storage account owner, have the owner do this step.
91
85
86
+
### NFS storage requirements
87
+
88
+
If using an NFS storage system (for example, an on-premises hardware NAS system), make sure it meets these requirements. You might need to work with the network administrators or firewall managers for your storage system (or data center) to verify these settings.
89
+
90
+
> [!NOTE]
91
+
> Storage target creation will fail if the cache has insufficient access to the NFS storage system.
92
+
93
+
***Network connectivity:** The Azure HPC Cache needs high-bandwidth network access between the cache subnet and the NFS system's data center. [ExpressRoute](https://docs.microsoft.com/azure/expressroute/) or similar access is recommended. If using a VPN, you might need to configure it to clamp TCP MSS at 1350 to make sure large packets are not blocked.
94
+
95
+
***Port access:** The cache needs access to specific TCP/UDP ports on your storage system. Different types of storage have different port requirements.
96
+
97
+
To check your storage system's settings, follow this procedure.
98
+
99
+
* Issue an `rpcinfo` command to your storage system to check the needed ports. The command below lists the ports and formats the relevant results in a table. (Use your system's IP address in place of the *<storage_IP>* term.)
100
+
101
+
You can issue this command from any Linux client that has NFS infrastructure installed. If you use a client inside the cluster subnet, it also can help verify connectivity between the subnet and the storage system.
* In addition to the ports returned by the `rpcinfo` command, make sure that these commonly used ports allow inbound and outbound traffic:
108
+
109
+
| Protocol | Port | Service |
110
+
|----------|-------|----------|
111
+
| TCP/UDP | 111 | rpcbind |
112
+
| TCP/UDP | 2049 | NFS |
113
+
| TCP/UDP | 4045 | nlockmgr |
114
+
| TCP/UDP | 4046 | mountd |
115
+
| TCP/UDP | 4047 | status |
116
+
117
+
* Check firewall settings to be sure that they allow traffic on all of these required ports. Be sure to check firewalls used in Azure as well as on-premises firewalls in your data center.
118
+
119
+
***Directory access:** Enable the `showmount`command on the storage system. Azure HPC Cache uses this command to check that your storage target configuration points to a valid export, and also to make sure that multiple mounts don't access the same subdirectories (which risks file collisions).
120
+
121
+
> [!NOTE]
122
+
> If your NFS storage system uses NetApp's ONTAP 9.2 operating system, **do not enable`showmount`**. [Contact Microsoft Service and Support](hpc-cache-support-ticket.md) for help.
123
+
124
+
***Root access:** The cache connects to the back-end system as user ID 0. Check these settings on your storage system:
125
+
126
+
* Enable `no_root_squash`. This option ensures that the remote root user can access files owned by root.
127
+
128
+
* Check export policies to make sure they do not include restrictions on root access from the cache's subnet.
129
+
130
+
* NFS back-end storage must be a compatible hardware/software platform. Contact the Azure HPC Cache team for details.
131
+
92
132
## Next steps
93
133
94
134
* [Create an Azure HPC Cache instance](hpc-cache-create.md) from the Azure portal
0 commit comments