i/o problem

In summary....

# this option stops the disk soft lockups!
echo 0 > /sys/block/sda/queue/iosched/slice_idle

So, after the intial tests... was this the solution? (Judging by more recent posts it seems that this didn't help either?)

Thanks,
David
 
Currently I'm thinking it might have something to do with the fact that my VMs are on a shared LVM volume group (shared across cluster nodes), and that one node starts the backups while the other hasn't finished yet.

Is that somehting that may happen in your environment as well?
 
Nope. Mine are openvz boxes on a single server.

I can actually generate the same issues by hammering a clean server - no vm's with loads of random io.

:)
 
Good point. On second thought, my nodes do share the same I/O controllers (Intel Modular Server), so overlapping backup windows can also create higher I/O than normal. If it's not a concurrency issue, it can still be a load issue. In any case, I'll make sure the backup windows don't overlap, it sure won 't hurt...
 
Well, I can confirm: also with non-overlapping backup windows I got the crash last night...
 
Hello,

i have the same Problem as described here. On my Boxes the Problem is
that the Logical Volume switch to suspend State and resumed only
if i resume the volume manual by "dmsetup resume $LV".

At the moment i have workaround the problem by the following
script which checks every 5 minutes (by Crontab) if the volume ist suspended
and resumed the volume if needed.

Maybe someone can help this simple script.


Code:
#!/bin/sh

LV="<<<insert volume name>>"
LVSTATE=$(dmsetup info $LV |awk -F: 'NR == 2 {gsub(/ /,"");print $2}')

if [ "$LVSTATE" = "SUSPENDED" ]; then.
    /sbin/dmsetup resume $LV
fi
exit 0
 

About

The Proxmox community has been around for many years and offers help and support for Proxmox VE, Proxmox Backup Server, and Proxmox Mail Gateway.
We think our community is one of the best thanks to people like you!

Get your subscription!

The Proxmox team works very hard to make sure you are running the best software and getting stable updates and security enhancements, as well as quick enterprise support. Tens of thousands of happy customers have a Proxmox subscription. Get yours easily in our online shop.

Buy now!