high swap space utilization in LINUX
high swap space utilization in LINUX
This morning, I got a ticket that one LINUX machine is about to consume all its swap space….. I addressed this ticket very much like I would do it if this was AIX – only the commands to resolve this situations have different names. The general idea and the flow of action is identical.
First, check swap space usage.
|
1
2
3
4
5
|
# free -h total used free shared buffers cachedMem: 15G 15G 349M 444K 186M 14G-/+ buffers/cache: 752M 14GSwap: 3.9G 3.7B 0.2G |
How many swap spaces we are dealing with…..?
|
1
2
3
|
# swapon -s -vFilename Type Size Used Priority/dev/dm-1 partition 4095996 0 -2 |
How it is named in /etc/fstab?
|
1
2
|
# grep swap /etc/fstab/dev/mapper/vg_sys-lv_swap swap swap defaults 0 0 |
Any room left in “vg-sys” for a second swap volume?
|
1
2
3
4
|
# vgs VG #PV #LV #SN Attr VSize VFree vg_data 1 2 0 wz--n- 400.00g 1020.00m vg_sys 1 7 0 wz--n- 34.61g 8.19g |
There is space, so let’s create a second swap volume with 6GB. This will be a temporary volume that will be deleted later.
|
1
2
|
# lvcreate -n swap2 -L 6G vg_sys Logical volume "swap2" created. |
Let’s turn it into another swap area.
|
1
2
3
4
5
|
# # mkswap /dev/mapper/vg_sys-swap2mkswap: /dev/mapper/vg_sys-swap2: warning: don't erase bootbits sectors on whole disk. Use -f to force.Setting up swapspace version 1, size = 6291452 KiBno label, UUID=eff630c2-e516-4e5e-a9fe-28cee7b46b1a |
Now, let shake the contents of swap aka let’s kick them back to RAM via the new swap volume just made. Note, that the swap2 is activated before swap is deactivated…
Do otherwise and kernel may kill some very important to you processes.
|
1
|
# swapon /dev/mapper/vg_sys-swap2 && swapoff /dev/mapper/vg_sys-swap |
Monitor, wait till swap2 stabilizes and reverse the last action.
|
1
|
# swapon /dev/mapper/vg_sys-swap && swapoff /dev/mapper/vg_sys-swap2 |
Monitor swap and when it stabilizes and it is empty or almost empty remove swap2 and it infrastructure.
|
1
2
3
|
# lvremove /dev/mapper/vg_sys-swap2Do you really want to remove active logical volume swap2? [y/n]: y Logical volume "swap2" successfully removed |
The proverbial icing on a cake is this little snippet (I found today on the net) – it lists swap usage per a running processes.
|
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
# for file in /proc/*/status ; do awk '/VmSwap|Name/{printf $2 " " $3}END{ print ""}' $file; done | sort -k 2 -n -r | lessrsyslogd 3488 kBfilebeat 1364 kBabrtd 996 kBcupsd 940 kBmaster 828 kBqmgr 820 kBsshd 640 kBcertmonger 576 kBcrond 520 kBhald 484 kBudevd 476 kBudevd 476 kBrpc.mountd 476 kB |
Posted in LINUX.

