Howdy, Stranger!

It looks like you're new here. If you want to get involved, click one of these buttons!


Shells Virtual Desktop
BMail.ag - Secure Email Service
Server.net
CPLicense.net
VPS Server
Buy VPN
Vultr
VMs for AI
HostDare
HostDare
ReliableSite White-Label Dedicated Hosting for Resellers
25% Recurring Discount on NVMe VPS
InterServer VPS
BMail.ag - Secure Email Service
Best VPN
High-Performance Bare Metal Server Solutions
Karvl.com
Server Mania Cloud Hosting
DataWagon Hosting
AlphaVPS Hosting
Evoxt.com
Clouvider
VPS Hosting with NVMe
Residential IPs in the US & 4G Mobile Proxies in EU & US with Unlimited Bandwidth
ReliableSite White-Label Dedicated Hosting for Resellers
Rabisu - Hosting Solutions
Shells Virtual Desktop
New on LowEndTalk? Please Register and read our Community Rules.

All new Registrations are manually reviewed and approved, so a short delay after registration may occur before your account becomes active.

Server Load with CPU Usage

MetroVPS_NMPMetroVPS_NMP Host Rep, Veteran

Hi,
I'm running a VM with access to 4 Cores of E5-2620 v2 (2.1 GHz x 4). Recently, having problem with High Load. But, I can't understand how the CPU being 90%+ Idle, Load goes to 3.5+ ??

Can anyone explain me the internal factors ??

Comments

  • Nginx looks to be in sleep. Most likely cause is blocking on disk IO. Any disk issues?

  • Zen said: I/O values in general

    Err. I'm pretty sure it's CPU "traffic". Correct me if I'm wrong! :)

    Thanked by 1Zen
  • MetroVPS_NMPMetroVPS_NMP Host Rep, Veteran

    @Virtovo said:
    Nginx looks to be in sleep. Most likely cause is blocking on disk IO. Any disk issues?
    @Zen said:
    Load is a calculated average based on I/O values in general.

    I recommend you run iotop rather than top.

    I ran iotop & monitored for 5 Minutes. Total Disk Read Never Crossed 10 mbps in that time-frame & Total Disk Write never Crossed 4 mbps in that duration. Is that Normal or I'm using much ??

  • SilvengaSilvenga Member
    edited April 2014

    0xdragon said: Err. I'm pretty sure it's CPU "traffic". Correct me if I'm wrong! :)

    CPU load is essentially a running queue of CPU "tasks". The longer the list, the higher the CPU load. He meant that IO can prevent tasks from being processed on the CPU - thus queuing up.

    The code used is pretty simple:

     count -= ticks;
       if (count < 0) {
          count += LOAD_FREQ;
          active_tasks = count_active_tasks();
          CALC_LOAD(avenrun[0], EXP_1, active_tasks);
          CALC_LOAD(avenrun[1], EXP_5, active_tasks);
          CALC_LOAD(avenrun[2], EXP_15, active_tasks);
       }
    

    ehostlab said: I ran iotop & monitored for 5 Minutes. Total Disk Read Never Crossed 10 mbps in that time-frame & Total Disk Write never Crossed 4 mbps in that duration. Is that Normal or I'm using much ??

    So you do have some bottleneck somewhere. I doubt the IO, else you're running on a flash drive.

  • MetroVPS_NMPMetroVPS_NMP Host Rep, Veteran

    @Silvenga said:
    So you do have some bottleneck somewhere. I doubt the IO, else you're running on a flash drive.

    I've monitored it when the Server Load was remaining between 0.50-0.90. I've to keep My Eyes open when it goes above 4.

Sign In or Register to comment.