DPOD's Big Data Store is located on a dedicated hard drive. Occasionally, the disk space allocated for the Store needs to be increased. Reasons for that include an increase in TPS, or a requirement to retain history for longer periods of time.
The process to increase the disk space allocated to DPOD's Store entails the two stages detailed below:
Use the server vendor's RAID management software to extend the existing RAID Disk (LUN) or add new RAID Disk (new LUN), in order to increase the data disk and file system sizes for the physical server.
Select the correct OS level configuration procedure below, based on whether you selected to extend or add a disk.
With a virtual deployment, there are two options available for increasing DPOD's Store disk space:
Verify the current size of mount point /data:
df -h /data |
The system output should resemble the following:
Verify the new disk size:
fdisk -l |grep /dev/sdc |
The system output should resemble the following:
Use fdisk to create a new partition for the new size:
fdisk /dev/sdc |
and perform the following steps:
Press w to write the changes to the partition table.
the following warning is valid, the system reboot will fix the issue : |
Reboot the system:
reboot |
When the system is back up, ensure the new partition is available:
fdisk -l | grep /dev/sdc |
The system output should resemble the following (note the new sdcX added)
Stop the application by running app-util.sh and selecting option 2 (stop all)
If the new partition is not sdc2, substitute sdc2 for the right qualifier in all the following commands |
Create a new LVM Physical Volume (PV):
pvcreate /dev/sdc2 |
Extend the LVM Volume Group (VG):
vgextend vg_data /dev/sdc2 |
Extend the LVM Logical Volume (LV):
lvextend -l +100%FREE /dev/vg_data/lv_data |
Identify the /data file system type (for CentOS 7.2 based appliances the type is xfs):
cat /etc/fstab |grep /data |
The system output should resemble the following:
Resize the file system. Select the correct command below for your file system type:
resize2fs /dev/vg_data/lv_data |
xfs_growfs /dev/vg_data/lv_data |
The system output should resemble the following:
To display the new size of the /data mount point:
df -h /data |
Verify the current size of the /data mount point:
df -h /data |
The system output should resemble the following:
Verify the new disk size:
fdisk -l |grep /dev/sdd |
The system output should resemble the following:
Create a new partition with the new size:
fdisk /dev/sdd |
Reboot the system:
reboot |
When the system is back up, ensure the new partition is created:
fdisk -l |grep /dev/sdd |
The system output should resenble the following:
Create a new LVM Physical Volume (PV):
pvcreate /dev/sdd1 |
Extend the LVM Volume Group (VG):
vgextend vg_data /dev/sdd1 |
Extend the LVM logical volume (LV) :
lvextend -l +100%FREE /dev/vg_data/lv_data |
Identify the /data file system type (for CentOS 7.2 based appliances the type is xfs):
cat /etc/fstab |grep /data |
The system output should resemble the following:
Resize the file system. Select the correct command below for your file system type:
resize2fs /dev/vg_data/lv_data |
xfs_growfs /dev/vg_data/lv_data |
The system output should resemble the following:
To display the new size of the /data mount point:
df -h /data |
The system output should resemble the following:
Starting with v1.0.4.0, DPOD is shipped with a script that performs all the necessary steps to update the Store configuration file.
You may use this script by running:
/app/scripts/update_store_allocation.sh |
The script is available on DPOD v1.0.4.0 and above. If you are using earlier version please contact DPOD support and the script will be provided. |
When the script has completed, restart the application by running app-util.sh and selecting option 1 (start all)