From 47dda8b14c62690f9e52f4aed5a1039dd9fdf8de Mon Sep 17 00:00:00 2001 From: Peter Pitterling Date: Tue, 25 Feb 2025 17:29:42 +0100 Subject: [PATCH] HANA infra issue - "hanging threads" HANA SPS8 affecting IBM Power systems only --- .../lib/check/8050_hana_revision_infra_issues.check | 11 ++++++++++- 1 file changed, 10 insertions(+), 1 deletion(-) diff --git a/scripts/lib/check/8050_hana_revision_infra_issues.check b/scripts/lib/check/8050_hana_revision_infra_issues.check index 8349c23..28b459a 100644 --- a/scripts/lib/check/8050_hana_revision_infra_issues.check +++ b/scripts/lib/check/8050_hana_revision_infra_issues.check @@ -8,7 +8,7 @@ function check_8050_hana_revision_infra_issues { # MODIFICATION SECTION>> # array 'SPSP' 'lower bound' 'upper bound' 'SAP Note' 'Description' - local -ar _hana_all=(\ + local -a _hana_all=(\ '5' '2.00.056.00' '2.00.059.06' '3312868' 'Script hdbenv.sh takes a long time to complete' \ '6' '2.00.060.00' '2.00.065.00' '3312868' 'Script hdbenv.sh takes a long time to complete' \ @@ -52,6 +52,10 @@ function check_8050_hana_revision_infra_issues { ) + local -ar _hana_ibmpower=(\ + '8' '2.00.080.00' '2.00.082.00' '3573023' 'HANA DB Sessions Remain in Status Running (Cancel Requested)' \ + ) + local sapnote='' # MODIFICATION SECTION<< @@ -66,6 +70,7 @@ function check_8050_hana_revision_infra_issues { # 3528623 - Slow in table load/reload due to load trace writing # 3343278 - HANA Nameserver is Unresponsive due to blocked Asynchronous Requests # 3366673 - landscapeHostConfiguration.py fails with Python runtime error "can't start new thread" + # 3573023 - HANA DB Sessions Remain in Status Running (Cancel Requested) # PRECONDITIONS if [[ ${#HANA_SIDS[@]} -eq 0 ]]; then @@ -73,6 +78,10 @@ function check_8050_hana_revision_infra_issues { logCheckSkipped 'No SAP HANA instance found. Skipping' "<${FUNCNAME[0]}>" _retval=3 + elif LIB_FUNC_IS_IBMPOWER; then + + _hana_all+=("${_hana_ibmpower[@]}") + fi # CHECK