All servers have OS parameter set to allocsize=1g in "/etc/fstab."
The fix is to edit all the "/etc/fstab" in Greenplum cluster and make the allocsize to 16m.
To do allocsize changes in vfstab follow these steps:
-- Stop the Greenplum database:
gpstop -a
-- Change the following entries in /etc/fstab on all DCA nodes:
LABEL=/data1 /data1 xfs noatime,inode64,allocsize=1g 0 0 LABEL=/data2 /data2 xfs noatime,inode64,allocsize=1g 0 0
to
LABEL=/data1 /data1 xfs noatime,inode64,allocsize=16m 0 0 LABEL=/data2 /data2 xfs noatime,inode64,allocsize=16m 0 0
-- Umount and mount file system:
a. # umount /data1 # umount /data2 b. # mount /data1 # mount /data2 c. For mdw and smdw: # umount /data # mount /data
-- Start the database.