Version 1.0.10.1 release notes (August 2018)
A significant defect fix for the fbond:Fl
interface and an updated Db2
version are provided in IAS Version 1.0.10.1.
What's new
Db2 container is updated to the latest version. For more information on the fixes, see https://www.ibm.com/support/knowledgecenter/en/SSEPGG_11.1.0/com.ibm.db2.luw.wn.doc/doc/r0051514.html
Defect fix
In Integrated Analytics System
Versions 1.0.9.0 and 1.0.10.0, the MTU of the fbond:Fl
interface is incorrectly
specified. When the master node is established or moved, this defect might be noticed. The impact of
this defect is that GPFS head nodes have a severely restricted packet flow, and frequently fall out
of the cluster. The issue can impact all nodes in a GPFS cluster. IAS Version 1.0.10.1 fixes this
issue.
However, if you are unable or unwilling to upgrade to at least 1.0.10.1, the following workaround might be applied:
Important: You need root access to perform these steps. Contact IBM Support.- Determine the number of HA Domains. This number is
H
in the following steps. - Determine the number of nodes in a Domain. This number is
X
in the following steps.If the number of HA Domains
H
is more than 1, thenX
is 7. If the number of HA DomainsH
is 1, thenX
is 3 or 5. - Substituting
H
andX
, run the following command from a node:for N in {01..H}{01..X}; do ssh node${N} sed -i -e '/MTU/s/1500/9000/' /etc/sysconfig/network-scripts/ifcfg-fbond:Fl; done
- Run
ap state -d
. - If the platform status is not stopped, determine the master node by running
ap node -d
. - If the platform status is not stopped, run
apstop -p
. - Using the same
H
andX
values as in the previous steps, run the following command from any node:
The command lists nodes that have incorrect MTUs.for N in {01..H}{01..X}; do ssh node$N \(\(ip link show dev fbond \| grep -q 1500\) \&\& echo "$(hostnamectl --static) has bad MTU"\) \|\| echo ${N}; done
- On all the nodes listed with incorrect MTUs, run
ifdown fbond; ifup fbond
. - If you have an external interface such as
fbond.4084
, runifdown fbond.4084; ifup fbond.4084
. - Run
ifup fbond:Fl
only on the master node. - If you have an external interface such as
fbond.4084:0:Fl
, runifup fbond.4080:0:Fl
. - To start the platform again, run
apstart
.