Questions tagged [io]

IO (or I/O) is an abbreviation for input/output, most commonly referring to disk input/output.

IO (or I/O) is an abbreviation for input/output, most commonly referring to disk input/output.

401 questions
3
votes
0 answers

Do I need to create multiple filesystems on a virtual server to increase I/O performance?

I want to install Oracle on a virtual server. I don't really know the technology behind, my company just gave me a virtual server with multiple (virtual) disks. I have the possibility to divide those disks into multiple logical volumes to partition…
Pierre
  • 83
  • 9
3
votes
0 answers

what is snmp mib for getting NFS IO counters?

I can get local disk I/O requests and read/write bytes using the following snmp MIB: SNMP table: UCD-DISKIO-MIB::diskIOTable diskIOIndex diskIODevice diskIONRead diskIONWritten diskIOReads diskIOWrites diskIOLA1 diskIOLA5 diskIOLA15 diskIONReadX…
GP92
  • 681
  • 2
  • 9
  • 27
3
votes
0 answers

Why is my btrfs/dm-crypt RAID1 setup so slow?

I have a system that's set up with a four-disk RAID1 array based on btrfs. Two disks are 1TB traditional HDDs, and the other two are 128GB SSDs. Most of each disk is filled up with a LUKS container. Inside all four LUKS containers I have a single…
strugee
  • 891
  • 11
  • 25
3
votes
2 answers

Disk IO Rate: What causes it and what does it mean to me?

I just got a mail from Linode saying that my account "has exceeded the notification threshold (1000) for disk io rate by averaging 1017.36 for the last 2 hours. " My question is just out of curious: From the literal meaning, disk io rate must mean…
shenkwen
  • 199
  • 2
  • 14
3
votes
1 answer

Restrict I/O Write usage using cgroups

I am trying to restrict I/O write usage on my server using cgroups. Here is my partition table info: major minor #blocks name 8 0 10485760 sda 8 1 9437184 sda1 8 2 1047552 sda2 Here is my Filesystem…
3
votes
6 answers

Show IO on Netapp

I think I might be hitting the IO limits of what my Netapp can deliver, as I have been adding more servers to my cluster and iowait has gone up on each server. However, how do I quantify this? How can I use Netapp CLI tools to view current IO stats?…
cat pants
  • 2,273
  • 10
  • 35
  • 46
3
votes
2 answers

How can I monitor disk IO load on a Windows 2008 server?

We are running multiple processes on our servers, which are mostly CPU intensive, but also use the local HDDs for reading the data. I can trivially look at the CPU load and memory usage in TaskManager on these boxes, how can I monitor the HDD IO? I…
Grzenio
  • 271
  • 2
  • 6
  • 16
3
votes
1 answer

Does changing /sys/block/sda/queue settings take effect immediately?

How long does it take for changes to the following settings to take effect: /sys/block/sda/queue/scheduler /sys/block/sda/queue/rotational /sys/block/sda/queue/read_ahead_kb Is it immediately/with a few seconds, or does it require the process to…
stephenbez
  • 133
  • 4
3
votes
1 answer

Is it possible to configure the Linux kernel I/O scheduler for an NFS mount?

On a normal block device you can change the i/o scheduler like this: # cat /sys/block/hda/queue/scheduler noop anticipatory deadline [cfq] # echo anticipatory > /sys/block/hda/queue/scheduler # cat /sys/block/hda/queue/scheduler noop [anticipatory]…
Robert Swisher
  • 1,147
  • 7
  • 14
3
votes
4 answers

Azure IO performance

We have a number of Windows Server virtual machines that we use for .NET and Java development and QA. I find Azure attractive for the obvious reasons but mainly for the opportunity to reduce non-productive hours spent on environmental…
BigTFromAZ
  • 131
  • 1
  • 3
3
votes
1 answer

Setting I/O scheduler for SSD based RAID array on EC2 instances

I created a RAID array using the 2 local SSD drives on a EC2 c3.4xlarge instance. # mdadm --create /dev/md127 --level=0 --raid-devices=2 /dev/xvdf /dev/xvdg # mkfs.ext4 /dev/md127 # mkdir /data # echo 'DEVICE /dev/xvdf /dev/xvdg' > /etc/mdadm.conf #…
BraveHeart
  • 31
  • 3
3
votes
2 answers

Does ESX 5.X cache guest IO?

I am trying to find out if guest can see successful disk flush operation, but the host doesn't actually flush it to disk? How does ESXi work with guest I/O? Are they cached by ESXi before being written to the host's disk?
3
votes
1 answer

I/O priority per LVM volume (cgroups)

How can I prioritize LVM volumes I/O performance using cgroups? I know I can use ionice to make changes at the process level but I wish to be able to do this per LV and not per process.
ApriOri
  • 325
  • 1
  • 10
3
votes
1 answer

IO related performance bottleneck on a LAMP server

I am administering a big LAMP server with some thousand users. About a week ago, things slowed down, and the only thing I see that the IO latency is increased dramatically. Users experience slow page loads, and I experience seconds of hanging when I…
hgj
  • 85
  • 1
  • 1
  • 6
3
votes
3 answers

High await in sar

My database server has the following sar output for the data device: [postgres@dbsrv07 ~]$ LC_ALL=POSIX sar -d |egrep "await|dev253-2" 00:00:01 DEV tps rd_sec/s wr_sec/s avgrq-sz avgqu-sz await svctm %util 00:10:01 …
xpapad
  • 151
  • 1
  • 1
  • 4