<?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>Jesse Peterson &#187; paxos</title>
	<atom:link href="http://www.jpeterson.com/tag/paxos/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.jpeterson.com</link>
	<description>Personal ramblings of a computer geek in Iowa</description>
	<lastBuildDate>Thu, 26 Jan 2012 04:16:38 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>What I&#8217;m reading: locks!</title>
		<link>http://www.jpeterson.com/2008/10/10/what-im-reading-locks/</link>
		<comments>http://www.jpeterson.com/2008/10/10/what-im-reading-locks/#comments</comments>
		<pubDate>Fri, 10 Oct 2008 12:18:43 +0000</pubDate>
		<dc:creator>cubeinhabitant</dc:creator>
				<category><![CDATA[Technology]]></category>
		<category><![CDATA[bigtable]]></category>
		<category><![CDATA[chubby]]></category>
		<category><![CDATA[Google]]></category>
		<category><![CDATA[littles3]]></category>
		<category><![CDATA[mapreduce]]></category>
		<category><![CDATA[paxos]]></category>
		<category><![CDATA[research]]></category>

		<guid isPermaLink="false">http://www.jpeterson.com/2008/10/10/what-im-reading-locks/</guid>
		<description><![CDATA[I have been reading some of the papers published by the Google engineers. It started with Bigtable: A Distributed Storage System for Structured Data. I am not sure how I started. The Official Google Blog posted a link announcing their new technology round series. I watched the &#8220;MapReduce&#8221; discussion, where the engineers talked about Bigtable [...]]]></description>
			<content:encoded><![CDATA[<p>I have been reading some of the <a href="http://research.google.com/pubs/papers.html">papers published by the Google engineers</a>. It started with <a href="http://labs.google.com/papers/bigtable.html"><em>Bigtable: A Distributed Storage System for Structured Data</em></a>. I am not sure how I started. The <a href="http://googleblog.blogspot.com/">Official Google Blog</a> posted a link announcing their <a href="http://googleblog.blogspot.com/2008/10/new-technology-roundtable-series.html">new technology round series</a>. I watched the &#8220;<a href="http://research.google.com/roundtable/MR.html">MapReduce</a>&#8221; discussion, where the engineers talked about Bigtable and how it is used in MapReduce. This lead me to look for more information about Bigtable as I was looking for information on distributed &#8220;communication&#8221; techniques to enhance the <a href="http://code.google.com/p/littles3/">littles3</a> implementation. (The current littles3 architecture is very simple and only supports one node. It works, but doesn&#8217;t do any cool things like scale storage or be fault tolerant.) I had heard Bigtable discussed in different technical blog settings, but I had no idea that there was a paper from 2 years ago that described the Bigtable system. (I guess I don&#8217;t read the technical CS journals like I should. I may have to become more active in <a href="http://www.ieee.org/portal/site">IEEE</a>.)</p>
<p>While reading the paper (I did find it very readable. Okay, I am a computer geek. Fair warning.) I noticed that Bigtable, which is a highly scallable distributed database (not relational), used a &#8220;lock service&#8221; called <a href="http://labs.google.com/papers/chubby.html">Chubby</a>. What is a &#8220;lock service&#8221;? Well, the <a href="http://labs.google.com/papers/chubby.html"><em>The Chubby Lock Service for Loosely-Coupled Distributed Systems</em></a> paper will tell you. I am currently reading this paper. (Again, this is from 2006! Where have I been?) Mike Burrows, the author of <em>The Chubby Lock Service for Loosely-Coupled Distributed Systems</em>, sprinkles humor into a computer science paper discussing <a href="http://">Paxos, &#8220;a family of protocols for solving consensus in a network of unreliable processors&#8221;</a>. What I found interesting is how the &#8220;lock service&#8221; is used to share information in a highly distributed system. The Bigtable implementation is a client of the &#8220;lock service&#8221; and uses it to elect a leader; the leader is the node that aquires the lock&#8211;only one node will get the lock. The &#8220;lock service&#8221; can also store small amounts of information, like metadata or configuration information, that a client application can read from the &#8220;lock service&#8221;.</p>
<p>Next up is the paper <a href="http://labs.google.com/papers/paxos_made_live.html"><em>Paxos Made Live – An Engineering Perspective</em></a>. This paper provides some details on how the Google team implemented Chubby, some of the history of the previous implementation, and some of the issues that they discovered implementation the Paxos algorithm.</p>
<p>Together, these papers provide some details of how Google has implemented highly distributed systems. So far, the information about Paxos has been very enlightening. And I am impressed with the way in which a &#8220;lock service&#8221; is used to coordinate communication and direct cooperation in a automated distributed network. It seems that they have created simple building blocks that together work in sometimes unique ways to make a complex system.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.jpeterson.com/2008/10/10/what-im-reading-locks/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
	</channel>
</rss>

