<?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/"
	xmlns:georss="http://www.georss.org/georss" xmlns:geo="http://www.w3.org/2003/01/geo/wgs84_pos#" xmlns:media="http://search.yahoo.com/mrss/"
	>

<channel>
	<title>Dive Into A Data Deluge &#187; graph</title>
	<atom:link href="http://diveintodata.org/tag/graph/feed/" rel="self" type="application/rss+xml" />
	<link>http://diveintodata.org</link>
	<description>Discussion about Newly Emerging Issues on Database</description>
	<lastBuildDate>Wed, 28 Dec 2011 14:16:35 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.com/</generator>
<cloud domain='diveintodata.org' port='80' path='/?rsscloud=notify' registerProcedure='' protocol='http-post' />
<image>
		<url>http://s2.wp.com/i/buttonw-com.png</url>
		<title>Dive Into A Data Deluge &#187; graph</title>
		<link>http://diveintodata.org</link>
	</image>
	<atom:link rel="search" type="application/opensearchdescription+xml" href="http://diveintodata.org/osd.xml" title="Dive Into A Data Deluge" />
	<atom:link rel='hub' href='http://diveintodata.org/?pushpress=hub'/>
		<item>
		<title>A Brief Summary of Independent Set in Graph Theory</title>
		<link>http://diveintodata.org/2010/04/24/a-brief-summary-of-independent-set-in-graph-theory/</link>
		<comments>http://diveintodata.org/2010/04/24/a-brief-summary-of-independent-set-in-graph-theory/#comments</comments>
		<pubDate>Sat, 24 Apr 2010 02:27:34 +0000</pubDate>
		<dc:creator>Hyunsik Choi</dc:creator>
				<category><![CDATA[Research]]></category>
		<category><![CDATA[coloring problem]]></category>
		<category><![CDATA[dominating set]]></category>
		<category><![CDATA[graph]]></category>
		<category><![CDATA[graph coloring]]></category>
		<category><![CDATA[independent set]]></category>
		<category><![CDATA[maximal independent set]]></category>
		<category><![CDATA[maximum independent set]]></category>
		<category><![CDATA[mis]]></category>

		<guid isPermaLink="false">http://diveintodata.org/?p=707</guid>
		<description><![CDATA[Graph Basics Let G be a undirected graph. G=(V,E), where V is a set of vertices and E is a set of edges.  Every edge e in E consists of two vertices in V of G. It is said to connect, join, or link the two vertices (or end points). Independent Set ﻿﻿﻿An independent set S [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=diveintodata.org&amp;blog=12237478&amp;post=707&amp;subd=diveintodata&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<h3>Graph Basics</h3>
<p>Let <em>G</em> be a undirected graph. <em>G=(V,E)</em>, where <em>V</em> is a set of vertices and <em>E</em> is a set of edges.  Every edge <em>e </em>in<em> E </em>consists of two vertices in <em>V </em>of<em> G. </em>It is said to connect, join, or link the two vertices (or end points).</p>
<h3>Independent Set</h3>
<p>﻿﻿﻿An independent set <em>S</em> is a subset of <em>V</em> in <em>G</em> such that no two vertices in <em>S</em> are adjacent. I suppose that its name is meaning that vertices in an independent set <em>S</em> is independent on a set of edges in a graph <em>G</em>. Like other vertex sets in graph theory, independent set has maximal and maximum sets as follows:</p>
<blockquote><p>The independent set <em>S</em> is <em><strong>maximal</strong><span style="font-style:normal;"> if </span>S</em> is not a proper subset of any independent set of <em>G.</em></p></blockquote>
<blockquote><p>The independent set <em>S</em> is <strong><em>maximum</em></strong> if there is no other independent set has more vertices than <em>S</em>.</p></blockquote>
<p>That is, a largest maximal independent set is called a maximum independent set. The maximum independent set problem is an NP-hard optimization problem.</p>
<p>All graphs has independent sets. For a graph <em>G</em> having a maximum independent set, the independence number <em>α</em>(<em>G</em>) is determined by the cardinality of a maximum independent set.</p>
<h3><strong>Relations to Dominating Sets</strong></h3>
<ul>
<li>A dominating set in a graph <em>G</em> is a subset <em>D</em> of <em>V</em> such that every vertex not in <em>D</em> is joined to at least one member of <em>D</em> by some edge.</li>
<li>In other words, a vertex set <em>D</em> is a dominating set in <em>G</em> if and if only every vertex in a graph <em>G</em> is contained in (or is adjacent to) a vertex in <em>D.</em></li>
<li>Every maximal independent set <em>S</em> of vertices in a simple graph <em>G</em> has the property that every vertex of the graph either is contained in <em>S</em> or is adjacent to a vertex in <em>S</em>.
<ul>
<li>That is, an independent set is a dominating set if and if only it is a maximal independent set.</li>
</ul>
</li>
</ul>
<h3>Relations to Graph Coloring</h3>
<ul>
<li>Independent set problem is related to coloring problem since vertices in an independent set can have the same color.</li>
</ul>
<h3>References</h3>
<ul>
<li>Chapter 10, <a href="http://www.amazon.com/Graph-Theory-Modeling-Applications-Algorithms/dp/0131423843" target="_blank">Graph Theory: Modeling, Applications, and Algorithms</a></li>
<li><a href="http://en.wikipedia.org/wiki/Independent_set_(graph_theory)">http://en.wikipedia.org/wiki/Independent_set_(graph_theory)</a></li>
<li><a href="http://en.wikipedia.org/wiki/Dominating_set">http://en.wikipedia.org/wiki/Dominating_set</a></li>
</ul>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/diveintodata.wordpress.com/707/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/diveintodata.wordpress.com/707/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/diveintodata.wordpress.com/707/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/diveintodata.wordpress.com/707/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/diveintodata.wordpress.com/707/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/diveintodata.wordpress.com/707/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/diveintodata.wordpress.com/707/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/diveintodata.wordpress.com/707/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/diveintodata.wordpress.com/707/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/diveintodata.wordpress.com/707/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/diveintodata.wordpress.com/707/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/diveintodata.wordpress.com/707/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/diveintodata.wordpress.com/707/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/diveintodata.wordpress.com/707/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=diveintodata.org&amp;blog=12237478&amp;post=707&amp;subd=diveintodata&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://diveintodata.org/2010/04/24/a-brief-summary-of-independent-set-in-graph-theory/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/4213567e11cad51fc02bc2038e9ace27?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">Hyunsik Choi</media:title>
		</media:content>
	</item>
		<item>
		<title>Data-Intensive Text Processing with MapReduce Draft Available in Online</title>
		<link>http://diveintodata.org/2010/03/11/data-intensive-text-processing-with-mapreduce-draft-available-in-online/</link>
		<comments>http://diveintodata.org/2010/03/11/data-intensive-text-processing-with-mapreduce-draft-available-in-online/#comments</comments>
		<pubDate>Thu, 11 Mar 2010 01:46:24 +0000</pubDate>
		<dc:creator>Hyunsik Choi</dc:creator>
				<category><![CDATA[News]]></category>
		<category><![CDATA[Research]]></category>
		<category><![CDATA[data intensive]]></category>
		<category><![CDATA[graph]]></category>
		<category><![CDATA[hadoop]]></category>
		<category><![CDATA[mapreduce]]></category>
		<category><![CDATA[text processing]]></category>

		<guid isPermaLink="false">http://diveintodata.org/?p=605</guid>
		<description><![CDATA[Data-Intensive Text Processing with MapReduce, Jimmy Lin and Chris Dyer Actually, there have never been books that directly deal with MapReduce programming and algorithms. This book addresses from MapReduce algorithm design to EM Algorithms for Text Processing. Although this book is still draft, it seems well-organized and very interesting. In addition, the book contains some basic graph algorithms [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=diveintodata.org&amp;blog=12237478&amp;post=605&amp;subd=diveintodata&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.umiacs.umd.edu/~jimmylin/book.html" target="_blank">Data-Intensive Text Processing with MapReduce, Jimmy Lin and Chris Dyer</a></p>
<p>Actually, there have never been books that directly deal with MapReduce programming and algorithms. This book addresses from MapReduce algorithm design to EM Algorithms for Text Processing. Although this book is still draft, it seems well-organized and very interesting. In addition, the book contains some basic graph algorithms using MapReduce.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/diveintodata.wordpress.com/605/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/diveintodata.wordpress.com/605/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/diveintodata.wordpress.com/605/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/diveintodata.wordpress.com/605/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/diveintodata.wordpress.com/605/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/diveintodata.wordpress.com/605/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/diveintodata.wordpress.com/605/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/diveintodata.wordpress.com/605/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/diveintodata.wordpress.com/605/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/diveintodata.wordpress.com/605/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/diveintodata.wordpress.com/605/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/diveintodata.wordpress.com/605/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/diveintodata.wordpress.com/605/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/diveintodata.wordpress.com/605/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=diveintodata.org&amp;blog=12237478&amp;post=605&amp;subd=diveintodata&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://diveintodata.org/2010/03/11/data-intensive-text-processing-with-mapreduce-draft-available-in-online/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/4213567e11cad51fc02bc2038e9ace27?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">Hyunsik Choi</media:title>
		</media:content>
	</item>
		<item>
		<title>Java Universal Network/Graph Framework</title>
		<link>http://diveintodata.org/2009/09/15/java-universal-networkgraph-framework/</link>
		<comments>http://diveintodata.org/2009/09/15/java-universal-networkgraph-framework/#comments</comments>
		<pubDate>Mon, 14 Sep 2009 23:30:45 +0000</pubDate>
		<dc:creator>Hyunsik Choi</dc:creator>
				<category><![CDATA[Research]]></category>
		<category><![CDATA[graph]]></category>
		<category><![CDATA[java]]></category>
		<category><![CDATA[jung]]></category>
		<category><![CDATA[visualization tools]]></category>

		<guid isPermaLink="false">http://diveintodata.org/?p=349</guid>
		<description><![CDATA[Recently, I&#8217;m primarily concerned with large-scale graph data processing. Occasionally, the visualization of graph can be a good way for us to observe some properties from graph data sets. Today, I&#8217;m going to introduce a graph framework, called Java Universal Network/Graph Framework (Jung). Jung provides data structures for graph, a programming interface familiar with graph [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=diveintodata.org&amp;blog=12237478&amp;post=349&amp;subd=diveintodata&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Recently, I&#8217;m primarily concerned with large-scale graph data processing. Occasionally, the visualization of graph can be a good way for us to observe some properties from graph data sets. Today, I&#8217;m going to introduce a graph framework, called <em><a href="http://jung.sourceforge.net/" target="_blank">Java Universal Network/Graph Framework (Jung)</a>. </em>Jung provides data structures for graph, a programming interface familiar with graph features, some fundamental graph algorithms (e.g., minimum spanning tree, depth-first search, breath-first search, and dijkstra algorithm), and even visualization methods. Especially, I&#8217;m interested in its visualization methods.</p>
<p>The following java source shows the programming interface of Jung. In more detail, this program make a graph, add three vertices to the graph, and connect vertices. This source code is brought from <a href="http://jung.sourceforge.net/doc/index.html" target="_blank">Jung tutorial</a>. As you can see, Jung&#8217;s APIs are very easy.</p>
<p><pre class="brush: java;">
  // Make a graph by a SparseMultigraph instance.
  Graph&amp;lt;Integer, String&amp;gt; g = new SparseMultigraph&amp;lt;Integer, String&amp;gt;();
  g.addVertex((Integer)1); // Add a vertex with an integer 1
  g.addVertex((Integer)2);
  g.addVertex((Integer)3);
  g.addEdge(&amp;quot;Edge-A&amp;quot;, 1,3); // Added an edge to connect between 1 and 3 vertices.
  g.addEdge(&amp;quot;Edge-B&amp;quot;, 2,3, EdgeType.DIRECTED);
  g.addEdge(&amp;quot;Edge-C&amp;quot;, 3, 2, EdgeType.DIRECTED);
  g.addEdge(&amp;quot;Edge-P&amp;quot;, 2,3); // A parallel edge

  // Make some objects for graph layout and visualization.
  Layout&amp;lt;Integer, String&amp;gt; layout = new KKLayout&amp;lt;Integer, String&amp;gt;(g);
  BasicVisualizationServer&amp;lt;Integer, String&amp;gt; vv =
  new BasicVisualizationServer&amp;lt;Integer, String&amp;gt;(layout);
  vv.setPreferredSize(new Dimension(800,800));

  // It determine how each vertex with its value is represented in a diagram.
  ToStringLabeller&amp;lt;Integer&amp;gt; vertexPaint = new ToStringLabeller&amp;lt;Integer&amp;gt;() {
    public String transform(Integer i) {
    return &amp;quot;&amp;quot;+i;
   }
  };

  vv.getRenderContext().setVertexLabelTransformer(vertexPaint);

  JFrame frame = new JFrame(&amp;quot;Simple Graph View&amp;quot;);
  frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
  frame.getContentPane().add(vv);
  frame.pack();
  frame.setVisible(true);
</pre></p>
<p>Some APIs of the Jung are based on generic programming, so you can use easily vertices or edges to contains user-defined data. If you want more detail information, visit <a href="http://jung.sourceforge.net/">http://jung.sourceforge.net</a>.</p>
<p>The above source code shows the following diagram.<br />
<a class="flickr-image aligncenter" title="Jung example" rel="flickr-mgr" href="http://www.flickr.com/photos/hyunsik/3919489249/"><img class="flickr-medium aligncenter" src="http://farm3.static.flickr.com/2646/3919489249_3377cc8c63.jpg" alt="Jung example" width="347" height="346" /></a></p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/diveintodata.wordpress.com/349/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/diveintodata.wordpress.com/349/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/diveintodata.wordpress.com/349/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/diveintodata.wordpress.com/349/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/diveintodata.wordpress.com/349/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/diveintodata.wordpress.com/349/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/diveintodata.wordpress.com/349/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/diveintodata.wordpress.com/349/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/diveintodata.wordpress.com/349/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/diveintodata.wordpress.com/349/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/diveintodata.wordpress.com/349/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/diveintodata.wordpress.com/349/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/diveintodata.wordpress.com/349/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/diveintodata.wordpress.com/349/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=diveintodata.org&amp;blog=12237478&amp;post=349&amp;subd=diveintodata&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://diveintodata.org/2009/09/15/java-universal-networkgraph-framework/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/4213567e11cad51fc02bc2038e9ace27?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">Hyunsik Choi</media:title>
		</media:content>

		<media:content url="http://farm3.static.flickr.com/2646/3919489249_3377cc8c63.jpg" medium="image">
			<media:title type="html">Jung example</media:title>
		</media:content>
	</item>
		<item>
		<title>Paper: Graph Twiddling in a MapReduce World</title>
		<link>http://diveintodata.org/2009/07/17/paper-graph-twiddling-in-a-mapreduce-world/</link>
		<comments>http://diveintodata.org/2009/07/17/paper-graph-twiddling-in-a-mapreduce-world/#comments</comments>
		<pubDate>Fri, 17 Jul 2009 09:32:03 +0000</pubDate>
		<dc:creator>Hyunsik Choi</dc:creator>
				<category><![CDATA[Research]]></category>
		<category><![CDATA[graph]]></category>
		<category><![CDATA[graph cluster]]></category>
		<category><![CDATA[map-reduce]]></category>
		<category><![CDATA[scalable computing]]></category>

		<guid isPermaLink="false">http://diveintodata.org/?p=89</guid>
		<description><![CDATA[Today, at the lab seminar I presented the paper “Graph Twiddling in a MapReduce World” published in IEEE Computing in Science &#38; Engineering. This paper addresses an investigation into the feasibility of decomposion graph operations into a series of MapReduce processes. In this post, I’m going to discuss this paper briefly. As I mentioned above, [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=diveintodata.org&amp;blog=12237478&amp;post=89&amp;subd=diveintodata&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p><span class="dropcaps">T</span>oday, at the lab seminar I presented the paper “<a href="http://ieeexplore.ieee.org/xpls/abs_all.jsp?arnumber=5076317&amp;tag=1" target="_blank">Graph Twiddling in a MapReduce World</a>” published in <a href="http://ieeexplore.ieee.org/xpl/RecentIssue.jsp?punumber=5992" target="_blank">IEEE Computing in Science &amp; Engineering</a>. This paper addresses an investigation into the feasibility of decomposion graph operations into a series of MapReduce processes. In this post, I’m going to discuss this paper briefly.</p>
<p>As I mentioned above, this paper discusses the feasibility of decompositing graph operations into a series of MapReduce processes. As you know, the <a href="http://labs.google.com/papers/mapreduce.html" target="_blank">MapReduce</a> has been gaining attentions in various applications that cope with large-scale datasets. However, to the best of my knowledge there have been no studies for dealing with graphs on MapReduce. This paper proposes several operations as follows:</p>
<ul>
<li>Augmenting Edges with Degrees</li>
<li>Simplifying the Graph</li>
<li>Enumerating Triangles</li>
<li>Enumerating Rectangles</li>
<li>Finding Trusses</li>
<li>Barycentric Clustering</li>
<li>Finding Components</li>
</ul>
<p>Some operations are performed in combination with other operations. Actually, some of them are very easy problems if they can traverse graphs. However, as the author said, traversing graphs with MapReduce is very inefficient (i.e., causing many MapReduce iterations) because a mapper reads only a record randomly for each map operation. Anyway, all the operations that the paper proposed avoid traversing graphs. Instead, their common pattern in graph algorithms proposed is as follows:</p>
<ol>
<li>A map operation: Read and process all the edges (or vertex) or changing some piece of edge (or vertex) information. Then, result in records by vertex as key.</li>
<li>A reduce oprtation: For each record obtained from the previous map operation, read and determine the updated state of vertex or edge; emit this information in partially (or locally) updated records. Then, results in them.</li>
<li>A reduce opration: For each record from the previous reduce operation, combine the updates globally and complete updated information.</li>
</ol>
<h3>Discussion</h3>
<p>Even though this paper proposes several graph operations, they are still unnatural owing to too many MapReduce iterations; to the best of my knowledge, each MapReduce job&#8217;s initializing cost is very expensive. It is because mapper only can read record sequentially. The proposed graph operations based on MapReduce will cause the overhead of both MR iteration and communication. As a result, the feasible primitive graph operations with MapReduce are very limited. In addition, there are evidences to show the MapReduce is not suited to graph operations, but I will state them later.</p>
<p>Therefore, I think that a new programming model for graph (or complexity data) are needed. Ideally, the new programming model for graph must support graph traversing. In addition, data are needed to be preserved in locality in regards with their connectivity although data are distributed across a number of data nodes. Actually, basing these ideas I’m concreting “<a href="http://wiki.apache.org/hadoop/Hamburg" target="_blank">Hamburg: A New Programming Model for Graph Data</a>” inspired by a blog post “<a href="http://googleresearch.blogspot.com/2009/06/large-scale-graph-computing-at-google.html" target="_blank">Large-scale Graph Computing at Google</a>”</p>
<h3>References</h3>
<ul>
<li>Jonathan Conhen, “<a href="http://ieeexplore.ieee.org/search/wrapper.jsp?arnumber=5076317" target="_blank">Graph Twiddling in a MapReduce World</a>”, Volume 11,  Issue 4, pp 29–41, <a href="http://ieeexplore.ieee.org/xpl/RecentIssue.jsp?punumber=5992" target="_blank">IEEE Computing in Science &amp; Engineering</a>, July-Aug, 2009.</li>
<li>Jeffrey Dean and Sanjay Ghemawat, “<a href="http://labs.google.com/papers/mapreduce.html" target="_blank">MapReduce: Simplified Data Processing on Large Clusters</a>”, OSDI&#8217;04: Sixth Symposium on Operating System Design and Implementation, San Francisco, CA, December, 2004.</li>
<li><a href="http://www.youtube.com/watch?v=BT-piFBP4fE" target="_self">Google Cluster Computing and MapReduce Lecture 5</a></li>
<li><a href="http://www.johnandcailin.com/blog/cailin/breadth-first-graph-search-using-iterative-map-reduce-algorithm" target="_self">Breath-first graph search using an iterative map-reduce algorithm</a></li>
<li><a href="http://wiki.apache.org/hadoop/Hamburg" target="_blank">Hamburg</a>, Hadoop Wiki</li>
</ul>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/diveintodata.wordpress.com/89/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/diveintodata.wordpress.com/89/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/diveintodata.wordpress.com/89/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/diveintodata.wordpress.com/89/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/diveintodata.wordpress.com/89/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/diveintodata.wordpress.com/89/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/diveintodata.wordpress.com/89/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/diveintodata.wordpress.com/89/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/diveintodata.wordpress.com/89/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/diveintodata.wordpress.com/89/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/diveintodata.wordpress.com/89/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/diveintodata.wordpress.com/89/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/diveintodata.wordpress.com/89/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/diveintodata.wordpress.com/89/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=diveintodata.org&amp;blog=12237478&amp;post=89&amp;subd=diveintodata&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://diveintodata.org/2009/07/17/paper-graph-twiddling-in-a-mapreduce-world/feed/</wfw:commentRss>
		<slash:comments>5</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/4213567e11cad51fc02bc2038e9ace27?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">Hyunsik Choi</media:title>
		</media:content>
	</item>
		<item>
		<title>RDF, SPARQL, and TURTLE</title>
		<link>http://diveintodata.org/2008/10/02/rdf-sparql-and-turtle/</link>
		<comments>http://diveintodata.org/2008/10/02/rdf-sparql-and-turtle/#comments</comments>
		<pubDate>Thu, 02 Oct 2008 13:52:58 +0000</pubDate>
		<dc:creator>Hyunsik Choi</dc:creator>
				<category><![CDATA[Research]]></category>
		<category><![CDATA[graph]]></category>
		<category><![CDATA[graph database]]></category>
		<category><![CDATA[rdf]]></category>
		<category><![CDATA[sparql]]></category>
		<category><![CDATA[triple]]></category>
		<category><![CDATA[turtle]]></category>
		<category><![CDATA[xml]]></category>

		<guid isPermaLink="false">http://diveintodata.org/2008/10/rdf-sparql-and-turtle/</guid>
		<description><![CDATA[이번주 결혼식 끝나고 급히 정리 요약 해야 할 것들.. Resource Description Framework (RDF) SPARQL Query Language for RDF Turtle &#8211; Terse RDF Triple Language<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=diveintodata.org&amp;blog=12237478&amp;post=49&amp;subd=diveintodata&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>이번주 결혼식 끝나고 급히 정리 요약 해야 할 것들..</p>
<ul style="list-style-type:disc;">
<li><a title="[http://www.w3.org/RDF/]로 이동합니다." target="_blank" href="http://www.w3.org/RDF/">Resource Description Framework (RDF)</a>
</li>
<li><a title="[http://www.w3.org/TR/rdf-sparql-query/]로 이동합니다." target="_blank" href="http://www.w3.org/TR/rdf-sparql-query/">SPARQL Query Language for RDF</a>
</li>
<li><a title="[http://www.w3.org/TeamSubmission/turtle/]로 이동합니다." target="_blank" href="http://www.w3.org/TeamSubmission/turtle/">Turtle &#8211; Terse RDF</a><a title="[http://www.w3.org/TeamSubmission/turtle/]로 이동합니다." target="_blank" href="http://www.w3.org/TeamSubmission/turtle/"> Triple Language</a></li>
</ul>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/diveintodata.wordpress.com/49/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/diveintodata.wordpress.com/49/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/diveintodata.wordpress.com/49/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/diveintodata.wordpress.com/49/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/diveintodata.wordpress.com/49/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/diveintodata.wordpress.com/49/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/diveintodata.wordpress.com/49/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/diveintodata.wordpress.com/49/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/diveintodata.wordpress.com/49/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/diveintodata.wordpress.com/49/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/diveintodata.wordpress.com/49/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/diveintodata.wordpress.com/49/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/diveintodata.wordpress.com/49/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/diveintodata.wordpress.com/49/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=diveintodata.org&amp;blog=12237478&amp;post=49&amp;subd=diveintodata&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://diveintodata.org/2008/10/02/rdf-sparql-and-turtle/feed/</wfw:commentRss>
		<slash:comments>15</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/4213567e11cad51fc02bc2038e9ace27?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">Hyunsik Choi</media:title>
		</media:content>
	</item>
	</channel>
</rss>
