Skip to content

Commit 1d57a6e

Browse files
Merge pull request #275852 from msftrobiro/sap-upd-rhel-schedevents
SAP update scheduled events timeouts and add delay
2 parents 0618b7e + a56e7e5 commit 1d57a6e

File tree

3 files changed

+6
-3
lines changed

3 files changed

+6
-3
lines changed

articles/sap/workloads/get-started.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -55,6 +55,7 @@ In the SAP workload documentation space, you can find the following areas:
5555

5656
## Change Log
5757

58+
- May 21, 2024: Update timeouts and added start delay for pacemaker scheduled events in [Set up Pacemaker on RHEL in Azure](./high-availability-guide-rhel-pacemaker.md) and [Set up Pacemaker on SUSE Linux Enterprise Server (SLES) in Azure](./high-availability-guide-suse-pacemaker.md).
5859
- April 1, 2024: Reference the considerations section for sizing HANA shared file system in [NFS v4.1 volumes on Azure NetApp Files for SAP HANA](./hana-vm-operations-netapp.md), [SAP HANA Azure virtual machine Premium SSD storage configurations](./hana-vm-premium-ssd-v1.md), [SAP HANA Azure virtual machine Premium SSD v2 storage configurations](./hana-vm-premium-ssd-v2.md), and [Azure Files NFS for SAP](planning-guide-storage-azure-files.md)
5960
- March 18, 2024: Added considerations for sizing the HANA shared file system in [SAP HANA Azure virtual machine storage configurations](./hana-vm-operations-storage.md)
6061
- February 07, 2024: Clarified disk allocation when using PPGs to bind availability set in specific Availability Zone in [Configuration options for optimal network latency with SAP applications](./proximity-placement-scenarios.md#combine-availability-sets-and-availability-zones-with-proximity-placement-groups)

articles/sap/workloads/high-availability-guide-rhel-pacemaker.md

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -488,8 +488,10 @@ When the cluster health attribute is set for a node, the location constraint tri
488488

489489
```bash
490490
sudo pcs resource create health-azure-events \
491-
ocf:heartbeat:azure-events-az op monitor interval=10s
492-
sudo pcs resource clone health-azure-events allow-unhealthy-nodes=true
491+
ocf:heartbeat:azure-events-az \
492+
op monitor interval=10s timeout=240s \
493+
op start timeout=10s start-delay=90s
494+
sudo pcs resource clone health-azure-events allow-unhealthy-nodes=true failure-timeout=120s
493495
```
494496

495497
1. Take the Pacemaker cluster out of maintenance mode.

articles/sap/workloads/high-availability-guide-suse-pacemaker.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1037,7 +1037,7 @@ Azure offers [scheduled events](../../virtual-machines/linux/scheduled-events.md
10371037
```bash
10381038
sudo crm configure primitive health-azure-events ocf:heartbeat:azure-events-az \
10391039
meta allow-unhealthy-nodes=true failure-timeout=120s \
1040-
op start start-delay=90s \
1040+
op start start-delay=60s \
10411041
op monitor interval=10s
10421042

10431043
sudo crm configure clone health-azure-events-cln health-azure-events

0 commit comments

Comments
 (0)