<?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>X-Combinator &#187; poolparty</title>
	<atom:link href="http://www.xcombinator.com/category/poolparty/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.xcombinator.com</link>
	<description>making the human scalable</description>
	<lastBuildDate>Mon, 06 Sep 2010 20:18:14 +0000</lastBuildDate>
	
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>&#8220;Easily&#8221; setup a monitored Hadoop / Hive Cluster in EC2 with PoolParty</title>
		<link>http://www.xcombinator.com/2009/07/08/easily-setup-a-monitored-hadoop-hive-cluster-in-ec2-with-poolparty/</link>
		<comments>http://www.xcombinator.com/2009/07/08/easily-setup-a-monitored-hadoop-hive-cluster-in-ec2-with-poolparty/#comments</comments>
		<pubDate>Wed, 08 Jul 2009 14:13:34 +0000</pubDate>
		<dc:creator>Nate Murray</dc:creator>
				<category><![CDATA[hadoop]]></category>
		<category><![CDATA[poolparty]]></category>
		<category><![CDATA[programming]]></category>
		<category><![CDATA[ruby]]></category>
		<category><![CDATA[scalability]]></category>

		<guid isPermaLink="false">http://www.xcombinator.com/2009/07/08/easily-setup-a-monitored-hadoop-hive-cluster-in-ec2-with-poolparty/</guid>
		<description><![CDATA[
Summary
Setting up a scalable Hadoop cluster isn&#8217;t easy, but PoolParty makes it easier
and manageable.
By the time we&#8217;re done with this tutorial you&#8217;ll have a Hadoop cluster consisting of one master node and two slaves.  The slaves are formatted with HDFS and process MapReduce jobs that are delegated to them from the master. 

The whole [...]]]></description>
			<content:encoded><![CDATA[<p></p>
<h1>Summary</h1>
<p>Setting up a scalable Hadoop cluster isn&#8217;t easy, but PoolParty makes it easier<br />
and manageable.</p>
<p>By the time we&#8217;re done with this tutorial you&#8217;ll have a Hadoop cluster consisting of one master node and two slaves.  The slaves are formatted with HDFS and process MapReduce jobs that are delegated to them from the master.<br /> 
</p>
<p>The whole cluster is monitored by Ganglia.</p>
<p> <a href='http://www.xcombinator.com/wp-content/uploads/2009/07/picture-8.png' title='ganglia cluster monitoring'><img src='http://www.xcombinator.com/wp-content/uploads/2009/07/picture-8.thumbnail.png' alt='ganglia cluster monitoring' /></a></p>
<h1>Benefits of PoolParty</h1>
<p>The nodes are very interdependent. By that I mean that each node needs to have 2 or 3 configuration files that are based on the other currently running nodes in the cluster. As nodes are joining and leaving the cluster each of these files on every node needs to be updated. PoolParty handles this process for you more-or-less automatically. The benefit is that you don&#8217;t have roll your own methods to do this every time you want to setup a cluster. </p>
<p>In PoolParty plugins are first-class citizens. This means you can write your own plugins and they are every bit as powerful as the resources that make up PoolParty core itself. This makes it easy to break up server functionality into <em>modules of code</em> . PoolParty, in a sense, gives you object-oriented server configurations. You can, for instance, take a Ganglia object, call a few methods and PoolParty takes care of executing the required commands to deploy a configured Ganglia cluster.</p>
<h1>Architecture </h1>
<p>PoolParty is built around the notion of <em>pools</em> and <em>clouds</em> . A pool is simply a collection of clouds. A cloud is a homogeneous set of nodes. i.e. <strong>every node in a cloud is <em>configured</em> the same way</strong> . Obviously nodes in a cloud will have different sets of working data as they run, but the idea is any node in a cloud could be substituted for any other node in that same cloud.<br /> 
</p>
<p>PoolParty itself is designed to be fully distributed and masterless. There is no required concept of &#8220;master&#8221; and &#8220;slave&#8221; in PoolParty itself. That said, many pieces of software, such as Hadoop, do have this concept and PoolParty can be configured to take advantage of that. </p>
<p>We&#8217;ll be setting up our pool as two clouds <code>hadoop_master</code> and <code>hadoop_slave</code>. Obviously, <code>hadoop_slave</code> will be a cloud (cluster) of nodes configured to be Hadoop slaves. <code>hadoop_master</code> will also be a cloud of masters. In our example we&#8217;re only going to use 1 node as the master. But  you could relatively easily configure everything to have more than one master.<br /> 
</p>
<h1>Software involved</h1>
<ul>
<li><a href="http://hadoop.apache.org/core/">Hadoop</a> </li>
<li><a href="http://wiki.apache.org/hadoop/Hive">Hive</a></li>
<li><a href="http://ganglia.info/">Ganglia</a></li>
<li><a href="http://poolpartyrb.com">PoolParty</a></li>
</ul>
<h1>Prerequisites</h1>
<p>This tutorial assumes that:</p>
<ol>
<li><strong>You have Amazon EC2 java tools installed</strong>. See <a href="http://docs.amazonwebservices.com/AWSEC2/latest/GettingStartedGuide/index.html?StartCLI.html">EC2: Getting Started with the Command Line Tools</a></li>
<li><strong>You have the proper EC2 environment variables setup</strong>. See <a href="http://auser.github.com/poolparty/amazon_ec2_setup.html">Setting up EC2</a> on the PoolParty website. For instance, a typical PoolParty install would have these variables in <code>$HOME/.ec2/keys_and_secrets.sh</code>.</li>
<li><strong>You have PoolParty installed from source</strong>. In theory, you should be able to install the gem. However, <em>today</em>  you should probably install from source. Make sure you have <code>git://github.com/auser/poolparty.git</code> checked out and then follow the &#8220;Installing&#8221; directions on <a href="http://wiki.github.com/auser/poolparty/installing">the PoolParty wiki</a>. You only need to complete the two sections <strong>Dependencies required to build gem locally</strong> and <strong>Instructions</strong> . This will install all the development dependency gems and then make sure you have all of the submodules. <strong>NOTE</strong> PoolParty deploys ruby gem versions based on the versions on your <em>local</em> machine. So make sure you have the most recent versions of the required gems installed locally.</li>
<li><strong>You have the <a href="http://github.com/jashmenn/poolparty-examples/tree/master">jashmenn/poolparty-examples</a> repository</strong>. <code>git clone git://github.com/jashmenn/poolparty-examples.git /path/to/poolparty-examples</code> </li>
<li><strong>You have the <a href="http://github.com/jashmenn/poolparty-extensions/tree/master">jashmenn/poolparty-extensions</a> repository</strong>. Note that this directory must be a <em>sibling</em> directory to the <code>poolparty-examples</code> directory. <code>git clone git://github.com/jashmenn/poolparty-extensions.git /path/to/poolparty-extensions</code></li>
</ol>
<h1>EC2 Security</h1>
<p>Now that we have the code issue complete, we now need to deal with Amazon&#8217;s security. (See <a href="http://auser.github.com/poolparty/amazon.html">here</a> if you are unclear on how EC2 security works.)</p>
<h2>Setup Keypairs</h2>
<hr />
<p>Every cloud in PoolParty must have its own unique keypair. Thats important enough it&#8217;s worth repeating: <em>every cloud in PoolParty must have its own unique keypair</em> .</p>
<p>So run the following commands:</p>

<div class="wp_syntax"><div class="code"><pre class="shell" style="font-family:monospace;">ec2-add-keypair cloud_hadoop_slave &amp;gt; ~/.ssh/cloud_hadoop_slave
ec2-add-keypair cloud_hadoop_master &amp;gt; ~/.ssh/cloud_hadoop_master
chmod 600 ~/.ssh/cloud_hadoop_*</pre></div></div>

<h2>Security Groups</h2>
<hr />
<p>You&#8217;ll also want to create a security group for our <em>pool</em> . </p>

<div class="wp_syntax"><div class="code"><pre class="shell" style="font-family:monospace;">ec2-add-group hadoop_pool -d &quot;the pool of hadoop masters and slaves&quot;</pre></div></div>

<p><strong>NOTICE:</strong> Hadoop has a crazy number of ports that it requires. The ports below will <em>work</em> but may not be the most secure configuration. If you understand this better than I please recommend better settings. Otherwise proceed knowing that these ports are probably a little <em>too</em> open.</p>
<p>We also need to open a number of ports for this security group:</p>

<div class="wp_syntax"><div class="code"><pre class="shell" style="font-family:monospace;">&lt;code&gt;ec2-authorize -p 22 hadoop_pool               # ssh
ec2-authorize -p 8642 hadoop_pool             # poolparty internal daemons
ec2-authorize -P icmp -t -1:-1 hadoop_pool    # if you want to ping (optional, i guess)
ec2-authorize -p 80 hadoop_pool               # apache
&nbsp;
ec2-authorize -p 8649 -P udp hadoop_pool      # ganglia UDP
ec2-authorize hadoop_pool -o hadoop_pool -u xxxxxxxxxxxx # xxxxxxxxxxxx is your amazon account id. ugly but true
&lt;/code&gt;</pre></div></div>

<h1>Start your cloud</h1>
<p><strong>NOTE</strong> : There are a number of configurations that rely on the whole cloud being booted. This means that the first time you run <code>cloud-start</code> you may see a few shell errors. This is okay as long as it goes away after subsequent configures. The idea is that all nodes need to be started before the whole configuration will work properly.</p>

<div class="wp_syntax"><div class="code"><pre class="shell" style="font-family:monospace;">cd /path/to/poolparty-examples/hadoop
cloud-list # sanity check, no instances should show up, no exceptions should be raised
cloud-start -vd</pre></div></div>

<p><em>Tons</em>  of information will fly by. Be patient, this could take upwards of 15 minutes. </p>
<p>Everything done? Good. Now you&#8217;re going to need to configure a second time. Now that all the nodes are booted they can be configured to talk to each other properly.</p>

<div class="wp_syntax"><div class="code"><pre class="shell" style="font-family:monospace;">cloud-configure -vd</pre></div></div>

<p>Again, tons of output should fly by. Wait for it to finish.</p>
<p>Now what we want to do is actually run our hadoop sample job. Open up the <code>hadoop/clouds.rb</code> and find the lines that look like this:</p>

<div class="wp_syntax"><div class="code"><pre class="ruby" style="font-family:monospace;">hadoop <span style="color:#9966CC; font-weight:bold;">do</span>
  configure_master
  prep_example_job
  <span style="color:#008000; font-style:italic;"># run_example_job</span>
<span style="color:#9966CC; font-weight:bold;">end</span></pre></div></div>

<p>Uncomment the <code>run_example_job</code> line and configure, but this time we only need to configure master.</p>

<div class="wp_syntax"><div class="code"><pre class="shell" style="font-family:monospace;">cloud-configure -vd -c hadoop_master</pre></div></div>

<p>This <em>should</em> work, but there is a chance the hdfs wont be started in time to load the sample job. If that happens, just configure one more time.<br />
You know it worked if you see output like the following (it wont be at the bottom):</p>
<pre>[Fri, 26 Jun 2009 20:09:50 +0000] DEBUG: STDERR: 09/06/26 20:09:11 INFO input.FileInputFormat: Total input paths to process : 3
09/06/26 20:09:12 INFO mapred.JobClient: Running job: job_200906262006_0001
09/06/26 20:09:13 INFO mapred.JobClient:  map 0% reduce 0%
09/06/26 20:09:32 INFO mapred.JobClient:  map 66% reduce 0%
09/06/26 20:09:38 INFO mapred.JobClient:  map 100% reduce 0%
09/06/26 20:09:47 INFO mapred.JobClient:  map 100% reduce 100%
09/06/26 20:09:49 INFO mapred.JobClient: Job complete: job_200906262006_0001
09/06/26 20:09:49 INFO mapred.JobClient: Counters: 17
</pre>
<p>Congradulations! You now have a scalable Hadoop cluster at your disposal!</p>
<h1>What to do when something goes wrong</h1>
<ul>
<li>Checkout the <a href="http://auser.github.com/poolparty/community.html">PoolParty IRC channel</a>, we&#8217;re always around and ready to help #poolpartyrb. </li>
</ul>
<p>This plugin was based on a number of helpful sites on the web. Checkout the following links:</p>
<h2>Hadoop</h2>
<hr />
<ul>
<li><a href="http://www.michael-noll.com/wiki/Running_Hadoop_On_Ubuntu_Linux_(Multi-Node_Cluster">Michael Noll&#8217;s Haddop Tutorial</a>)</li>
</ul>
<h2>Hive</h2>
<hr />
<ul>
<li><a href="http://wiki.apache.org/hadoop/Hive">Apache&#8217;s Hive website</a></li>
</ul>
<h2>Ganglia</h2>
<hr />
<ul>
<li><a href="http://www.ibm.com/developerworks/wikis/display/WikiPtype/ganglia">IBM&#8217;s Ganglia Tutorial</a></li>
</ul>
<h1>References</h1>
<ul>
<li><a href="http://auser.github.com/poolparty/docs/index.html">PoolParty Documentation</a></li>
</ul>
<p>Share:</p>
<p>	<a rel="nofollow"  href="http://delicious.com/post?url=http%3A%2F%2Fwww.xcombinator.com%2F2009%2F07%2F08%2Feasily-setup-a-monitored-hadoop-hive-cluster-in-ec2-with-poolparty%2F&amp;title=%22Easily%22%20setup%20a%20monitored%20Hadoop%20%2F%20Hive%20Cluster%20in%20EC2%20with%20PoolParty&amp;notes=%20%0D%0A%20%0D%0ASummary%20%0D%0A%20%0D%0ASetting%20up%20a%20scalable%20Hadoop%20cluster%20isn%27t%20easy%2C%20but%20PoolParty%20makes%20it%20easier%0D%0Aand%20manageable.%20%0D%0A%20%0D%0ABy%20the%20time%20we%27re%20done%20with%20this%20tutorial%20you%27ll%20have%20a%20Hadoop%20cluster%20consisting%20of%20one%20master%20node%20and%20two%20slaves.%20%20The%20slaves%20a" title="del.icio.us"><img src="http://www.xcombinator.com/wp-content/plugins/sociable/images/delicious.png" title="del.icio.us" alt="del.icio.us" class="sociable-hovers" /></a><br />
	<a rel="nofollow"  href="http://reddit.com/submit?url=http%3A%2F%2Fwww.xcombinator.com%2F2009%2F07%2F08%2Feasily-setup-a-monitored-hadoop-hive-cluster-in-ec2-with-poolparty%2F&amp;title=%22Easily%22%20setup%20a%20monitored%20Hadoop%20%2F%20Hive%20Cluster%20in%20EC2%20with%20PoolParty" title="Reddit"><img src="http://www.xcombinator.com/wp-content/plugins/sociable/images/reddit.png" title="Reddit" alt="Reddit" class="sociable-hovers" /></a><br />
	<a rel="nofollow"  href="http://technorati.com/faves?add=http%3A%2F%2Fwww.xcombinator.com%2F2009%2F07%2F08%2Feasily-setup-a-monitored-hadoop-hive-cluster-in-ec2-with-poolparty%2F" title="Technorati"><img src="http://www.xcombinator.com/wp-content/plugins/sociable/images/technorati.png" title="Technorati" alt="Technorati" class="sociable-hovers" /></a><br />
	<a rel="nofollow"  href="http://twitter.com/home?status=%22Easily%22%20setup%20a%20monitored%20Hadoop%20%2F%20Hive%20Cluster%20in%20EC2%20with%20PoolParty%20-%20http%3A%2F%2Fwww.xcombinator.com%2F2009%2F07%2F08%2Feasily-setup-a-monitored-hadoop-hive-cluster-in-ec2-with-poolparty%2F" title="Twitter"><img src="http://www.xcombinator.com/wp-content/plugins/sociable/images/twitter.png" title="Twitter" alt="Twitter" class="sociable-hovers" /></a><br />
	<a rel="nofollow"  href="http://www.facebook.com/share.php?u=http%3A%2F%2Fwww.xcombinator.com%2F2009%2F07%2F08%2Feasily-setup-a-monitored-hadoop-hive-cluster-in-ec2-with-poolparty%2F&amp;t=%22Easily%22%20setup%20a%20monitored%20Hadoop%20%2F%20Hive%20Cluster%20in%20EC2%20with%20PoolParty" title="Facebook"><img src="http://www.xcombinator.com/wp-content/plugins/sociable/images/facebook.png" title="Facebook" alt="Facebook" class="sociable-hovers" /></a><br />
	<a rel="nofollow"  href="http://www.google.com/bookmarks/mark?op=edit&amp;bkmk=http%3A%2F%2Fwww.xcombinator.com%2F2009%2F07%2F08%2Feasily-setup-a-monitored-hadoop-hive-cluster-in-ec2-with-poolparty%2F&amp;title=%22Easily%22%20setup%20a%20monitored%20Hadoop%20%2F%20Hive%20Cluster%20in%20EC2%20with%20PoolParty&amp;annotation=%20%0D%0A%20%0D%0ASummary%20%0D%0A%20%0D%0ASetting%20up%20a%20scalable%20Hadoop%20cluster%20isn%27t%20easy%2C%20but%20PoolParty%20makes%20it%20easier%0D%0Aand%20manageable.%20%0D%0A%20%0D%0ABy%20the%20time%20we%27re%20done%20with%20this%20tutorial%20you%27ll%20have%20a%20Hadoop%20cluster%20consisting%20of%20one%20master%20node%20and%20two%20slaves.%20%20The%20slaves%20a" title="Google Bookmarks"><img src="http://www.xcombinator.com/wp-content/plugins/sociable/images/googlebookmark.png" title="Google Bookmarks" alt="Google Bookmarks" class="sociable-hovers" /></a><br />
	<a rel="nofollow"  href="http://news.ycombinator.com/submitlink?u=http%3A%2F%2Fwww.xcombinator.com%2F2009%2F07%2F08%2Feasily-setup-a-monitored-hadoop-hive-cluster-in-ec2-with-poolparty%2F&amp;t=%22Easily%22%20setup%20a%20monitored%20Hadoop%20%2F%20Hive%20Cluster%20in%20EC2%20with%20PoolParty" title="HackerNews"><img src="http://www.xcombinator.com/wp-content/plugins/sociable/images/hackernews.png" title="HackerNews" alt="HackerNews" class="sociable-hovers" /></a><br />
	<a rel="nofollow"  href="http://www.printfriendly.com/print?url=http%3A%2F%2Fwww.xcombinator.com%2F2009%2F07%2F08%2Feasily-setup-a-monitored-hadoop-hive-cluster-in-ec2-with-poolparty%2F&amp;partner=sociable" title="PDF"><img src="http://www.xcombinator.com/wp-content/plugins/sociable/images/pdf.png" title="PDF" alt="PDF" class="sociable-hovers" /></a><br />
	<a rel="nofollow"  href="http://www.xcombinator.com/feed/" title="RSS"><img src="http://www.xcombinator.com/wp-content/plugins/sociable/images/rss.png" title="RSS" alt="RSS" class="sociable-hovers" /></a></p>
<p><br/><br/></p>
]]></content:encoded>
			<wfw:commentRss>http://www.xcombinator.com/2009/07/08/easily-setup-a-monitored-hadoop-hive-cluster-in-ec2-with-poolparty/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>PoolParty MRTG Plugin</title>
		<link>http://www.xcombinator.com/2009/02/03/poolparty-mrtg-plugin/</link>
		<comments>http://www.xcombinator.com/2009/02/03/poolparty-mrtg-plugin/#comments</comments>
		<pubDate>Wed, 04 Feb 2009 04:28:06 +0000</pubDate>
		<dc:creator>Nate Murray</dc:creator>
				<category><![CDATA[code]]></category>
		<category><![CDATA[deployment]]></category>
		<category><![CDATA[ec2]]></category>
		<category><![CDATA[poolparty]]></category>
		<category><![CDATA[scalability]]></category>
		<category><![CDATA[sysadmin]]></category>

		<guid isPermaLink="false">http://www.xcombinator.com/2009/02/03/poolparty-mrtg-plugin/</guid>
		<description><![CDATA[I&#8217;ve created a PoolParty plugin that makes it dead-simple to install ]]></description>
			<content:encoded><![CDATA[<p>I&#8217;ve created a <a href="http://www.poolpartyrb.com">PoolParty</a> plugin that makes it dead-simple to install <a href="http://oss.oetiker.ch/mrtg/>MRTG</a> on the nodes in your cloud</p>
<p>The <a href="http://github.com/jashmenn/poolparty-mrtg-plugin/tree/master">GitHub Repo is here</a>.</p>
<p>or <tt>git clone git://github.com/jashmenn/poolparty-mrtg-plugin.git</tt></p>
<p>Usage:</p>
<p>Declare <tt>mrtg</tt> in your <tt>cloud</tt> block</p>

<div class="wp_syntax"><div class="code"><pre class="ruby" style="font-family:monospace;">mrtg <span style="color:#9966CC; font-weight:bold;">do</span>
   monitor <span style="color:#ff3333; font-weight:bold;">:cpu</span>, <span style="color:#ff3333; font-weight:bold;">:uptime</span>, <span style="color:#ff3333; font-weight:bold;">:memory</span>, <span style="color:#ff3333; font-weight:bold;">:open_files</span>, <span style="color:#ff3333; font-weight:bold;">:processes</span>, <span style="color:#ff3333; font-weight:bold;">:apache</span>, <span style="color:#ff3333; font-weight:bold;">:network_interfaces</span>
<span style="color:#9966CC; font-weight:bold;">end</span></pre></div></div>

</p>
<p><img src='http://www.xcombinator.com/wp-content/uploads/2009/02/picture-11.png' alt='picture-11.png' /></p>
<p>Share:</p>
<p>	<a rel="nofollow"  href="http://delicious.com/post?url=http%3A%2F%2Fwww.xcombinator.com%2F2009%2F02%2F03%2Fpoolparty-mrtg-plugin%2F&amp;title=PoolParty%20MRTG%20Plugin&amp;notes=I%27ve%20created%20a%20PoolParty%20plugin%20that%20makes%20it%20dead-simple%20to%20install%20" title="del.icio.us"><img src="http://www.xcombinator.com/wp-content/plugins/sociable/images/delicious.png" title="del.icio.us" alt="del.icio.us" class="sociable-hovers" /></a><br />
	<a rel="nofollow"  href="http://reddit.com/submit?url=http%3A%2F%2Fwww.xcombinator.com%2F2009%2F02%2F03%2Fpoolparty-mrtg-plugin%2F&amp;title=PoolParty%20MRTG%20Plugin" title="Reddit"><img src="http://www.xcombinator.com/wp-content/plugins/sociable/images/reddit.png" title="Reddit" alt="Reddit" class="sociable-hovers" /></a><br />
	<a rel="nofollow"  href="http://technorati.com/faves?add=http%3A%2F%2Fwww.xcombinator.com%2F2009%2F02%2F03%2Fpoolparty-mrtg-plugin%2F" title="Technorati"><img src="http://www.xcombinator.com/wp-content/plugins/sociable/images/technorati.png" title="Technorati" alt="Technorati" class="sociable-hovers" /></a><br />
	<a rel="nofollow"  href="http://twitter.com/home?status=PoolParty%20MRTG%20Plugin%20-%20http%3A%2F%2Fwww.xcombinator.com%2F2009%2F02%2F03%2Fpoolparty-mrtg-plugin%2F" title="Twitter"><img src="http://www.xcombinator.com/wp-content/plugins/sociable/images/twitter.png" title="Twitter" alt="Twitter" class="sociable-hovers" /></a><br />
	<a rel="nofollow"  href="http://www.facebook.com/share.php?u=http%3A%2F%2Fwww.xcombinator.com%2F2009%2F02%2F03%2Fpoolparty-mrtg-plugin%2F&amp;t=PoolParty%20MRTG%20Plugin" title="Facebook"><img src="http://www.xcombinator.com/wp-content/plugins/sociable/images/facebook.png" title="Facebook" alt="Facebook" class="sociable-hovers" /></a><br />
	<a rel="nofollow"  href="http://www.google.com/bookmarks/mark?op=edit&amp;bkmk=http%3A%2F%2Fwww.xcombinator.com%2F2009%2F02%2F03%2Fpoolparty-mrtg-plugin%2F&amp;title=PoolParty%20MRTG%20Plugin&amp;annotation=I%27ve%20created%20a%20PoolParty%20plugin%20that%20makes%20it%20dead-simple%20to%20install%20" title="Google Bookmarks"><img src="http://www.xcombinator.com/wp-content/plugins/sociable/images/googlebookmark.png" title="Google Bookmarks" alt="Google Bookmarks" class="sociable-hovers" /></a><br />
	<a rel="nofollow"  href="http://news.ycombinator.com/submitlink?u=http%3A%2F%2Fwww.xcombinator.com%2F2009%2F02%2F03%2Fpoolparty-mrtg-plugin%2F&amp;t=PoolParty%20MRTG%20Plugin" title="HackerNews"><img src="http://www.xcombinator.com/wp-content/plugins/sociable/images/hackernews.png" title="HackerNews" alt="HackerNews" class="sociable-hovers" /></a><br />
	<a rel="nofollow"  href="http://www.printfriendly.com/print?url=http%3A%2F%2Fwww.xcombinator.com%2F2009%2F02%2F03%2Fpoolparty-mrtg-plugin%2F&amp;partner=sociable" title="PDF"><img src="http://www.xcombinator.com/wp-content/plugins/sociable/images/pdf.png" title="PDF" alt="PDF" class="sociable-hovers" /></a><br />
	<a rel="nofollow"  href="http://www.xcombinator.com/feed/" title="RSS"><img src="http://www.xcombinator.com/wp-content/plugins/sociable/images/rss.png" title="RSS" alt="RSS" class="sociable-hovers" /></a></p>
<p><br/><br/></p>
]]></content:encoded>
			<wfw:commentRss>http://www.xcombinator.com/2009/02/03/poolparty-mrtg-plugin/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Getting Started with PoolParty and EC2</title>
		<link>http://www.xcombinator.com/2009/02/03/getting-started-with-poolparty-and-ec2/</link>
		<comments>http://www.xcombinator.com/2009/02/03/getting-started-with-poolparty-and-ec2/#comments</comments>
		<pubDate>Wed, 04 Feb 2009 04:07:48 +0000</pubDate>
		<dc:creator>Nate Murray</dc:creator>
				<category><![CDATA[deployment]]></category>
		<category><![CDATA[ec2]]></category>
		<category><![CDATA[poolparty]]></category>
		<category><![CDATA[ruby]]></category>
		<category><![CDATA[scalability]]></category>

		<guid isPermaLink="false">http://www.xcombinator.com/2009/02/03/getting-started-with-poolparty-and-ec2/</guid>
		<description><![CDATA[Today I gave a presentation and workshop titled &#8220;Getting Started with PoolParty and EC2&#8243;. The goal was to 1) be an introduction to the myriad of terms used in Amazon&#8217;s cloud computing infrastructure and to 2) be a practical introduction to PoolParty configuration and provisioning.
Posted below are the slides. The slides alone certainly are not [...]]]></description>
			<content:encoded><![CDATA[<p>Today I gave a presentation and workshop titled &#8220;Getting Started with PoolParty and EC2&#8243;. The goal was to 1) be an introduction to the myriad of terms used in Amazon&#8217;s cloud computing infrastructure and to 2) be a practical introduction to PoolParty configuration and provisioning.</p>
<p>Posted below are the slides. The slides alone certainly are not enough for a complete introduction to PoolParty. However, I hope they have some information that is helpful to beginners.</p>
<div style="width:425px;text-align:left" id="__ss_986273"><a style="font:14px Helvetica,Arial,Sans-serif;display:block;margin:12px 0 3px 0;text-decoration:underline;" href="http://www.slideshare.net/jashmenn/getting-started-with-poolparty-and-ec2?type=powerpoint" title="Getting Started with PoolParty and EC2">Getting Started with PoolParty and EC2</a><object style="margin:0px" width="425" height="355"><param name="movie" value="http://static.slideshare.net/swf/ssplayer2.swf?doc=gettingstartedpresentation-1233710085637297-3&#038;stripped_title=getting-started-with-poolparty-and-ec2" /><param name="allowFullScreen" value="true"/><param name="allowScriptAccess" value="always"/><embed src="http://static.slideshare.net/swf/ssplayer2.swf?doc=gettingstartedpresentation-1233710085637297-3&#038;stripped_title=getting-started-with-poolparty-and-ec2" type="application/x-shockwave-flash" allowscriptaccess="always" allowfullscreen="true" width="425" height="355"></embed></object></p>
<div style="font-size:11px;font-family:tahoma,arial;height:26px;padding-top:2px;">View more <a style="text-decoration:underline;" href="http://www.slideshare.net/">presentations</a> from <a style="text-decoration:underline;" href="http://www.slideshare.net/jashmenn">jashmenn</a>. (tags: <a style="text-decoration:underline;" href="http://slideshare.net/tag/ec2">ec2</a> <a style="text-decoration:underline;" href="http://slideshare.net/tag/poolparty">poolparty</a>)</div>
</div>
<p>Check out the <a href="http://wiki.github.com/auser/poolparty">PoolParty wiki</a> for more documentation.</p>
<p>Share:</p>
<p>	<a rel="nofollow"  href="http://delicious.com/post?url=http%3A%2F%2Fwww.xcombinator.com%2F2009%2F02%2F03%2Fgetting-started-with-poolparty-and-ec2%2F&amp;title=Getting%20Started%20with%20PoolParty%20and%20EC2&amp;notes=Today%20I%20gave%20a%20presentation%20and%20workshop%20titled%20%22Getting%20Started%20with%20PoolParty%20and%20EC2%22.%20The%20goal%20was%20to%201%29%20be%20an%20introduction%20to%20the%20myriad%20of%20terms%20used%20in%20Amazon%27s%20cloud%20computing%20infrastructure%20and%20to%202%29%20be%20a%20practical%20introduction%20to%20PoolParty%20" title="del.icio.us"><img src="http://www.xcombinator.com/wp-content/plugins/sociable/images/delicious.png" title="del.icio.us" alt="del.icio.us" class="sociable-hovers" /></a><br />
	<a rel="nofollow"  href="http://reddit.com/submit?url=http%3A%2F%2Fwww.xcombinator.com%2F2009%2F02%2F03%2Fgetting-started-with-poolparty-and-ec2%2F&amp;title=Getting%20Started%20with%20PoolParty%20and%20EC2" title="Reddit"><img src="http://www.xcombinator.com/wp-content/plugins/sociable/images/reddit.png" title="Reddit" alt="Reddit" class="sociable-hovers" /></a><br />
	<a rel="nofollow"  href="http://technorati.com/faves?add=http%3A%2F%2Fwww.xcombinator.com%2F2009%2F02%2F03%2Fgetting-started-with-poolparty-and-ec2%2F" title="Technorati"><img src="http://www.xcombinator.com/wp-content/plugins/sociable/images/technorati.png" title="Technorati" alt="Technorati" class="sociable-hovers" /></a><br />
	<a rel="nofollow"  href="http://twitter.com/home?status=Getting%20Started%20with%20PoolParty%20and%20EC2%20-%20http%3A%2F%2Fwww.xcombinator.com%2F2009%2F02%2F03%2Fgetting-started-with-poolparty-and-ec2%2F" title="Twitter"><img src="http://www.xcombinator.com/wp-content/plugins/sociable/images/twitter.png" title="Twitter" alt="Twitter" class="sociable-hovers" /></a><br />
	<a rel="nofollow"  href="http://www.facebook.com/share.php?u=http%3A%2F%2Fwww.xcombinator.com%2F2009%2F02%2F03%2Fgetting-started-with-poolparty-and-ec2%2F&amp;t=Getting%20Started%20with%20PoolParty%20and%20EC2" title="Facebook"><img src="http://www.xcombinator.com/wp-content/plugins/sociable/images/facebook.png" title="Facebook" alt="Facebook" class="sociable-hovers" /></a><br />
	<a rel="nofollow"  href="http://www.google.com/bookmarks/mark?op=edit&amp;bkmk=http%3A%2F%2Fwww.xcombinator.com%2F2009%2F02%2F03%2Fgetting-started-with-poolparty-and-ec2%2F&amp;title=Getting%20Started%20with%20PoolParty%20and%20EC2&amp;annotation=Today%20I%20gave%20a%20presentation%20and%20workshop%20titled%20%22Getting%20Started%20with%20PoolParty%20and%20EC2%22.%20The%20goal%20was%20to%201%29%20be%20an%20introduction%20to%20the%20myriad%20of%20terms%20used%20in%20Amazon%27s%20cloud%20computing%20infrastructure%20and%20to%202%29%20be%20a%20practical%20introduction%20to%20PoolParty%20" title="Google Bookmarks"><img src="http://www.xcombinator.com/wp-content/plugins/sociable/images/googlebookmark.png" title="Google Bookmarks" alt="Google Bookmarks" class="sociable-hovers" /></a><br />
	<a rel="nofollow"  href="http://news.ycombinator.com/submitlink?u=http%3A%2F%2Fwww.xcombinator.com%2F2009%2F02%2F03%2Fgetting-started-with-poolparty-and-ec2%2F&amp;t=Getting%20Started%20with%20PoolParty%20and%20EC2" title="HackerNews"><img src="http://www.xcombinator.com/wp-content/plugins/sociable/images/hackernews.png" title="HackerNews" alt="HackerNews" class="sociable-hovers" /></a><br />
	<a rel="nofollow"  href="http://www.printfriendly.com/print?url=http%3A%2F%2Fwww.xcombinator.com%2F2009%2F02%2F03%2Fgetting-started-with-poolparty-and-ec2%2F&amp;partner=sociable" title="PDF"><img src="http://www.xcombinator.com/wp-content/plugins/sociable/images/pdf.png" title="PDF" alt="PDF" class="sociable-hovers" /></a><br />
	<a rel="nofollow"  href="http://www.xcombinator.com/feed/" title="RSS"><img src="http://www.xcombinator.com/wp-content/plugins/sociable/images/rss.png" title="RSS" alt="RSS" class="sociable-hovers" /></a></p>
<p><br/><br/></p>
]]></content:encoded>
			<wfw:commentRss>http://www.xcombinator.com/2009/02/03/getting-started-with-poolparty-and-ec2/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
	</channel>
</rss>

<!-- Dynamic Page Served (once) in 0.644 seconds -->
