<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>2vcps and a Truck &#187; performance</title>
	<atom:link href="http://www.2vcps.com/category/performance/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.2vcps.com</link>
	<description></description>
	<lastBuildDate>Mon, 23 Jan 2012 15:33:44 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
<atom:link rel="search"
           href="http://www.2vcps.com/opensearch"
           type="application/opensearchdescription+xml"
           title="Content Search" /><xhtml:meta xmlns:xhtml="http://www.w3.org/1999/xhtml" name="robots" content="noindex" />
		<item>
		<title>Dynamic Cluster Pooling</title>
		<link>http://www.2vcps.com/2010/12/20/dynamic-cluster-pooling/</link>
		<comments>http://www.2vcps.com/2010/12/20/dynamic-cluster-pooling/#comments</comments>
		<pubDate>Mon, 20 Dec 2010 20:26:45 +0000</pubDate>
		<dc:creator>Jon Owings</dc:creator>
				<category><![CDATA[capacity]]></category>
		<category><![CDATA[performance]]></category>
		<category><![CDATA[powershell]]></category>

		<guid isPermaLink="false">http://www.2vcps.com/?p=473</guid>
		<description><![CDATA[Dynamic Cluster Pooling is an idea that Kevin Miller ( @captainstorage) and I came up with one day while we were just rapping out some ideas on the whiteboard. It is an incomplete idea, but may have the beginnings of &#8230; <a href="http://www.2vcps.com/2010/12/20/dynamic-cluster-pooling/">Continue reading <span class="meta-nav">&#8594;</span></a>
Related posts:<ol>
<li><a href='http://www.2vcps.com/2010/07/01/all-out-of-ha-slots/' rel='bookmark' title='All out of HA Slots'>All out of HA Slots</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p>Dynamic Cluster Pooling is an idea that Kevin Miller ( <a href="http://twitter.com/captainstorage">@captainstorage</a>) and I came up with one day while we were just rapping out some ideas on the whiteboard. <em>It is an incomplete idea, but may have the beginnings of something useful.</em> The idea is that clusters can be dynamically sized depending on expected workload. Today a VMware Cluster is sized based on capacity estimates from something like VMware Capacity Planner. The problem is this method requires you apply a workload profile across all time periods or situations. What if only a couple days of the month require the full capacity of a cluster. Could those resources be used elsewhere the rest of the month?</p>
<p><strong>Example Situation<br />
</strong>Imagine a scenario with a Virtual Infrastructure with multiple clusters. Cluster &#8220;Gold&#8221; has 8 hosts. Cluster &#8220;Bronze&#8221; has 8 hosts. Gold is going to require additionally resources on the last day of the month to process reports from a database (or something like that). In order to provide additional resources to Gold we will take an ESX host away from the Bronze cluster. This allows us to deploy additional Virtual Machines to crunch through the process or allow less contention for the existing machines.<br />
<a href="http://www.2vcps.com/wp-content/uploads/2010/12/DCPPIC1.png"><img class="alignright size-full wp-image-626" title="DCPPIC" src="http://www.2vcps.com/wp-content/uploads/2010/12/DCPPIC1.png" alt="" width="724" height="547" /></a><br />
You don&#8217;t have to be a powercli guru to figure out how to vMotion all the machines off of a ESX host and place it in maintenance mode. Once the host is in maintenance mode it can be moved to the new cluster, removed from maintenance mode and VM&#8217;s can be redistributed by DRS.</p>
<p>Sample Code more to prove the concept:<br />
<code>#Connect to the vCenter<br />
Connect-VIServer [vcenterserver]<br />
#indentify the host, you should pass the host or hosts you want to vacate into a variable<br />
Get-Cluster Cluster-Bronze | get-vmhost</p>
<p>#Find the least loaded host(skipping for now)</p>
<p>#Vmotion the machines to somewhere else in that cluster<br />
Get-VMHost lab1.domain.local | Get-VM| Move-VM -Destination [some other host in the bronze cluster]</p>
<p>#Move the host<br />
Set-VMHost lab1.domain.local -State Maintenance<br />
Move-VMHost lab1.domain.local -Destination Cluster-Gold<br />
Set-VMHost lab1.domain.local -State Connected</p>
<p>#Rebalance VM's<br />
Get-DrsRecommendation -Cluster Cluster-Gold | Apply-DrsRecommendation</code></p>
<p>I was able to manually make this happen in our lab. Maybe if this sparks any interest someone that is good with “the code” can make this awesome.</p>
<p>Related posts:<ol>
<li><a href='http://www.2vcps.com/2010/07/01/all-out-of-ha-slots/' rel='bookmark' title='All out of HA Slots'>All out of HA Slots</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://www.2vcps.com/2010/12/20/dynamic-cluster-pooling/feed/</wfw:commentRss>
		<slash:comments>5</slash:comments>
		</item>
		<item>
		<title>All out of HA Slots</title>
		<link>http://www.2vcps.com/2010/07/01/all-out-of-ha-slots/</link>
		<comments>http://www.2vcps.com/2010/07/01/all-out-of-ha-slots/#comments</comments>
		<pubDate>Thu, 01 Jul 2010 20:43:38 +0000</pubDate>
		<dc:creator>Jon Owings</dc:creator>
				<category><![CDATA[performance]]></category>
		<category><![CDATA[HA]]></category>
		<category><![CDATA[vmware]]></category>

		<guid isPermaLink="false">http://www.2vcps.com/?p=465</guid>
		<description><![CDATA[A few weeks a go I was moving a customer from an old set of ESX servers (not HA clustered) to a new infrastructure of Clustered ESX hosts. After building, testing and verifying the hosts we started moving the VM&#8217;s. &#8230; <a href="http://www.2vcps.com/2010/07/01/all-out-of-ha-slots/">Continue reading <span class="meta-nav">&#8594;</span></a>
No related posts.]]></description>
			<content:encoded><![CDATA[<p><!-- Start ScreenSteps Content --></p>
<div class="LessonContent">
<div class="LessonSummary">
<p>A few weeks a go I was moving a customer from an old set of ESX servers (not HA clustered) to a new infrastructure of Clustered ESX hosts. After building, testing and verifying the hosts we started moving the VM&#8217;s. It became apparent after a little while there were some resource issues. After just a few VM&#8217;s were moved an alert appeared that we could not start any new machines. I start looking at the cluster and there is plenty of extra Memory and CPU. Still nothing will start.<br />
I say to myself, &#8220;Self, we have read about this before.&#8221; I thought back to this <a href="http://www.yellow-bricks.com/vmware-high-availability-deepdiv/" target="_blank">HA Deep Dive article by Duncan Epping.</a><br />
Lets check the HA slots! (on a side note, if you use HA and have never read the Deep Dive, go do it now!)</p>
</div>
<div class="LessonStep top">
<div class="StepImage" style="margin: 10px 0px;"><img style="padding: 3px; border: 1px solid #ccc;" src="http://www.2vcps.com/wp-content/uploads/2010/07/media_1276972861425.png" alt="media_1276972861425.png" width="296" height="318" /></div>
<div class="StepInstructions">
<p>As you can see here the slot size is rather giant. We have the largest CPU and Memory reservation plus some overhead (for simplicity) and that blows the size of the slot way up. I didn&#8217;t set the reservation, but surely they were there. 8GB of reserved memory. 4000MHz of CPU. Ouch. Where did that come from? It followed the VM from the old host to the new one. One of the reasons I was there was to setup a new cluster since the older ones were performing so slow on the local storage. It seems like someone tried to help some critical VM&#8217;s along the way by adding the reservations. I removed the reservations and had plenty of slots as you see below.</p>
</div>
</div>
<div class="LessonStep top">
<div class="StepImage" style="margin: 10px 0px;"><img style="padding: 3px; border: 1px solid #ccc;" src="http://www.2vcps.com/wp-content/uploads/2010/07/media_1276973677553.png" alt="media_1276973677553.png" width="300" height="316" /></div>
<div class="StepInstructions">
<p>Yeah! I was able to power on another VM!</p>
<p>The new cluster blew away the old one. Went from older Xeon&#8217;s to 6 core Nehalem&#8217;s, from local disks to 48 disks of Equallogic Storage. The reservation was no longer needed.</p>
<p>Lessons:<br />
1. Be careful with reservations, it can impact your failover capacity.<br />
2. Reservations set on the machine will follow it to a new host.</p>
</div>
</div>
</div>
<p><!-- End ScreenSteps Content --></p>
<p>No related posts.</p>]]></content:encoded>
			<wfw:commentRss>http://www.2vcps.com/2010/07/01/all-out-of-ha-slots/feed/</wfw:commentRss>
		<slash:comments>8</slash:comments>
		</item>
		<item>
		<title>Operational Readiness</title>
		<link>http://www.2vcps.com/2010/05/03/operational-readiness/</link>
		<comments>http://www.2vcps.com/2010/05/03/operational-readiness/#comments</comments>
		<pubDate>Tue, 04 May 2010 01:16:57 +0000</pubDate>
		<dc:creator>Jon Owings</dc:creator>
				<category><![CDATA[administration]]></category>
		<category><![CDATA[datacenters]]></category>
		<category><![CDATA[performance]]></category>
		<category><![CDATA[operations]]></category>
		<category><![CDATA[vmware]]></category>

		<guid isPermaLink="false">http://www.2vcps.com/?p=383</guid>
		<description><![CDATA[One thing I am thinking about due to the VCDX application is operational readiness. What does it mean to pronounce this project or solution good-to-go? In my world it would be to test that each feature does exactly what it &#8230; <a href="http://www.2vcps.com/2010/05/03/operational-readiness/">Continue reading <span class="meta-nav">&#8594;</span></a>
No related posts.]]></description>
			<content:encoded><![CDATA[<div>
<p>One thing I am thinking about due to the VCDX application is operational readiness. What does it mean to pronounce this project or solution good-to-go? In my world it would be to test that each feature does exactly what it should be doing. Most commonly this will be failover testing, but could reach into any feature or be as big as DR plan that involves much more than the technical parts doing what they should. Some things I think need to be checked:</p>
<p><strong>Resources</strong></p>
<p>Are the CPU, Memory, Network and Storage doing what they should be? Some load generating programs like IOmeter can be fine to test network and storage performance. CPU busy programs can verify Resource Pools and DRS are behaving the way they should.</p>
<p><strong>Failover</strong></p>
<p>You have redundant links right? Start pulling cables. Do the links failover for Virtual Machines, Service Console, and iSCSI? How about the redundancy of the physical network, even more cable to pull! Also test that the storage controllers failover correctly. Also, I will make sure HA does what it is supposed to, instantly power off a host and make sure some test virtual machines start up somewhere else on the cluster.</p>
<p><strong>Virtual Center Operations</strong></p>
<p>Deploy new virtual machines, host and storage VMotion, deploy from a template, and clone a vm are all things we need to make sure are working. If this is a big enough deployment make sure the customer can use the deployment appliance if you are making use of one. Make sure the alarms send traps and emails too.</p>
<p><strong>Storage Operations</strong></p>
<p>Create new luns, test replication, test storage alarms and make sure the customer understands thin provisioning if it is in use. Make sure you are getting IO as designed from the Storage side. Making use of the SAN tools to be sure the storage is doing what it should.</p>
<p><strong>Applications</strong></p>
<p>You can verify that each application is working as intended within the virtual environment.</p>
<p>There must be something I am missing but the point is trying to test out everything so you can tell that this virtualization solution is ready to be used.</p>
</div>
<p>No related posts.</p>]]></content:encoded>
			<wfw:commentRss>http://www.2vcps.com/2010/05/03/operational-readiness/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Ask Good Questions</title>
		<link>http://www.2vcps.com/2010/04/05/ask-good-questions/</link>
		<comments>http://www.2vcps.com/2010/04/05/ask-good-questions/#comments</comments>
		<pubDate>Tue, 06 Apr 2010 03:29:25 +0000</pubDate>
		<dc:creator>Jon Owings</dc:creator>
				<category><![CDATA[network]]></category>
		<category><![CDATA[performance]]></category>
		<category><![CDATA[view]]></category>
		<category><![CDATA[vmware]]></category>
		<category><![CDATA[vdi]]></category>

		<guid isPermaLink="false">http://www.2vcps.com/?p=331</guid>
		<description><![CDATA[This happened a long time ago. I arrived at a customer site to install View Desktop Manager (may have been version 2). This was before any cool VDI sizing tools like Liquidware Labs. I am installing ESX and VDM I &#8230; <a href="http://www.2vcps.com/2010/04/05/ask-good-questions/">Continue reading <span class="meta-nav">&#8594;</span></a>
No related posts.]]></description>
			<content:encoded><![CDATA[<p>This happened a long time ago. I arrived at a customer site to install View Desktop Manager (may have been version 2). This was before any cool VDI sizing tools like <a href="http://www.liquidwarelabs.com/" target="_blank">Liquidware Labs</a>. I am installing ESX and VDM I casually ask, &#8220;What apps will you be running on this install?&#8221; The answer was, &#8220;Oh, web apps like youtube, flash and some shockwave stuff.&#8221; I thought &#8220;ah dang&#8221; in my best <a href="http://www.youtube.com/watch?v=suz446-BOHg" target="_blank">Mater voice</a>. This was a case of two different organizations thinking someone else had gathered the proper information. Important details sometimes fall through the cracks. Since that day, I try to at least uncover most of this stuff before I show up on site.</p>
<p>Even though we have great assessment tools now, remember to ask some questions and get to know what is your customers end goal.</p>
<p>Things I learned that day. As related to VDI.</p>
<p>1. Know what your client is doing, &#8220;What apps are you going to use?&#8221;</p>
<p>2. Know where your client wants to do that thing from, &#8220;So, what kind of connection do you have to that remote office with 100+ users?&#8221;</p>
<p>This is not the full list of questions I would ask, just some I learned along the way.</p>
<p>No related posts.</p>]]></content:encoded>
			<wfw:commentRss>http://www.2vcps.com/2010/04/05/ask-good-questions/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>VMware View &#8211; User Profile Options</title>
		<link>http://www.2vcps.com/2010/03/14/vmware-view-user-profile-options/</link>
		<comments>http://www.2vcps.com/2010/03/14/vmware-view-user-profile-options/#comments</comments>
		<pubDate>Sun, 14 Mar 2010 19:59:24 +0000</pubDate>
		<dc:creator>Jon Owings</dc:creator>
				<category><![CDATA[administration]]></category>
		<category><![CDATA[performance]]></category>
		<category><![CDATA[view]]></category>
		<category><![CDATA[Windows]]></category>

		<guid isPermaLink="false">http://www.2vcps.com/?p=308</guid>
		<description><![CDATA[All the technology and gadgets for managing desktops are worthless if your users complain about their experience with the desktop. Something I learned administering Citrix Presentation Server. Differing methods exist to keep the technical presentation of the desktop usable, for &#8230; <a href="http://www.2vcps.com/2010/03/14/vmware-view-user-profile-options/">Continue reading <span class="meta-nav">&#8594;</span></a>
Related posts:<ol>
<li><a href='http://www.2vcps.com/2010/02/18/vmware-view-and-xsigo/' rel='bookmark' title='VMware View and Xsigo'>VMware View and Xsigo</a></li>
<li><a href='http://www.2vcps.com/2008/09/04/vmware-esx-is-the-industry%e2%80%99s-first-hypervisor-to-be-validated-by-microsoft-offers-customers-expanded-support-options-for-microsoft-applications-vmw/' rel='bookmark' title='VMware ESX is the Industry’s First Hypervisor to be Validated by Microsoft, Offers Customers Expanded Support Options for Microsoft Applications &#8211; VMw'>VMware ESX is the Industry’s First Hypervisor to be Validated by Microsoft, Offers Customers Expanded Support Options for Microsoft Applications &#8211; VMw</a></li>
<li><a href='http://www.2vcps.com/2009/12/17/thinclients/' rel='bookmark' title='VMware View &#8211; Repurpose your Existing PC&#8217;s as Thin Clients'>VMware View &#8211; Repurpose your Existing PC&#8217;s as Thin Clients</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p>All the technology and gadgets for managing desktops are worthless if your users complain about their experience with the desktop. Something I learned administering Citrix Presentation Server. Differing methods exist to keep the technical presentation of the desktop usable, for example the mouse being in sync and the right pixels show the right colors. What is also included in the user experience is a consistent environment where their personal data and settings are where they should be. Here are a few methods for managing those bits when using VMware View.</p>
<p><strong>Mandatory Profiles<br />
</strong>This profile is kept on the a central file share. The profile is copied to the machine on login, when the user logs out the changes are not kept. Great way to keep a consistent profile on kiosk type and data entry desktops. Where customization is not needed and most likely not wanted mandatory profiles are worth exploring. Main change is you set up the profile just like you want it then rename the NTUSER.dat to NTUSER.man. A lot exists on the internet about setting up <a href="http://support.microsoft.com/kb/307800" target="_blank">man profiles</a>.</p>
<p><strong>Local Profiles<br />
<span style="font-weight: normal;">If you go through life never changing a thing in your Windows environment, you are using a Local Profile. Not to say you don&#8217;t change settings, save files or customize your background. You just have Windows running as the default. This is an option I will usually discourage because it is hard to backup data that is often kept in the local profile. VMware View will redirect user data to a User Data Disk (or whatever it is called today) on Persistent Desktop Pools. This is a good way to get the data on another VMDK. This introduces problems when looking at data recovery. There is solutions, but just something you will need to remember to look into.</span></strong></p>
<p><strong>Roaming Profiles<br />
<span style="font-weight: normal;">Roaming profiles is a great way to redirect current profiles to a central location. In theory this works great. In a View environment you can keep a local copy on a users desktop profile  and the changes are copied back and forth. I have often seen this work just great. Then from time to time, the profile will become corrupt, many times it does not unload correctly when users disconnect, or log out. Then you may have to pick through folders trying to find their &#8220;My Documents&#8221;. This is why I would suggest using this with Group Policy and Folder redirection which I will cover next.</span></strong></p>
<p><strong>Redirecting Folders<br />
<span style="font-weight: normal;">You may end up using a folder redirection group policy. This will move folders like the Desktop and My Documents for a user to a file server. This slims down the roaming profile as those locations are redirected to another location outside of the profile. This data is not copied from the machine to the server over and over. More <a href="http://www.virtualizationadmin.com/articles-tutorials/terminal-services/performance/configure-folder-redirection.html">information here.</a></span></strong></p>
<p><strong>Other Options<br />
Immidio Flex Profiles<br />
<span style="font-weight: normal;">I really liked this option it was a way to combine mandatory profiles and a Roaming profile. This program would run some scripts on logon and log off to save files and settings. A really great paper on how to use it can be <a href="http://www.varrow.com/index.php?s=file_download&amp;id=54" target="_blank">found here</a>. Just like any great program that takes a new way to solve an annoying old problem, this is now not free. </span></strong></p>
<p><strong>RTO Virtual Profiles<br />
<span style="font-weight: normal;">I have never implemented this solution before. I have used it as part of a few training labs. I liked the feel. Now that VMware has purchased this software from RTO, the website redirects to a transition page. So I am looking for a way to test it in the lab, hoping the next set of bits of View includes RTO. Check this <a href="http://www.vmware.com/files/pdf/VMware-RTO-acquisition-FAQ.pdf" target="_blank">FAQ</a> out for more information. </span></strong></p>
<p><strong><span style="font-weight: normal;">Maybe once it is built into View this will no longer be a serious issue. Profiles will be one of those things we tell stories to young padawan VM admins about, &#8220;We used to have to fight profiles, they were big and slow, and sometimes they would disappear!&#8221; Until that day&#8230;</span></strong></p>
<p>Related posts:<ol>
<li><a href='http://www.2vcps.com/2010/02/18/vmware-view-and-xsigo/' rel='bookmark' title='VMware View and Xsigo'>VMware View and Xsigo</a></li>
<li><a href='http://www.2vcps.com/2008/09/04/vmware-esx-is-the-industry%e2%80%99s-first-hypervisor-to-be-validated-by-microsoft-offers-customers-expanded-support-options-for-microsoft-applications-vmw/' rel='bookmark' title='VMware ESX is the Industry’s First Hypervisor to be Validated by Microsoft, Offers Customers Expanded Support Options for Microsoft Applications &#8211; VMw'>VMware ESX is the Industry’s First Hypervisor to be Validated by Microsoft, Offers Customers Expanded Support Options for Microsoft Applications &#8211; VMw</a></li>
<li><a href='http://www.2vcps.com/2009/12/17/thinclients/' rel='bookmark' title='VMware View &#8211; Repurpose your Existing PC&#8217;s as Thin Clients'>VMware View &#8211; Repurpose your Existing PC&#8217;s as Thin Clients</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://www.2vcps.com/2010/03/14/vmware-view-user-profile-options/feed/</wfw:commentRss>
		<slash:comments>16</slash:comments>
		</item>
		<item>
		<title>Random Half Thoughts While Driving</title>
		<link>http://www.2vcps.com/2010/02/24/random-half-thoughts-while-driving/</link>
		<comments>http://www.2vcps.com/2010/02/24/random-half-thoughts-while-driving/#comments</comments>
		<pubDate>Thu, 25 Feb 2010 04:51:29 +0000</pubDate>
		<dc:creator>Jon Owings</dc:creator>
				<category><![CDATA[performance]]></category>
		<category><![CDATA[storage]]></category>
		<category><![CDATA[vmware]]></category>
		<category><![CDATA[vsphere]]></category>
		<category><![CDATA[random]]></category>

		<guid isPermaLink="false">http://www.2vcps.com/?p=313</guid>
		<description><![CDATA[So I often have epiphany teasers while driving long distances or stuck in traffic. I call them teasers because they are never fully developed ideas and often disappear into thoughts about passing cars, or yelling at the person on their cell phone going 15 &#8230; <a href="http://www.2vcps.com/2010/02/24/random-half-thoughts-while-driving/">Continue reading <span class="meta-nav">&#8594;</span></a>
No related posts.]]></description>
			<content:encoded><![CDATA[<p>So I often have epiphany teasers while driving long distances or stuck in traffic. I call them teasers because they are never fully developed ideas and often disappear into thoughts about passing cars, or yelling at the person on their cell phone going 15 MPH taking up 2 lanes.</p>
<p>Here is some I was able to save today (VMware related):</p>
<p>1. What if I DID want an HA cluster to be split in two different locations, Why?<br />
2. Why must we over-subscribe iSCSI vmkernel ports to make the best use of the 1gbe phyical nics. Is it a just the software iSCSI in vSphere? Is just something that happens with IP storage? I should test that sometime&#8230;<br />
3. If I had 10 GB nics I wouldn&#8217;t use them on Service Console or Vmotion that would be a waste. No wait, VMotion ports could use it to speed up  your VMotions.<br />
4. Why do people use VLAN 1 for their production servers? Didnt&#8217; their Momma teach em?<br />
5.  People shouldn&#8217;t fear using extents, they are not that bad. No, maybe they are. Nah, I bet they are fine, how often does just 1 lun go down. What are the chances of it being the first lun in your extent? Ok maybe it happens a bunch. I am too scared to try it today.</p>
<p><img class="alignnone" title="Snow Day" src="http://lh3.ggpht.com/_Ynay7ILHK2U/S3bhdFhY0bI/AAAAAAABT1M/xE5Tnoe38Y0/s288/IMG_6596.JPG" alt="" width="192" height="288" /></p>
<p>No related posts.</p>]]></content:encoded>
			<wfw:commentRss>http://www.2vcps.com/2010/02/24/random-half-thoughts-while-driving/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>VMware View and Xsigo</title>
		<link>http://www.2vcps.com/2010/02/18/vmware-view-and-xsigo/</link>
		<comments>http://www.2vcps.com/2010/02/18/vmware-view-and-xsigo/#comments</comments>
		<pubDate>Fri, 19 Feb 2010 03:48:34 +0000</pubDate>
		<dc:creator>Jon Owings</dc:creator>
				<category><![CDATA[administration]]></category>
		<category><![CDATA[cloud]]></category>
		<category><![CDATA[network]]></category>
		<category><![CDATA[performance]]></category>
		<category><![CDATA[storage]]></category>
		<category><![CDATA[view]]></category>
		<category><![CDATA[vmware]]></category>
		<category><![CDATA[xsigo]]></category>

		<guid isPermaLink="false">http://www.2vcps.com/?p=288</guid>
		<description><![CDATA[*Disclaimer &#8211; I work for a Xsigo and VMware partner. I was in the VMware View Design and Best practices class a couple weeks ago. Much of the class is built on the VMware View Reference Architecture. The picture below &#8230; <a href="http://www.2vcps.com/2010/02/18/vmware-view-and-xsigo/">Continue reading <span class="meta-nav">&#8594;</span></a>
Related posts:<ol>
<li><a href='http://www.2vcps.com/2010/06/24/some-xsigo-links/' rel='bookmark' title='Some Xsigo Links'>Some Xsigo Links</a></li>
<li><a href='http://www.2vcps.com/2010/05/28/b-y-o-p-the-alternative-vblock/' rel='bookmark' title='B.Y.O.P &#8211; The Alternative Vblock'>B.Y.O.P &#8211; The Alternative Vblock</a></li>
<li><a href='http://www.2vcps.com/2010/04/26/using-network-load-balancing-with-view/' rel='bookmark' title='Using Network Load Balancing with View'>Using Network Load Balancing with View</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p><em>*Disclaimer &#8211; I work for a Xsigo and VMware partner.</em></p>
<p>I was in the VMware View Design and Best practices class a couple weeks ago. Much of the class is built on the <a href="http://www.vmware.com/resources/techresources/1084" target="_blank">VMware View Reference Architecture</a>. The picture below is from that PDF.</p>
<p><img class="alignnone size-full wp-image-287" title="ViewPOD5k" src="http://www.2vcps.com/wp-content/uploads/2010/02/ViewPOD5k.png" alt="" width="764" height="440" /></p>
<p>It really struck me how many IO connections (Network or Storage) it would take to run this POD. Minimum (in my opinion) would be 6 cables per host with ten 8 host clusters that is 480 cables! Let&#8217;s say that 160 of those are 4 gb Fiberchannel and the other 320 are 1 gb ethernet. The is 640 gb for storage and 320 for network.</p>
<p>Xsigo currently uses 20 gb infiniband and best practice would be to use 2 cards per server. The same 80 servers in the above cluster would have 3200 gb of bandwidth available. Add in the flexibility and ease of management you get using virtual IO. The cost savings in the number director class fiber switches and datacenter switches you no longer need and the ROI I would think the pays for the Xsigo Directors. I don&#8217;t deal with pricing so this is pure contemplation. So I will stick with the technical benefits. Being in the datacenter I like any solution that makes provisioning servers easier, takes less cabling, and gives me unbelievable bandwidth.</p>
<p>So just in the way VMware changed the way we think about the datacenter. Virtual IO will once again change how we deal with our deployments.</p>
<p>Related posts:<ol>
<li><a href='http://www.2vcps.com/2010/06/24/some-xsigo-links/' rel='bookmark' title='Some Xsigo Links'>Some Xsigo Links</a></li>
<li><a href='http://www.2vcps.com/2010/05/28/b-y-o-p-the-alternative-vblock/' rel='bookmark' title='B.Y.O.P &#8211; The Alternative Vblock'>B.Y.O.P &#8211; The Alternative Vblock</a></li>
<li><a href='http://www.2vcps.com/2010/04/26/using-network-load-balancing-with-view/' rel='bookmark' title='Using Network Load Balancing with View'>Using Network Load Balancing with View</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://www.2vcps.com/2010/02/18/vmware-view-and-xsigo/feed/</wfw:commentRss>
		<slash:comments>14</slash:comments>
		</item>
		<item>
		<title>iSCSI Connections on EqualLogic PS Series</title>
		<link>http://www.2vcps.com/2010/02/16/iscsi-connections-eq/</link>
		<comments>http://www.2vcps.com/2010/02/16/iscsi-connections-eq/#comments</comments>
		<pubDate>Tue, 16 Feb 2010 22:05:47 +0000</pubDate>
		<dc:creator>Jon Owings</dc:creator>
				<category><![CDATA[performance]]></category>
		<category><![CDATA[storage]]></category>
		<category><![CDATA[vsphere]]></category>

		<guid isPermaLink="false">http://www.2vcps.com/?p=221</guid>
		<description><![CDATA[Equallogic PS Series Design Considerations VMware vSphere introduces support for multipathing for iSCSI. Equallogic released a recommended configuration for using MPIO with iSCSI.   I have a few observations after working with MPIO and iSCSI. The main lesson is know the &#8230; <a href="http://www.2vcps.com/2010/02/16/iscsi-connections-eq/">Continue reading <span class="meta-nav">&#8594;</span></a>
Related posts:<ol>
<li><a href='http://www.2vcps.com/2010/10/07/how-vaai-helps-equallogic/' rel='bookmark' title='How VAAI Helps Equallogic'>How VAAI Helps Equallogic</a></li>
<li><a href='http://www.2vcps.com/2010/10/29/equallogic-vaai-and-the-fear-of-queues/' rel='bookmark' title='Equallogic, VAAI and the Fear of Queues'>Equallogic, VAAI and the Fear of Queues</a></li>
<li><a href='http://www.2vcps.com/2009/08/28/using-iscsi-to-get-some-big-ole-disk-in-a-virtual-machine/' rel='bookmark' title='Using iSCSI to get some big ole disk in a Virtual Machine'>Using iSCSI to get some big ole disk in a Virtual Machine</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p><strong>Equallogic PS Series Design Considerations</strong></p>
<p>VMware vSphere introduces support for multipathing for iSCSI. Equallogic released a recommended configuration for using <a href="http://communities.vmware.com/servlet/JiveServlet/download/1387588-29608/Configuring%20VMware%20vSphere%20Software%20iSCSI%20with%20Dell%20EqualLogic%20PS%20Series%20Storage.pdf;jsessionid=A4B65D74052378601CF351A4B6191F6F">MPIO with iSCSI</a>.   I have a few observations after working with MPIO and iSCSI. The main lesson is know the capabilities of the storage before you go trying to see how man paths you can have with active IO.</p>
<ol>
<li>EqualLogic defines a host connection as 1 iSCSI path to a volume. At VMware Partner Exchange 2010 I was told by a Dell guy, &#8220;Yeah, gotta read those release notes!&#8221;</li>
<li>EqualLogic limits the number of hosts in the to <a href="http://www.equallogic.com/resourcecenter/assetview.aspx?id=8335">128 per pool or 256 per group connections in the 4000 series</a> (see table 1 for full breakdown) and to <a href="http://www.equallogic.com/resourcecenter/assetview.aspx?id=7925">512/2048 per pool/group connections in the 6000 series arrays</a>.</li>
<li>The EqualLogic MPIO recommendation mentioned above can consume many connections with just a few vSphere hosts.</li>
</ol>
<p>I was under the false impression that by “hosts” we were talking about physical connections to the array. Especially since the datasheet says “Hosts Accessing PS series Group”. It actually means iSCSI connections to a volume. Therefore if you have 1 host with 128 volumes singly connected via 1 iSCSI path each, you are already at your limit (on the PS4000).</p>
<p>An example of how fast vSphere iSCSI MPIO (Round Robin) can consume available connections can be seen this this scenario. Five vSphere hosts with 2 network cards each on the iSCSI network. If we follow the whitepaper above we will create 4 vmkernel ports per host. Each vmkernel creates an additional connection per volume. Therefore if we have 10 300 GB volumes for datastores we already have 200 iSCSI connections to our Equallogic array. Really no problem for the 6000 series but the 4000 will start to drop connections. I have not even added the connections created by the vStorage API/VCB capable backup server. So here is a formula*:</p>
<p><em>N – number of hosts</em></p>
<p><em>V – number of vmkernel ports</em></p>
<p><em>T – number of targeted volumes</em></p>
<p><em>B – number of connections from the backup server</em></p>
<p><em>C – number of connections</em></p>
<p><strong><em>(N * V * T) + B = C</em></strong></p>
<table border="1" cellspacing="0" cellpadding="0">
<tbody>
<tr>
<td width="221" valign="top">Equallogic   PS Series Array</td>
<td width="221" valign="top">Connections   (pool/group)</td>
</tr>
<tr>
<td width="221" valign="top">4000E</td>
<td width="221" valign="top">128/256</td>
</tr>
<tr>
<td width="221" valign="top">4000X</td>
<td width="221" valign="top">128/256</td>
</tr>
<tr>
<td width="221" valign="top">4000XV</td>
<td width="221" valign="top">128/256</td>
</tr>
<tr>
<td width="221" valign="top">6000E</td>
<td width="221" valign="top">512/2048</td>
</tr>
<tr>
<td width="221" valign="top">6000S</td>
<td width="221" valign="top">512/2048</td>
</tr>
<tr>
<td width="221" valign="top">6000X</td>
<td width="221" valign="top">512/2048</td>
</tr>
<tr>
<td width="221" valign="top">6000XV</td>
<td width="221" valign="top">512/2048</td>
</tr>
<tr>
<td width="221" valign="top">6010,6500,6510   Series</td>
<td width="221" valign="top">512/2048</td>
</tr>
</tbody>
</table>
<p><strong>Use multiple pools within the group in order to avoid dropped iSCSI connections and provide scalability</strong>. This reduces the number of spindles you are hitting with your IO. Using care to know the capacity of the array will help avoid big problems down the road.</p>
<p>*I have seen the connections actually be higher and I can only figure this is because the way EqualLogic does iSCSI redirection.</p>
<p>Related posts:<ol>
<li><a href='http://www.2vcps.com/2010/10/07/how-vaai-helps-equallogic/' rel='bookmark' title='How VAAI Helps Equallogic'>How VAAI Helps Equallogic</a></li>
<li><a href='http://www.2vcps.com/2010/10/29/equallogic-vaai-and-the-fear-of-queues/' rel='bookmark' title='Equallogic, VAAI and the Fear of Queues'>Equallogic, VAAI and the Fear of Queues</a></li>
<li><a href='http://www.2vcps.com/2009/08/28/using-iscsi-to-get-some-big-ole-disk-in-a-virtual-machine/' rel='bookmark' title='Using iSCSI to get some big ole disk in a Virtual Machine'>Using iSCSI to get some big ole disk in a Virtual Machine</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://www.2vcps.com/2010/02/16/iscsi-connections-eq/feed/</wfw:commentRss>
		<slash:comments>7</slash:comments>
		</item>
		<item>
		<title>New VMware KB &#8211; zeroedthick or eagerzeroedthick</title>
		<link>http://www.2vcps.com/2010/01/19/new-vmware-kb-zeroedthick-or-eagerzeroedthick/</link>
		<comments>http://www.2vcps.com/2010/01/19/new-vmware-kb-zeroedthick-or-eagerzeroedthick/#comments</comments>
		<pubDate>Tue, 19 Jan 2010 14:50:40 +0000</pubDate>
		<dc:creator>Jon Owings</dc:creator>
				<category><![CDATA[performance]]></category>
		<category><![CDATA[storage]]></category>

		<guid isPermaLink="false">http://www.2vcps.com/?p=267</guid>
		<description><![CDATA[Due to the performance hit while zeroing mentioned in the Thin Provisioning Performance white paper this article in the VMware knowledge base could be of some good use. I would suggest using eagerzeroedthick for any high IO tier 1 type &#8230; <a href="http://www.2vcps.com/2010/01/19/new-vmware-kb-zeroedthick-or-eagerzeroedthick/">Continue reading <span class="meta-nav">&#8594;</span></a>
Related posts:<ol>
<li><a href='http://www.2vcps.com/2011/12/22/a-year-later/' rel='bookmark' title='A Year Later'>A Year Later</a></li>
<li><a href='http://www.2vcps.com/2010/09/05/the-fun-stuff-at-vmworld-2010/' rel='bookmark' title='The Fun Stuff at VMworld 2010'>The Fun Stuff at VMworld 2010</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p>Due to the performance hit while zeroing mentioned in the <a href="http://www.vmware.com/pdf/vsp_4_thinprov_perf.pdf" target="_blank">Thin Provisioning Performance white paper</a> this article in the <a href="http://kb.vmware.com/selfservice/search.do?cmd=displayKC&amp;docType=kc&amp;externalId=1011170&amp;sliceId=1&amp;docTypeID=DT_KB_1_1&amp;dialogID=60882765&amp;stateId=0%200%2062015878" target="_blank">VMware knowledge base </a>could be of some good use.</p>
<p>I would suggest using eagerzeroedthick for any high IO tier 1 type of Virtual Machine. This can be done when creating the VMDK from the GUI by selecting the &#8220;Support Clustering Features such as Fault Tolerance&#8221; check box.</p>
<p><a href="http://www.2vcps.com/wp-content/uploads/2010/01/FT-Support.png"><img class="size-full wp-image-270 alignnone" title="FT-Support" src="http://www.2vcps.com/wp-content/uploads/2010/01/FT-Support.png" alt="" width="580" height="452" /></a></p>
<p>So go out and check your VMDK&#8217;s.</p>
<p>Related posts:<ol>
<li><a href='http://www.2vcps.com/2011/12/22/a-year-later/' rel='bookmark' title='A Year Later'>A Year Later</a></li>
<li><a href='http://www.2vcps.com/2010/09/05/the-fun-stuff-at-vmworld-2010/' rel='bookmark' title='The Fun Stuff at VMworld 2010'>The Fun Stuff at VMworld 2010</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://www.2vcps.com/2010/01/19/new-vmware-kb-zeroedthick-or-eagerzeroedthick/feed/</wfw:commentRss>
		<slash:comments>11</slash:comments>
		</item>
		<item>
		<title>Fibre or Ethernet Saturation &#8211; Which comes First?</title>
		<link>http://www.2vcps.com/2009/01/07/fibre-or-ethernet-saturation-which-comes-first/</link>
		<comments>http://www.2vcps.com/2009/01/07/fibre-or-ethernet-saturation-which-comes-first/#comments</comments>
		<pubDate>Wed, 07 Jan 2009 17:00:00 +0000</pubDate>
		<dc:creator>Jon Owings</dc:creator>
				<category><![CDATA[performance]]></category>
		<category><![CDATA[vmware]]></category>

		<guid isPermaLink="false">http://2vcps.com/2009/01/07/fibre-or-ethernet-saturation-which-comes-first/</guid>
		<description><![CDATA[I was thinking about how far I can scale a VI3 Enviroment yesterday. I started to think, and that can be dangerous.What will saturate first? The Fibre network or the Ethernet network?So in my envisioned setup it would have dual &#8230; <a href="http://www.2vcps.com/2009/01/07/fibre-or-ethernet-saturation-which-comes-first/">Continue reading <span class="meta-nav">&#8594;</span></a>
Related posts:<ol>
<li><a href='http://www.2vcps.com/2008/10/30/vcdx-nugget-identify-iscsi-fibre-channel/' rel='bookmark' title='VCDX &#8211; Nugget &#8212; Identify iSCSI, Fibre Channel'>VCDX &#8211; Nugget &#8212; Identify iSCSI, Fibre Channel</a></li>
<li><a href='http://www.2vcps.com/2009/01/15/tale-of-two-datacenters/' rel='bookmark' title='Tale of Two Datacenters'>Tale of Two Datacenters</a></li>
<li><a href='http://www.2vcps.com/2010/02/18/vmware-view-and-xsigo/' rel='bookmark' title='VMware View and Xsigo'>VMware View and Xsigo</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p>I was thinking about how far I can scale a VI3 Enviroment yesterday. I started to think, and that can be dangerous.<br />What will saturate first? The Fibre network or the Ethernet network?<br />So in my envisioned setup it would have dual quad core processors so if I can still do math that is 8 cores. If I might fit 4 x 1vCPU virtuals per core, I could theorize 32 VM&#8217;s per host? Now lets say I bought 2 of those quad port NICs for each host, so to be simple there is 8 network ports per host. Finally, lets say I have 2 single port HBA&#8217;s connecting to the fibre and I am lucking enough for it to be 4gb all the way to the SAN.<br />We have 2 Cisco 48 port 3560 GigE switches for the ESX hosts to access and 2 24 port Brocade Fibre Switches. So I scale my ESX hosts to fill the Cisco switches and it tops out at 11. I will use 11 ports on each Brocade, the Storage Processors use 4 more ports. <br />So what fills up first?<br />- Fibre<br />- Ethernet<br />- Disk IO</p>
<p>Practically my bet would be on Memory, but lets say memory can go as high as we need.</p>
<p>Another snag is CPU resources, to generate enough network traffic to kill that many GigE Nics I would think the CPU&#8217;s would pin out first? </p>
<p>I really wish I had a good lab with lots of vendor equipment I could test and try to break. That would be fun for me.</p>
<p>Related posts:<ol>
<li><a href='http://www.2vcps.com/2008/10/30/vcdx-nugget-identify-iscsi-fibre-channel/' rel='bookmark' title='VCDX &#8211; Nugget &#8212; Identify iSCSI, Fibre Channel'>VCDX &#8211; Nugget &#8212; Identify iSCSI, Fibre Channel</a></li>
<li><a href='http://www.2vcps.com/2009/01/15/tale-of-two-datacenters/' rel='bookmark' title='Tale of Two Datacenters'>Tale of Two Datacenters</a></li>
<li><a href='http://www.2vcps.com/2010/02/18/vmware-view-and-xsigo/' rel='bookmark' title='VMware View and Xsigo'>VMware View and Xsigo</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://www.2vcps.com/2009/01/07/fibre-or-ethernet-saturation-which-comes-first/feed/</wfw:commentRss>
		<slash:comments>6</slash:comments>
		</item>
	</channel>
</rss>

