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/virtual-machines/workloads/sap/os-upgrade-hana-large-instance.md
+80Lines changed: 80 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -46,6 +46,86 @@ The following are the few common known issues during the upgrade:
46
46
- On SKU Type II class SKU, the software foundation software (SFS) is removed after the OS upgrade. You need to reinstall the compatible SFS after the OS upgrade.
47
47
- Ethernet card drivers (ENIC and FNIC) rolled back to older version. You need to reinstall the compatible version of the drivers after the upgrade.
48
48
49
+
## SAP HANA on Azure Large Instance (Type I) Recommended SLES Configuration
50
+
51
+
Customer operating system configuration can drift from the recommended settings over time due to patching, system upgrades, and changes made by customers. Additionally, Microsoft identifies updates needed for existing systems to ensure they are optimally configured for the best performance and resiliency. Below given description and instructions outline recommendations that address network performance, system stability, and optimal HANA performance.
52
+
53
+
### Compatible enic/fnic driver versions
54
+
In order to have proper network performance and system stability, it is advised that customers maintain versions of the enic and fnic drives below. Servers are usually delivered to customers with these versions, however, in some cases versions can get rolled back to the default enic and fnic versions when OS/Kernel patching is performed.
55
+
56
+
57
+
| OS Vendor | OS Package Version | UCS Blade Firmware | Enic Driver | Fnic Driver |
sed -i '/\/disk\/by-uuid/c '"$device_mapper"'' /etc/default/grub_installdevice
93
+
```
94
+
95
+
#### Disable EDAC:
96
+
The Error Detection And Correction (EDAC) module helps in detecting and correcting memory errors. However, the underlying hardware for SAP HNA on Azure Large Instances (Type I) is already preforming the same function. Having the same feature enabled at the hardware and Operating Ssystem (OS) levels can cause conflicts and can lead to occasional, unplanned shutdowns of the server. Therefore, it is recommended to disable the module from the OS.
97
+
98
+
##### Steps to perform
99
+
```
100
+
* Check if EDAC module is enabled. If an output is returned in below command, that means the module is enabled.
101
+
lsmod | grep -i edac
102
+
* Add the modules in /etc/modprobe.d/blacklist.conf file using vi editor.
103
+
#vim /etc/modprobe.d/blacklist.conf
104
+
* blacklist sb_edac
105
+
* blacklist edac_core
106
+
107
+
A reboot is required to have this reflected. Module should not be listed in ‘lsmod’ command output after blacklisting.
108
+
```
109
+
110
+
#### Kernel parameters
111
+
Please make sure the correct setting for transparent_hugepage, numa_balancing, processor.max_cstate and intel_idle.max_cstate are applied.
112
+
```
113
+
* intel_idle.max_cstate =1
114
+
* processor.max_cstate=1
115
+
* transparent_hugepage=never
116
+
* numa_balancing=disable
117
+
```
118
+
Incorrect settings have created both performance and instability issues in the past. Please follow SAP’s recommendation in your next maintenance window at the latest. Please check all your SAP HANA instances on SLES and ensure the correct setting is applied.
119
+
120
+
##### Steps to perform
121
+
```
122
+
* Add these parameters to the GRB_CMDLINE_LINUX line in the file /etc/default/grub
0 commit comments