ATOP: vmcom / vmlim - SWP é vermelho

2

no ATOP estou recebendo um alerta vermelho como este: vmcom 76.3G | vmlim 49.8G

Este é um valor que é anexado ao "SWP" (então "SWAP" significa?) - line.

O que isso significa e o que posso fazer contra isso?

    
por MyFault 26.07.2015 / 16:16

1 resposta

0

A página atop man ajuda a explicar o que os números realmente indicam.

Memory

If the committed virtual memory exceeds the limit ('vmcom' and 'vmlim' in the SWP-line), the SWP-line is colored due to overcommitting the system.

SWP

Swap occupation and overcommit info.

This line contains the total amount of swap space on disk ('tot') and the amount of free swap space ('free').

Furthermore the committed virtual memory space ('vmcom') and the maximum limit of the committed space ('vmlim', which is by default swap size plus 50% of memory size) is shown. The committed space is the reserved virtual space for all allocations of private memory space for processes. The kernel only verifies whether the committed space exceeds the limit if strict overcommit handling is configured (vm.overcommit_memory is 2).

link

Parece que esse aviso não é nada crítico, mas apenas um aviso de que a pressão da memória está aumentando: link

    
por 02.05.2017 / 23:31