- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- Disk related operations slow on VM
Categories
Company
Local Language
Forums
Discussions
Forums
- Data Protection and Retention
- Entry Storage Systems
- Legacy
- Midrange and Enterprise Storage
- Storage Networking
- HPE Nimble Storage
Discussions
Forums
Discussions
Discussions
Discussions
Forums
Discussions
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
- BladeSystem Infrastructure and Application Solutions
- Appliance Servers
- Alpha Servers
- BackOffice Products
- Internet Products
- HPE 9000 and HPE e3000 Servers
- Networking
- Netservers
- Secure OS Software for Linux
- Server Management (Insight Manager 7)
- Windows Server 2003
- Operating System - Tru64 Unix
- ProLiant Deployment and Provisioning
- Linux-Based Community / Regional
- Microsoft System Center Integration
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Community
Resources
Forums
Blogs
- Subscribe to RSS Feed
- Mark Topic as New
- Mark Topic as Read
- Float this Topic for Current User
- Bookmark
- Subscribe
- Printer Friendly Page
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-25-2008 11:40 AM
01-25-2008 11:40 AM
We have VM host (HP-UX i64 11.23) with 3 VM guests (HP-UX i64 11.23).
Problem: Disk related operations (copy, uncompress files, etc.) on VM guest are 3 times slower then on the host.
Is it normal? Or we have a set up issue?
Thank you for any information.
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-25-2008 11:46 AM
01-25-2008 11:46 AM
Re: Disk related operations slow on VM
What version of HPVM do you run?
Hope this helps!
Regards
Torsten.
__________________________________________________
There are only 10 types of people in the world -
those who understand binary, and those who don't.
__________________________________________________
No support by private messages. Please ask the forum!
If you feel this was helpful please click the KUDOS! thumb below!

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-25-2008 11:55 AM
01-25-2008 11:55 AM
Re: Disk related operations slow on VM
set up:
VM host has two vg.
On vg01 we have three file systems, each of the FS has two files Disk1 and Disk2
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-25-2008 12:05 PM
01-25-2008 12:05 PM
Re: Disk related operations slow on VM
Let's try to isolate the problem file system with sar. Do you keep 24 hour sar data in /var/adm/sadm? If not, then you'll have to set up a 15 minute cron script to sample performance data in real time for a 24 hour period and pipe the data into a save file. Here's what I need:
sar -v 5 5
sar -d 5 5
sar -uM 5 5
UNIX95=1 ps -e -o vsz,rss,pid,ppid,comm | sort -rn | head
UNIX95=1 ps -e -o pcpu,vsz,rss,pid,ppid,comm | sort -rn | head
UNIX95=1 ps -e -o time,pcpu,vsz,rss,pid,ppid,comm | sort -rn | head
UNIX95=1 ps -e -o etime,time,pcpu,vsz,rss,pid,ppid,comm | sort -rn | head
Additionally, your server archicture and disk array setups. In particular, how many HBA's, raid levels, disk groups etc.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-28-2008 12:59 AM
01-28-2008 12:59 AM
Solution2 things :
- There is a new version of HPVM. Here is an extract of what you can read in HP's documentation :
"The HP Integrity Virtual Machines A.03.50 release introduces accelerated storage and networking I/O products (AVIO) to improve the overall I/O performance. The Accelerated Virtual I/O (AVIO) products provide up to 60% reduction in service demand and as much as twice the throughput over the existing virtualized storage and networking Integrity VM solutions."
I have not yet tested this version, but I guess you should ...
- You said "VM host has two vg. On vg01 we have three file systems, each of the FS has two files Disk1 and Disk2".
Should I understand that your backing store is a file ? If yes, I guess you have done the worst choice in term of performance, sorry ;-)
You can have a virtual disk in your VM in three ways : a physical disk presented as a raw device, a logical volume or a file. The most performant is supposed to be raw device, then lvol and finally file.
My choice is to work with raw devices when it is possible and logical volume if not, for example if I need to achieve high availability through LVM Mirror.
I think that in the future I will work only with LVM as backing store : from HP's support it seems that performance with LVM is at the same level than with raw devices.
Hope this will help
Regards
Eric