<?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>IT Knowledge Hub &#187; Data Warehouse</title>
	<atom:link href="http://itknowledgehub.com/category/data-management/data-warehouse/feed/" rel="self" type="application/rss+xml" />
	<link>http://itknowledgehub.com</link>
	<description>...a place for IT Professionals</description>
	<lastBuildDate>Fri, 30 Jul 2010 14:56:52 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.8.2</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Google’s Dremel – Or, Can MapReduce Itself Handle Fast, Interactive Querying?</title>
		<link>http://itknowledgehub.com/data-management/google%e2%80%99s-dremel-%e2%80%93-or-can-mapreduce-itself-handle-fast-interactive-querying/</link>
		<comments>http://itknowledgehub.com/data-management/google%e2%80%99s-dremel-%e2%80%93-or-can-mapreduce-itself-handle-fast-interactive-querying/#comments</comments>
		<pubDate>Mon, 19 Jul 2010 21:52:18 +0000</pubDate>
		<dc:creator>Tasso Argyros</dc:creator>
				<category><![CDATA[Business Intelligence]]></category>
		<category><![CDATA[Data Management]]></category>
		<category><![CDATA[Data Warehouse]]></category>
		<category><![CDATA[MapReduce]]></category>
		<category><![CDATA[statements]]></category>

		<guid isPermaLink="false">http://www.asterdata.com/blog/index.php/2010/07/19/google%e2%80%99s-dremel-%e2%80%93-or-can-mapreduce-itself-handle-fast-interactive-querying/</guid>
		<description><![CDATA[Every year or so Google comes out with an interesting piece of infrastructure, always backed by claims that it’s being used by thousands of people on thousands of servers and processes petabytes or exabytes of web data. That alone makes Google papers interesting reading.  
This latest piece of research just came out on Google’s [...]<p><a href="http://sharethis.com/item?&#38;wp=2.2.3&#38;publisher=cf684f86-aafe-420a-8a13-0d8ab76b31c0&#38;title=Google%E2%80%99s+Dremel+%E2%80%93+Or%2C+Can+MapReduce+Itself+Handle+Fast%2C+Interactive+Querying%3F&#38;url=http%3A%2F%2Fwww.asterdata.com%2Fblog%2Findex.php%2F2010%2F07%2F19%2Fgoogle%25e2%2580%2599s-dremel-%25e2%2580%2593-or-can-mapreduce-itself-handle-fast-interactive-querying%2F">ShareThis</a></p>]]></description>
			<content:encoded><![CDATA[<p>Every year or so Google comes out with an interesting piece of infrastructure, always backed by claims that it’s being used by thousands of people on thousands of servers and processes petabytes or exabytes of web data. That alone makes Google papers interesting reading. <img src='http://www.asterdata.com/blog/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p>This latest piece of research just came out on <a target="_blank" href="http://www.google.com/buzz/goog.research.buzz/WsARqxc7d7R/Dremel-Interactive-Analysis-of-Web-Scale-Datasets" >Google’s Research Buzz page</a>. It’s about a system called Dremel (note: <a target="_blank" href="http://www.dremel.com/en-us/Pages/default.aspx" >Dremel</a> is a company building hardware tools which I happened to use a lot when I was building model R/C airplanes as a kid). Dremel is an interesting move by Google which provides a system for interactive analysis of data. It was created because it was thought that native MapReduce  has too much latency for  for  fast interactive querying/analysis. It uses data that sits on different storage systems like GFS or BigTable. Data is modeled in a columnar, semi-structured format and the query language is SQL-like with extensions to handle the non-relational data model.  I find this interesting  &#8211; below is my analysis of what Dremel is and the big conclusion.</p>
<p>Main characteristics of the system:</p>
<p><strong>Data &amp; Storage Model</strong><br />
•	Data is stored in a semi-structured format. This is not XML, rather it uses <a target="_blank" href="http://code.google.com/apis/protocolbuffers/" >Google’s Protocol Buffers</a>. Protocol Buffers (PB) allow developers to define schemas that are nested.<br />
•	Every field is stored in its own file, i.e. every element of the Protocol Buffers schema is columnar-ized. <strong>Columnar modeling is especially important for Dremel</strong> for two specific reasons:<br />
-	Protocol Buffer data structures can be huge (&gt; 1000 fields).<br />
- Dremel does not offer any data modeling tools to help break these data structures down. E.g. there’s nothing in the paper that explains how you can take a Protocol Buffers data structure and break it down to 5 different tables.<br />
•	Data is stored in a way that makes it possible to recreate the orignial “flat” schema from the columnar representation. This however requires a full pass over the data &#8211; the paper doesn’t explain how point or indexed queries would be executed.<br />
•	There’s almost no information about how data gets in the right format, how is it stored, deleted, replicated, etc. My best guess is that when someone defines a Dremel table, data is copied from the underlying storage to the local storage of Dremel nodes (“leaf nodes”) and at the same time is replicated across the leaf nodes. Since data in Dremel cannot be updated, once a table is replicated it doesn’t need to be deleted, which probably simplifies the design &amp; implementation.</p>
<p><strong>Interface</strong><br />
•	<strong>Query interface is <em>SQL-like</em></strong> but with extensions to handle the semi-structured, nested nature of data. Input of queries is semi-structured, and output is semi-structured as well. One needs to get used to this since it’s significantly different from the relational model.<br />
•	Tables can be defined from files, e.g. stored in GFS by means of a “DEFINE TABLE” command.<br />
•	<strong>The data model and query language makes Dremel appropriate for developers</strong>; for Dremel to be used by analysts or database folks, a different/simpler data model and a good number of tools (for loading, changing the data model etc) would be needed.</p>
<p><strong>Query Execution</strong><br />
•	<strong>Queries do NOT use MapReduce</strong>, unlike Hadoop query tools like Pig &amp; Hive.<br />
•	Dremel provides optimizations for sequential data access, such as async I/O &amp; prefetching.<br />
•	Dremel supports approximate results (e.g. return partial results after reading X% of data &#8211; this speeds up processing in systems with 100s of servers or more since you don’t have to wait for laggards).<br />
•	Dremel can use replicas to speed up execution if a server becomes too slow. This is similar to the “backup copies” idea from the <a target="_blank" href="http://labs.google.com/papers/mapreduce.html" >original Google MapReduce paper</a>.<br />
•	<strong>There seems to be a tree-like model of executing queries</strong>, meaning that there are intermediate layers of servers between the leaf nodes and the top node (which receives the user query). This is useful for very large deployments (e.g. thousands of servers) since it provides some intermediate aggregation points that reduce the amount of data that needs to flow to any single node.</p>
<p><strong>Performance &amp; Scale</strong><br />
• <strong>Compared to Google’s native MapReduce implementation</strong><strong>, Dremel  is two orders of magnitude faster</strong> in terms of query latency. As mentioned above, part of the reason is that the Protocol Buffers are usually very large and Dremel doesn’t have a way to break those down except for its columnar modeling. Another reason is the low latency of Google’s MapReduce implementation.<br />
•	Following Google’s tradition, <strong>Dremel was shown to scale reasonably well to thousands of servers</strong> although this was demonstrated only over a single query that parallelizes nicely and from what I understand doesn’t reshuffle much data. To really understand scalability, it’d be interesting to see benchmarks with a more complex workload collection.<br />
•	The paper mentions little to nothing about how data is partitioned across the cluster. Scalability of the system will probably be sensitive to partitioning strategies, so that seems like a significant omission IMO.</p>
<p><strong>So the big question – can MapReduce itself handle fast, interactive querying?</strong><br />
•	There’s a difference between the MapReduce paradigm, as an interface for writing parallel applications, and a MapReduce implementation (two examples are Google’s own MapReduce implementation, which is mentioned in the Dremel paper, and open-source Hadoop). MapReduce implementations have unique performance characteristics.<br />
•	It is well known that Google’s MapReduce implementation &amp; Hadoop’s MapReduce implementation are optimized for batch processing and not fast, interactive analysis. Besides the Dremel paper, look at <a target="_blank" href="http://www.eecs.berkeley.edu/Pubs/TechRpts/2009/EECS-2009-136.html" >this Berkeley paper</a> for some Hadoop numbers and an effort to improve the situation.<br />
•	<strong>Native MapReduce execution is not fundamentally slow; however Google’s MapReduce and Hadoop happen to be oriented more towards batch processing</strong>. Dremel tries to overcome that by building a completely different system that speeds interactive querying. Interestingly, Aster Data’s SQL-MapReduce came about to address this in the first place and offers very fast interactive queries even though it uses MapReduce. So the idea that one needs to get rid of MapReduce to achieve fast interactivity is something I disagree with &#8211; we’ve shown this is not the case with SQL-MapReduce.</p>
<p><img src="http://feeds.feedburner.com/~r/AsterData/~4/SN5sDCaLIJ0" height="1" width="1"/></p>




	<a rel="nofollow"  target="_blank" href="http://digg.com/submit?phase=2&amp;url=http%3A%2F%2Fitknowledgehub.com%2Fdata-management%2Fgoogle%25e2%2580%2599s-dremel-%25e2%2580%2593-or-can-mapreduce-itself-handle-fast-interactive-querying%2F&amp;title=Google%E2%80%99s%20Dremel%20%E2%80%93%20Or%2C%20Can%20MapReduce%20Itself%20Handle%20Fast%2C%20Interactive%20Querying%3F&amp;bodytext=Every%20year%20or%20so%20Google%20comes%20out%20with%20an%20interesting%20piece%20of%20infrastructure%2C%20always%20backed%20by%20claims%20that%20it%E2%80%99s%20being%20used%20by%20thousands%20of%20people%20on%20thousands%20of%20servers%20and%20processes%20petabytes%20or%20exabytes%20of%20web%20data.%20That%20alone%20makes%20Google%20papers%20interesting%20reading.%20%20%0AThis%20latest%20piece%20of%20research%20just%20came%20out%20on%20Google%E2%80%99s%20%5B...%5DShareThis" title="Digg"><img src="http://itknowledgehub.com/wp-content/plugins/sociable/images/digg.png" title="Digg" alt="Digg" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://www.facebook.com/share.php?u=http%3A%2F%2Fitknowledgehub.com%2Fdata-management%2Fgoogle%25e2%2580%2599s-dremel-%25e2%2580%2593-or-can-mapreduce-itself-handle-fast-interactive-querying%2F&amp;t=Google%E2%80%99s%20Dremel%20%E2%80%93%20Or%2C%20Can%20MapReduce%20Itself%20Handle%20Fast%2C%20Interactive%20Querying%3F" title="Facebook"><img src="http://itknowledgehub.com/wp-content/plugins/sociable/images/facebook.png" title="Facebook" alt="Facebook" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://buzz.yahoo.com/submit/?submitUrl=http%3A%2F%2Fitknowledgehub.com%2Fdata-management%2Fgoogle%25e2%2580%2599s-dremel-%25e2%2580%2593-or-can-mapreduce-itself-handle-fast-interactive-querying%2F&amp;submitHeadline=Google%E2%80%99s%20Dremel%20%E2%80%93%20Or%2C%20Can%20MapReduce%20Itself%20Handle%20Fast%2C%20Interactive%20Querying%3F&amp;submitSummary=Every%20year%20or%20so%20Google%20comes%20out%20with%20an%20interesting%20piece%20of%20infrastructure%2C%20always%20backed%20by%20claims%20that%20it%E2%80%99s%20being%20used%20by%20thousands%20of%20people%20on%20thousands%20of%20servers%20and%20processes%20petabytes%20or%20exabytes%20of%20web%20data.%20That%20alone%20makes%20Google%20papers%20interesting%20reading.%20%20%0AThis%20latest%20piece%20of%20research%20just%20came%20out%20on%20Google%E2%80%99s%20%5B...%5DShareThis&amp;submitCategory=science&amp;submitAssetType=text" title="Yahoo! Buzz"><img src="http://itknowledgehub.com/wp-content/plugins/sociable/images/yahoobuzz.png" title="Yahoo! Buzz" alt="Yahoo! Buzz" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://twitter.com/home?status=Google%E2%80%99s%20Dremel%20%E2%80%93%20Or%2C%20Can%20MapReduce%20Itself%20Handle%20Fast%2C%20Interactive%20Querying%3F%20-%20http%3A%2F%2Fitknowledgehub.com%2Fdata-management%2Fgoogle%25e2%2580%2599s-dremel-%25e2%2580%2593-or-can-mapreduce-itself-handle-fast-interactive-querying%2F" title="Twitter"><img src="http://itknowledgehub.com/wp-content/plugins/sociable/images/twitter.png" title="Twitter" alt="Twitter" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://www.diigo.com/post?url=http%3A%2F%2Fitknowledgehub.com%2Fdata-management%2Fgoogle%25e2%2580%2599s-dremel-%25e2%2580%2593-or-can-mapreduce-itself-handle-fast-interactive-querying%2F&amp;title=Google%E2%80%99s%20Dremel%20%E2%80%93%20Or%2C%20Can%20MapReduce%20Itself%20Handle%20Fast%2C%20Interactive%20Querying%3F" title="Diigo"><img src="http://itknowledgehub.com/wp-content/plugins/sociable/images/diigo.png" title="Diigo" alt="Diigo" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://www.propeller.com/submit/?url=http%3A%2F%2Fitknowledgehub.com%2Fdata-management%2Fgoogle%25e2%2580%2599s-dremel-%25e2%2580%2593-or-can-mapreduce-itself-handle-fast-interactive-querying%2F" title="Propeller"><img src="http://itknowledgehub.com/wp-content/plugins/sociable/images/propeller.png" title="Propeller" alt="Propeller" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://www.stumbleupon.com/submit?url=http%3A%2F%2Fitknowledgehub.com%2Fdata-management%2Fgoogle%25e2%2580%2599s-dremel-%25e2%2580%2593-or-can-mapreduce-itself-handle-fast-interactive-querying%2F&amp;title=Google%E2%80%99s%20Dremel%20%E2%80%93%20Or%2C%20Can%20MapReduce%20Itself%20Handle%20Fast%2C%20Interactive%20Querying%3F" title="StumbleUpon"><img src="http://itknowledgehub.com/wp-content/plugins/sociable/images/stumbleupon.png" title="StumbleUpon" alt="StumbleUpon" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://faves.com/Authoring.aspx?u=http%3A%2F%2Fitknowledgehub.com%2Fdata-management%2Fgoogle%25e2%2580%2599s-dremel-%25e2%2580%2593-or-can-mapreduce-itself-handle-fast-interactive-querying%2F&amp;title=Google%E2%80%99s%20Dremel%20%E2%80%93%20Or%2C%20Can%20MapReduce%20Itself%20Handle%20Fast%2C%20Interactive%20Querying%3F" title="Faves"><img src="http://itknowledgehub.com/wp-content/plugins/sociable/images/bluedot.png" title="Faves" alt="Faves" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://www.mixx.com/submit?page_url=http%3A%2F%2Fitknowledgehub.com%2Fdata-management%2Fgoogle%25e2%2580%2599s-dremel-%25e2%2580%2593-or-can-mapreduce-itself-handle-fast-interactive-querying%2F&amp;title=Google%E2%80%99s%20Dremel%20%E2%80%93%20Or%2C%20Can%20MapReduce%20Itself%20Handle%20Fast%2C%20Interactive%20Querying%3F" title="Mixx"><img src="http://itknowledgehub.com/wp-content/plugins/sociable/images/mixx.png" title="Mixx" alt="Mixx" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://www.tumblr.com/share?v=3&amp;u=http%3A%2F%2Fitknowledgehub.com%2Fdata-management%2Fgoogle%25e2%2580%2599s-dremel-%25e2%2580%2593-or-can-mapreduce-itself-handle-fast-interactive-querying%2F&amp;t=Google%E2%80%99s%20Dremel%20%E2%80%93%20Or%2C%20Can%20MapReduce%20Itself%20Handle%20Fast%2C%20Interactive%20Querying%3F&amp;s=Every%20year%20or%20so%20Google%20comes%20out%20with%20an%20interesting%20piece%20of%20infrastructure%2C%20always%20backed%20by%20claims%20that%20it%E2%80%99s%20being%20used%20by%20thousands%20of%20people%20on%20thousands%20of%20servers%20and%20processes%20petabytes%20or%20exabytes%20of%20web%20data.%20That%20alone%20makes%20Google%20papers%20interesting%20reading.%20%20%0AThis%20latest%20piece%20of%20research%20just%20came%20out%20on%20Google%E2%80%99s%20%5B...%5DShareThis" title="Tumblr"><img src="http://itknowledgehub.com/wp-content/plugins/sociable/images/tumblr.png" title="Tumblr" alt="Tumblr" class="sociable-hovers" /></a>


<br/><br/>
<p>Syndicated via RSS From: <a href="http://www.asterdata.com/blog" rel="nofollow">http://www.asterdata.com/blog</a></p>Get free <a href="http://itknowledgehub.com/white-papers/" style="text-decoration: none">
white papers</a> delivered direct to your inbox from IT Knowledge Hub! <a href="http://itknowledgehub.com/register-now/">Register now</a> for cutting edge webcasts, reports, and white papers in your area of expertise.]]></content:encoded>
			<wfw:commentRss>http://itknowledgehub.com/data-management/google%e2%80%99s-dremel-%e2%80%93-or-can-mapreduce-itself-handle-fast-interactive-querying/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Cloud Becomes HPC-friendly</title>
		<link>http://itknowledgehub.com/data-management/cloud-becomes-hpc-friendly/</link>
		<comments>http://itknowledgehub.com/data-management/cloud-becomes-hpc-friendly/#comments</comments>
		<pubDate>Tue, 13 Jul 2010 22:11:16 +0000</pubDate>
		<dc:creator>Tasso Argyros</dc:creator>
				<category><![CDATA[Cloud Computing]]></category>
		<category><![CDATA[Data Management]]></category>
		<category><![CDATA[Data Warehouse]]></category>

		<guid isPermaLink="false">http://www.asterdata.com/blog/index.php/2010/07/13/cloud-becomes-hpc-friendly/</guid>
		<description><![CDATA[Amazon announced today the availability of special EC2 cloud clusters that are optimized for low-latency network operations. This is useful for applications in the so-called High-Performance Computing area, where servers need to request and exchange data very fast. Examples of HPC applications range from nuclear simulations in government labs to playing chess. 
I find this [...]<p><a href="http://sharethis.com/item?&#38;wp=2.2.3&#38;publisher=cf684f86-aafe-420a-8a13-0d8ab76b31c0&#38;title=Cloud+Becomes+HPC-friendly&#38;url=http%3A%2F%2Fwww.asterdata.com%2Fblog%2Findex.php%2F2010%2F07%2F13%2Fcloud-becomes-hpc-friendly%2F">ShareThis</a></p>]]></description>
			<content:encoded><![CDATA[<p>Amazon <a target="_blank" href="http://aws.typepad.com/aws/2010/07/the-new-amazon-ec2-instance-type-the-cluster-compute-instance.html?utm_source=feedburner&#038;utm_medium=feed&#038;utm_campaign=Feed:+AmazonWebServicesBlog+(Amazon+Web+Services+Blog)">announced</a> today the availability of special EC2 cloud clusters that are optimized for low-latency network operations. This is useful for applications in the so-called High-Performance Computing area, where servers need to request and exchange data very fast. Examples of HPC applications range from nuclear simulations in government labs to <a target="_blank" href="http://en.wikipedia.org/wiki/Deep_Blue_(chess_computer)">playing chess</a>. </p>
<p>I find this development interesting, not only because it makes scientific applications in the cloud a possibility, but also because it&#8217;s an indication of where cloud infrastructure is heading. </p>
<p>In the early days, Amazon EC2 was very simple: if you wanted 5 &#8220;instances&#8221; (that is, 5 virtual machines), that&#8217;s what you got. However, memory of the instances was low, as well as disk capacity. Over time, more and more configurations were added and now one can <a target="_blank" href="http://aws.amazon.com/ec2/instance-types/">choose an instance type</a> from a variety of disk &#038; memory characteristics with up to 15GB of memory and 2TBs of disks per instance. However, network was always a problem independently of the size of the instance. (According to rumors, EC2 would make things worse by distributing instances as far away from each other as possible in the datacenter to increase reliability &#8211; as a result, network latency would suffer.) Now, the network problem is being solved by means of these special &#8220;Cluster Compute Instances&#8221; that provide guaranteed, non-blocking access to a 10GbE network infrastructure.</p>
<p>Overall this course represents a departure from the super-simple black-box model that EC2 started from. Amazon &#8211; wisely &#8211; realizes that accommodating more applications requires transparency &#8211; and providing guarantees &#8211; for the underlying infrastructure. Guaranteeing network latency is just the beginning: Amazon has the opportunity add much more options and guarantees around I/O performance, quality of service, SSDs versus hard drives, fail-over behavior etc. The more options &#038; guarantees Amazon offers the closer we&#8217;ll get to the promise of the cloud &#8211; at least for resource-intensive IT applications.</p>
<p><img src="http://feeds.feedburner.com/~r/AsterData/~4/NTbPDEkTI08" height="1" width="1"/></p>




	<a rel="nofollow"  target="_blank" href="http://digg.com/submit?phase=2&amp;url=http%3A%2F%2Fitknowledgehub.com%2Fdata-management%2Fcloud-becomes-hpc-friendly%2F&amp;title=Cloud%20Becomes%20HPC-friendly&amp;bodytext=Amazon%20announced%20today%20the%20availability%20of%20special%20EC2%20cloud%20clusters%20that%20are%20optimized%20for%20low-latency%20network%20operations.%20This%20is%20useful%20for%20applications%20in%20the%20so-called%20High-Performance%20Computing%20area%2C%20where%20servers%20need%20to%20request%20and%20exchange%20data%20very%20fast.%20Examples%20of%20HPC%20applications%20range%20from%20nuclear%20simulations%20in%20government%20labs%20to%20playing%20chess.%20%0AI%20find%20this%20%5B...%5DShareThis" title="Digg"><img src="http://itknowledgehub.com/wp-content/plugins/sociable/images/digg.png" title="Digg" alt="Digg" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://www.facebook.com/share.php?u=http%3A%2F%2Fitknowledgehub.com%2Fdata-management%2Fcloud-becomes-hpc-friendly%2F&amp;t=Cloud%20Becomes%20HPC-friendly" title="Facebook"><img src="http://itknowledgehub.com/wp-content/plugins/sociable/images/facebook.png" title="Facebook" alt="Facebook" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://buzz.yahoo.com/submit/?submitUrl=http%3A%2F%2Fitknowledgehub.com%2Fdata-management%2Fcloud-becomes-hpc-friendly%2F&amp;submitHeadline=Cloud%20Becomes%20HPC-friendly&amp;submitSummary=Amazon%20announced%20today%20the%20availability%20of%20special%20EC2%20cloud%20clusters%20that%20are%20optimized%20for%20low-latency%20network%20operations.%20This%20is%20useful%20for%20applications%20in%20the%20so-called%20High-Performance%20Computing%20area%2C%20where%20servers%20need%20to%20request%20and%20exchange%20data%20very%20fast.%20Examples%20of%20HPC%20applications%20range%20from%20nuclear%20simulations%20in%20government%20labs%20to%20playing%20chess.%20%0AI%20find%20this%20%5B...%5DShareThis&amp;submitCategory=science&amp;submitAssetType=text" title="Yahoo! Buzz"><img src="http://itknowledgehub.com/wp-content/plugins/sociable/images/yahoobuzz.png" title="Yahoo! Buzz" alt="Yahoo! Buzz" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://twitter.com/home?status=Cloud%20Becomes%20HPC-friendly%20-%20http%3A%2F%2Fitknowledgehub.com%2Fdata-management%2Fcloud-becomes-hpc-friendly%2F" title="Twitter"><img src="http://itknowledgehub.com/wp-content/plugins/sociable/images/twitter.png" title="Twitter" alt="Twitter" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://www.diigo.com/post?url=http%3A%2F%2Fitknowledgehub.com%2Fdata-management%2Fcloud-becomes-hpc-friendly%2F&amp;title=Cloud%20Becomes%20HPC-friendly" title="Diigo"><img src="http://itknowledgehub.com/wp-content/plugins/sociable/images/diigo.png" title="Diigo" alt="Diigo" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://www.propeller.com/submit/?url=http%3A%2F%2Fitknowledgehub.com%2Fdata-management%2Fcloud-becomes-hpc-friendly%2F" title="Propeller"><img src="http://itknowledgehub.com/wp-content/plugins/sociable/images/propeller.png" title="Propeller" alt="Propeller" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://www.stumbleupon.com/submit?url=http%3A%2F%2Fitknowledgehub.com%2Fdata-management%2Fcloud-becomes-hpc-friendly%2F&amp;title=Cloud%20Becomes%20HPC-friendly" title="StumbleUpon"><img src="http://itknowledgehub.com/wp-content/plugins/sociable/images/stumbleupon.png" title="StumbleUpon" alt="StumbleUpon" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://faves.com/Authoring.aspx?u=http%3A%2F%2Fitknowledgehub.com%2Fdata-management%2Fcloud-becomes-hpc-friendly%2F&amp;title=Cloud%20Becomes%20HPC-friendly" title="Faves"><img src="http://itknowledgehub.com/wp-content/plugins/sociable/images/bluedot.png" title="Faves" alt="Faves" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://www.mixx.com/submit?page_url=http%3A%2F%2Fitknowledgehub.com%2Fdata-management%2Fcloud-becomes-hpc-friendly%2F&amp;title=Cloud%20Becomes%20HPC-friendly" title="Mixx"><img src="http://itknowledgehub.com/wp-content/plugins/sociable/images/mixx.png" title="Mixx" alt="Mixx" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://www.tumblr.com/share?v=3&amp;u=http%3A%2F%2Fitknowledgehub.com%2Fdata-management%2Fcloud-becomes-hpc-friendly%2F&amp;t=Cloud%20Becomes%20HPC-friendly&amp;s=Amazon%20announced%20today%20the%20availability%20of%20special%20EC2%20cloud%20clusters%20that%20are%20optimized%20for%20low-latency%20network%20operations.%20This%20is%20useful%20for%20applications%20in%20the%20so-called%20High-Performance%20Computing%20area%2C%20where%20servers%20need%20to%20request%20and%20exchange%20data%20very%20fast.%20Examples%20of%20HPC%20applications%20range%20from%20nuclear%20simulations%20in%20government%20labs%20to%20playing%20chess.%20%0AI%20find%20this%20%5B...%5DShareThis" title="Tumblr"><img src="http://itknowledgehub.com/wp-content/plugins/sociable/images/tumblr.png" title="Tumblr" alt="Tumblr" class="sociable-hovers" /></a>


<br/><br/>
<p>Syndicated via RSS From: <a href="http://www.asterdata.com/blog" rel="nofollow">http://www.asterdata.com/blog</a></p>Get free <a href="http://itknowledgehub.com/white-papers/" style="text-decoration: none">
white papers</a> delivered direct to your inbox from IT Knowledge Hub! <a href="http://itknowledgehub.com/register-now/">Register now</a> for cutting edge webcasts, reports, and white papers in your area of expertise.]]></content:encoded>
			<wfw:commentRss>http://itknowledgehub.com/data-management/cloud-becomes-hpc-friendly/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Storage vs Processing &amp; the EMC/Greenplum Acquisition</title>
		<link>http://itknowledgehub.com/data-management/storage-vs-processing-the-emcgreenplum-acquisition/</link>
		<comments>http://itknowledgehub.com/data-management/storage-vs-processing-the-emcgreenplum-acquisition/#comments</comments>
		<pubDate>Mon, 12 Jul 2010 18:35:08 +0000</pubDate>
		<dc:creator>Tasso Argyros</dc:creator>
				<category><![CDATA[Data Management]]></category>
		<category><![CDATA[Data Warehouse]]></category>
		<category><![CDATA[Database]]></category>
		<category><![CDATA[analytics]]></category>

		<guid isPermaLink="false">http://www.asterdata.com/blog/index.php/2010/07/12/storage-vs-processing-the-emcgreenplum-acquisition/</guid>
		<description><![CDATA[I have always enjoyed the subtle irony of someone trying to be impressive by saying “my data warehouse is X Terabytes” [muted: “…and it’s bigger than yours”]! Why is this ironic? Because it describes a data warehouse, which is supposed to be all about data processing and analysis, using a storage metric. Having an obese [...]<p><a href="http://sharethis.com/item?&#38;wp=2.2.3&#38;publisher=cf684f86-aafe-420a-8a13-0d8ab76b31c0&#38;title=Storage+vs+Processing+%26+the+EMC%2FGreenplum+Acquisition&#38;url=http%3A%2F%2Fwww.asterdata.com%2Fblog%2Findex.php%2F2010%2F07%2F12%2Fstorage-vs-processing-the-emcgreenplum-acquisition%2F">ShareThis</a></p>]]></description>
			<content:encoded><![CDATA[<p>I have always enjoyed the subtle irony of someone trying to be impressive by saying “my data warehouse is X Terabytes” [muted: “…and it’s bigger than yours”]! Why is this ironic? Because it describes a data warehouse, which is supposed to be all about data processing and analysis, using a storage metric. Having an obese 800 Terabytes system that may take hours or days to just do a single pass over the data is not impressive and definitely calls for some diet.</p>
<p>Surprisingly though, several vendors went down the path of making their data warehousing offerings fatter and fatter. Greenplum is a good example. Prior to Sun’s acquisition by Oracle, they were heavily pushing systems based on the <a target="_blank" href="http://www.oracle.com/us/products/servers-storage/servers/x86/031210.htm" >Sun Thumper</a>, a 48-disk-heavy 4U box that can store up to 100TBs/box. I was quite familiar with that box as it partly came out of a startup called Kealia that my Stanford advisor, <a target="_blank" href="http://en.wikipedia.org/wiki/David_Cheriton" >David Cheriton</a>, and Sun co-founder <a target="_blank" href="http://en.wikipedia.org/wiki/Andy_Bechtolsheim" >Andy Bechtolsheim</a> had founded and then sold to Sun in 2004. I kept wondering, though, what a 50TB/CPU configuration has to do with data analytics.</p>
<p>After long deliberation I came to the conclusion that it has nothing to do with it. There were two reasons why people were interested in this configuration. First, there were some use cases that required “near-line storage”, a term that’s used to describe a data repository whose major purpose is to store data but also allows for basic &amp; infrequent data access. In that respect, Greenplum’s software on top of the Sun Thumpers represented a cheap storage solution that offered basic data access and was very useful for applications where processing or analytics was not the main focus.</p>
<p>The second reason for the interest, though, is a tendency to drive DW projects towards an absolute low per-TB price to reduce costs. Experienced folks will recognize that such an approach leads to disaster, because – as mentioned above – analytics is more than just Terabytes. Perfectly low per-TB price using fat storage looks great on glossy paper but in reality it’s no good because nobody’s analytical problems are that simple.</p>
<p>The point here is that analytics have more to do with processing rather than storage. It requires a fair number of balanced servers (thus good scalability &amp; fault tolerance), CPU cycles, networking bandwidth, smart &amp; efficient algorithms, fair amounts of memory to avoid thrashing etc. It’s also about how much processing can it be done by SQL, and how much of your analytics need to use next-generation interfaces like <a target="_blank" href="http://www.mapreduce.org" >MapReduce</a> or pre-packaged in-database analytical engines. In the new decade in which we’re embarking, solving business problems like fraud, market segmentation &amp; targeting, financial optimization, etc., require much more than just cheap, overweight storage.</p>
<p>So going to the EMC/Greenplum news, I think such an acquisition makes sense, but in a specific way. It will lead to systems that live between storage and data warehousing, systems able to store data and also give the ability to retrieve it on an occasional basis or if the analysis required is trivial. But the problems Aster is excited about are those of advanced <a target="_blank" href="http://www.asterdata.com/product/advanced-analytics.php">in-database analytics</a> for rich, ad hoc querying, delivered through a full application environment inside a MPP database. It’s these problems that we see as opportunities to not only cut IT costs but also provide tremendous competitive advantages to our customers. And on that front, we promise to continue innovating and pushing the limits of technology as much as possible.</p>
<p><img src="http://feeds.feedburner.com/~r/AsterData/~4/ER3lKzXaSzw" height="1" width="1"/></p>




	<a rel="nofollow"  target="_blank" href="http://digg.com/submit?phase=2&amp;url=http%3A%2F%2Fitknowledgehub.com%2Fdata-management%2Fstorage-vs-processing-the-emcgreenplum-acquisition%2F&amp;title=Storage%20vs%20Processing%20%26amp%3B%20the%20EMC%2FGreenplum%20Acquisition&amp;bodytext=I%20have%20always%20enjoyed%20the%20subtle%20irony%20of%20someone%20trying%20to%20be%20impressive%20by%20saying%20%E2%80%9Cmy%20data%20warehouse%20is%20X%20Terabytes%E2%80%9D%20%5Bmuted%3A%20%E2%80%9C%E2%80%A6and%20it%E2%80%99s%20bigger%20than%20yours%E2%80%9D%5D%21%20Why%20is%20this%20ironic%3F%20Because%20it%20describes%20a%20data%20warehouse%2C%20which%20is%20supposed%20to%20be%20all%20about%20data%20processing%20and%20analysis%2C%20using%20a%20storage%20metric.%20Having%20an%20obese%20%5B...%5DShareThis" title="Digg"><img src="http://itknowledgehub.com/wp-content/plugins/sociable/images/digg.png" title="Digg" alt="Digg" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://www.facebook.com/share.php?u=http%3A%2F%2Fitknowledgehub.com%2Fdata-management%2Fstorage-vs-processing-the-emcgreenplum-acquisition%2F&amp;t=Storage%20vs%20Processing%20%26amp%3B%20the%20EMC%2FGreenplum%20Acquisition" title="Facebook"><img src="http://itknowledgehub.com/wp-content/plugins/sociable/images/facebook.png" title="Facebook" alt="Facebook" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://buzz.yahoo.com/submit/?submitUrl=http%3A%2F%2Fitknowledgehub.com%2Fdata-management%2Fstorage-vs-processing-the-emcgreenplum-acquisition%2F&amp;submitHeadline=Storage%20vs%20Processing%20%26amp%3B%20the%20EMC%2FGreenplum%20Acquisition&amp;submitSummary=I%20have%20always%20enjoyed%20the%20subtle%20irony%20of%20someone%20trying%20to%20be%20impressive%20by%20saying%20%E2%80%9Cmy%20data%20warehouse%20is%20X%20Terabytes%E2%80%9D%20%5Bmuted%3A%20%E2%80%9C%E2%80%A6and%20it%E2%80%99s%20bigger%20than%20yours%E2%80%9D%5D%21%20Why%20is%20this%20ironic%3F%20Because%20it%20describes%20a%20data%20warehouse%2C%20which%20is%20supposed%20to%20be%20all%20about%20data%20processing%20and%20analysis%2C%20using%20a%20storage%20metric.%20Having%20an%20obese%20%5B...%5DShareThis&amp;submitCategory=science&amp;submitAssetType=text" title="Yahoo! Buzz"><img src="http://itknowledgehub.com/wp-content/plugins/sociable/images/yahoobuzz.png" title="Yahoo! Buzz" alt="Yahoo! Buzz" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://twitter.com/home?status=Storage%20vs%20Processing%20%26amp%3B%20the%20EMC%2FGreenplum%20Acquisition%20-%20http%3A%2F%2Fitknowledgehub.com%2Fdata-management%2Fstorage-vs-processing-the-emcgreenplum-acquisition%2F" title="Twitter"><img src="http://itknowledgehub.com/wp-content/plugins/sociable/images/twitter.png" title="Twitter" alt="Twitter" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://www.diigo.com/post?url=http%3A%2F%2Fitknowledgehub.com%2Fdata-management%2Fstorage-vs-processing-the-emcgreenplum-acquisition%2F&amp;title=Storage%20vs%20Processing%20%26amp%3B%20the%20EMC%2FGreenplum%20Acquisition" title="Diigo"><img src="http://itknowledgehub.com/wp-content/plugins/sociable/images/diigo.png" title="Diigo" alt="Diigo" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://www.propeller.com/submit/?url=http%3A%2F%2Fitknowledgehub.com%2Fdata-management%2Fstorage-vs-processing-the-emcgreenplum-acquisition%2F" title="Propeller"><img src="http://itknowledgehub.com/wp-content/plugins/sociable/images/propeller.png" title="Propeller" alt="Propeller" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://www.stumbleupon.com/submit?url=http%3A%2F%2Fitknowledgehub.com%2Fdata-management%2Fstorage-vs-processing-the-emcgreenplum-acquisition%2F&amp;title=Storage%20vs%20Processing%20%26amp%3B%20the%20EMC%2FGreenplum%20Acquisition" title="StumbleUpon"><img src="http://itknowledgehub.com/wp-content/plugins/sociable/images/stumbleupon.png" title="StumbleUpon" alt="StumbleUpon" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://faves.com/Authoring.aspx?u=http%3A%2F%2Fitknowledgehub.com%2Fdata-management%2Fstorage-vs-processing-the-emcgreenplum-acquisition%2F&amp;title=Storage%20vs%20Processing%20%26amp%3B%20the%20EMC%2FGreenplum%20Acquisition" title="Faves"><img src="http://itknowledgehub.com/wp-content/plugins/sociable/images/bluedot.png" title="Faves" alt="Faves" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://www.mixx.com/submit?page_url=http%3A%2F%2Fitknowledgehub.com%2Fdata-management%2Fstorage-vs-processing-the-emcgreenplum-acquisition%2F&amp;title=Storage%20vs%20Processing%20%26amp%3B%20the%20EMC%2FGreenplum%20Acquisition" title="Mixx"><img src="http://itknowledgehub.com/wp-content/plugins/sociable/images/mixx.png" title="Mixx" alt="Mixx" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://www.tumblr.com/share?v=3&amp;u=http%3A%2F%2Fitknowledgehub.com%2Fdata-management%2Fstorage-vs-processing-the-emcgreenplum-acquisition%2F&amp;t=Storage%20vs%20Processing%20%26amp%3B%20the%20EMC%2FGreenplum%20Acquisition&amp;s=I%20have%20always%20enjoyed%20the%20subtle%20irony%20of%20someone%20trying%20to%20be%20impressive%20by%20saying%20%E2%80%9Cmy%20data%20warehouse%20is%20X%20Terabytes%E2%80%9D%20%5Bmuted%3A%20%E2%80%9C%E2%80%A6and%20it%E2%80%99s%20bigger%20than%20yours%E2%80%9D%5D%21%20Why%20is%20this%20ironic%3F%20Because%20it%20describes%20a%20data%20warehouse%2C%20which%20is%20supposed%20to%20be%20all%20about%20data%20processing%20and%20analysis%2C%20using%20a%20storage%20metric.%20Having%20an%20obese%20%5B...%5DShareThis" title="Tumblr"><img src="http://itknowledgehub.com/wp-content/plugins/sociable/images/tumblr.png" title="Tumblr" alt="Tumblr" class="sociable-hovers" /></a>


<br/><br/>
<p>Syndicated via RSS From: <a href="http://www.asterdata.com/blog" rel="nofollow">http://www.asterdata.com/blog</a></p>Get free <a href="http://itknowledgehub.com/white-papers/" style="text-decoration: none">
white papers</a> delivered direct to your inbox from IT Knowledge Hub! <a href="http://itknowledgehub.com/register-now/">Register now</a> for cutting edge webcasts, reports, and white papers in your area of expertise.]]></content:encoded>
			<wfw:commentRss>http://itknowledgehub.com/data-management/storage-vs-processing-the-emcgreenplum-acquisition/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Your Business is Going Social</title>
		<link>http://itknowledgehub.com/data-management/your-business-is-going-social/</link>
		<comments>http://itknowledgehub.com/data-management/your-business-is-going-social/#comments</comments>
		<pubDate>Mon, 12 Jul 2010 06:23:34 +0000</pubDate>
		<dc:creator>Blog: Krish Krishnan</dc:creator>
				<category><![CDATA[Business Intelligence]]></category>
		<category><![CDATA[Data Management]]></category>
		<category><![CDATA[Data Warehouse]]></category>
		<category><![CDATA[Database]]></category>
		<category><![CDATA[Knowledge Management]]></category>
		<category><![CDATA[Oracle]]></category>
		<category><![CDATA[business intelligence]]></category>
		<category><![CDATA[data management blogs]]></category>

		<guid isPermaLink="false">http://www.b-eye-network.in/blogs/krishnan/archives/2010/07/your_business_i.php</guid>
		<description><![CDATA[<p>Believe it or not, your Business has gone social. If you have any presence on the internet, you already will have added facebook, digg, delicoius, twitter and more to your website. Whether you are Walmart or Exxon or just The Store Next Door, the social media has changed the way your customers and suppliers work with you. The "long tail" is slowly transcending to a "fat tail". Collaborative computing and crowdsourcing are becoming common terms in business today. These are not buzzwords anymore and will be the future. <br /><br />Today there in research and development in major software organizations from IBM to Google to Apple about the crowdsourcing model of innovation. Infact Apple had adopted to this model and the success of iPhone is a very shining example. So did Google with Android platform, today there are scores of applications for this platform all over the world.<br /><br />Software as we know it and Business as we knew it will change in the next five years to a total model of crowd driven innovation and growth model. Your Business is going Social, adopt to the new ways of the new world.<br /><br /></p>]]></description>
			<content:encoded><![CDATA[<p>Believe it or not, your Business has gone social. If you have any presence on the internet, you already will have added facebook, digg, delicoius, twitter and more to your website. Whether you are Walmart or Exxon or just The Store Next Door, the social media has changed the way your customers and suppliers work with you. The &#8220;long tail&#8221; is slowly transcending to a &#8220;fat tail&#8221;. Collaborative computing and crowdsourcing are becoming common terms in business today. These are not buzzwords anymore and will be the future. </p>
<p>Today there in research and development in major software organizations from IBM to Google to Apple about the crowdsourcing model of innovation. Infact Apple had adopted to this model and the success of iPhone is a very shining example. So did Google with Android platform, today there are scores of applications for this platform all over the world.</p>
<p>Software as we know it and Business as we knew it will change in the next five years to a total model of crowd driven innovation and growth model. Your Business is going Social, adopt to the new ways of the new world.</p>




	<a rel="nofollow"  target="_blank" href="http://digg.com/submit?phase=2&amp;url=http%3A%2F%2Fitknowledgehub.com%2Fdata-management%2Fyour-business-is-going-social%2F&amp;title=Your%20Business%20is%20Going%20Social&amp;bodytext=Believe%20it%20or%20not%2C%20your%20Business%20has%20gone%20social.%20If%20you%20have%20any%20presence%20on%20the%20internet%2C%20you%20already%20will%20have%20added%20facebook%2C%20digg%2C%20delicoius%2C%20twitter%20and%20more%20to%20your%20website.%20Whether%20you%20are%20Walmart%20or%20Exxon%20or%20just%20The%20Store%20Next%20Door%2C%20the%20social%20media%20has%20changed%20the%20way%20your%20customers%20and%20suppliers%20work%20with%20you.%20The%20%22long%20tail%22%20is%20slowly%20transcending%20to%20a%20%22fat%20tail%22.%20Collaborative%20computing%20and%20crowdsourcing%20are%20becoming%20common%20terms%20in%20business%20today.%20These%20are%20not%20buzzwords%20anymore%20and%20will%20be%20the%20future.%20Today%20there%20in%20research%20and%20development%20in%20major%20software%20organizations%20from%20IBM%20to%20Google%20to%20Apple%20about%20the%20crowdsourcing%20model%20of%20innovation.%20Infact%20Apple%20had%20adopted%20to%20this%20model%20and%20the%20success%20of%20iPhone%20is%20a%20very%20shining%20example.%20So%20did%20Google%20with%20Android%20platform%2C%20today%20there%20are%20scores%20of%20applications%20for%20this%20platform%20all%20over%20the%20world.Software%20as%20we%20know%20it%20and%20Business%20as%20we%20knew%20it%20will%20change%20in%20the%20next%20five%20years%20to%20a%20total%20model%20of%20crowd%20driven%20innovation%20and%20growth%20model.%20Your%20Business%20is%20going%20Social%2C%20adopt%20to%20the%20new%20ways%20of%20the%20new%20world." title="Digg"><img src="http://itknowledgehub.com/wp-content/plugins/sociable/images/digg.png" title="Digg" alt="Digg" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://www.facebook.com/share.php?u=http%3A%2F%2Fitknowledgehub.com%2Fdata-management%2Fyour-business-is-going-social%2F&amp;t=Your%20Business%20is%20Going%20Social" title="Facebook"><img src="http://itknowledgehub.com/wp-content/plugins/sociable/images/facebook.png" title="Facebook" alt="Facebook" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://buzz.yahoo.com/submit/?submitUrl=http%3A%2F%2Fitknowledgehub.com%2Fdata-management%2Fyour-business-is-going-social%2F&amp;submitHeadline=Your%20Business%20is%20Going%20Social&amp;submitSummary=Believe%20it%20or%20not%2C%20your%20Business%20has%20gone%20social.%20If%20you%20have%20any%20presence%20on%20the%20internet%2C%20you%20already%20will%20have%20added%20facebook%2C%20digg%2C%20delicoius%2C%20twitter%20and%20more%20to%20your%20website.%20Whether%20you%20are%20Walmart%20or%20Exxon%20or%20just%20The%20Store%20Next%20Door%2C%20the%20social%20media%20has%20changed%20the%20way%20your%20customers%20and%20suppliers%20work%20with%20you.%20The%20%22long%20tail%22%20is%20slowly%20transcending%20to%20a%20%22fat%20tail%22.%20Collaborative%20computing%20and%20crowdsourcing%20are%20becoming%20common%20terms%20in%20business%20today.%20These%20are%20not%20buzzwords%20anymore%20and%20will%20be%20the%20future.%20Today%20there%20in%20research%20and%20development%20in%20major%20software%20organizations%20from%20IBM%20to%20Google%20to%20Apple%20about%20the%20crowdsourcing%20model%20of%20innovation.%20Infact%20Apple%20had%20adopted%20to%20this%20model%20and%20the%20success%20of%20iPhone%20is%20a%20very%20shining%20example.%20So%20did%20Google%20with%20Android%20platform%2C%20today%20there%20are%20scores%20of%20applications%20for%20this%20platform%20all%20over%20the%20world.Software%20as%20we%20know%20it%20and%20Business%20as%20we%20knew%20it%20will%20change%20in%20the%20next%20five%20years%20to%20a%20total%20model%20of%20crowd%20driven%20innovation%20and%20growth%20model.%20Your%20Business%20is%20going%20Social%2C%20adopt%20to%20the%20new%20ways%20of%20the%20new%20world.&amp;submitCategory=science&amp;submitAssetType=text" title="Yahoo! Buzz"><img src="http://itknowledgehub.com/wp-content/plugins/sociable/images/yahoobuzz.png" title="Yahoo! Buzz" alt="Yahoo! Buzz" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://twitter.com/home?status=Your%20Business%20is%20Going%20Social%20-%20http%3A%2F%2Fitknowledgehub.com%2Fdata-management%2Fyour-business-is-going-social%2F" title="Twitter"><img src="http://itknowledgehub.com/wp-content/plugins/sociable/images/twitter.png" title="Twitter" alt="Twitter" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://www.diigo.com/post?url=http%3A%2F%2Fitknowledgehub.com%2Fdata-management%2Fyour-business-is-going-social%2F&amp;title=Your%20Business%20is%20Going%20Social" title="Diigo"><img src="http://itknowledgehub.com/wp-content/plugins/sociable/images/diigo.png" title="Diigo" alt="Diigo" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://www.propeller.com/submit/?url=http%3A%2F%2Fitknowledgehub.com%2Fdata-management%2Fyour-business-is-going-social%2F" title="Propeller"><img src="http://itknowledgehub.com/wp-content/plugins/sociable/images/propeller.png" title="Propeller" alt="Propeller" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://www.stumbleupon.com/submit?url=http%3A%2F%2Fitknowledgehub.com%2Fdata-management%2Fyour-business-is-going-social%2F&amp;title=Your%20Business%20is%20Going%20Social" title="StumbleUpon"><img src="http://itknowledgehub.com/wp-content/plugins/sociable/images/stumbleupon.png" title="StumbleUpon" alt="StumbleUpon" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://faves.com/Authoring.aspx?u=http%3A%2F%2Fitknowledgehub.com%2Fdata-management%2Fyour-business-is-going-social%2F&amp;title=Your%20Business%20is%20Going%20Social" title="Faves"><img src="http://itknowledgehub.com/wp-content/plugins/sociable/images/bluedot.png" title="Faves" alt="Faves" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://www.mixx.com/submit?page_url=http%3A%2F%2Fitknowledgehub.com%2Fdata-management%2Fyour-business-is-going-social%2F&amp;title=Your%20Business%20is%20Going%20Social" title="Mixx"><img src="http://itknowledgehub.com/wp-content/plugins/sociable/images/mixx.png" title="Mixx" alt="Mixx" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://www.tumblr.com/share?v=3&amp;u=http%3A%2F%2Fitknowledgehub.com%2Fdata-management%2Fyour-business-is-going-social%2F&amp;t=Your%20Business%20is%20Going%20Social&amp;s=Believe%20it%20or%20not%2C%20your%20Business%20has%20gone%20social.%20If%20you%20have%20any%20presence%20on%20the%20internet%2C%20you%20already%20will%20have%20added%20facebook%2C%20digg%2C%20delicoius%2C%20twitter%20and%20more%20to%20your%20website.%20Whether%20you%20are%20Walmart%20or%20Exxon%20or%20just%20The%20Store%20Next%20Door%2C%20the%20social%20media%20has%20changed%20the%20way%20your%20customers%20and%20suppliers%20work%20with%20you.%20The%20%22long%20tail%22%20is%20slowly%20transcending%20to%20a%20%22fat%20tail%22.%20Collaborative%20computing%20and%20crowdsourcing%20are%20becoming%20common%20terms%20in%20business%20today.%20These%20are%20not%20buzzwords%20anymore%20and%20will%20be%20the%20future.%20Today%20there%20in%20research%20and%20development%20in%20major%20software%20organizations%20from%20IBM%20to%20Google%20to%20Apple%20about%20the%20crowdsourcing%20model%20of%20innovation.%20Infact%20Apple%20had%20adopted%20to%20this%20model%20and%20the%20success%20of%20iPhone%20is%20a%20very%20shining%20example.%20So%20did%20Google%20with%20Android%20platform%2C%20today%20there%20are%20scores%20of%20applications%20for%20this%20platform%20all%20over%20the%20world.Software%20as%20we%20know%20it%20and%20Business%20as%20we%20knew%20it%20will%20change%20in%20the%20next%20five%20years%20to%20a%20total%20model%20of%20crowd%20driven%20innovation%20and%20growth%20model.%20Your%20Business%20is%20going%20Social%2C%20adopt%20to%20the%20new%20ways%20of%20the%20new%20world." title="Tumblr"><img src="http://itknowledgehub.com/wp-content/plugins/sociable/images/tumblr.png" title="Tumblr" alt="Tumblr" class="sociable-hovers" /></a>


<br/><br/>
<p>Syndicated via RSS From: <a href="http://www.b-eye-network.in/blogs/krishnan/" rel="nofollow">http://www.b-eye-network.in/blogs/krishnan/</a></p>Get free <a href="http://itknowledgehub.com/white-papers/" style="text-decoration: none">
white papers</a> delivered direct to your inbox from IT Knowledge Hub! <a href="http://itknowledgehub.com/register-now/">Register now</a> for cutting edge webcasts, reports, and white papers in your area of expertise.]]></content:encoded>
			<wfw:commentRss>http://itknowledgehub.com/data-management/your-business-is-going-social/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Call for Database Industrial Papers in EDBT 2011</title>
		<link>http://itknowledgehub.com/data-management/call-for-database-industrial-papers-in-edbt-2011/</link>
		<comments>http://itknowledgehub.com/data-management/call-for-database-industrial-papers-in-edbt-2011/#comments</comments>
		<pubDate>Sun, 11 Jul 2010 17:39:55 +0000</pubDate>
		<dc:creator>Tasso Argyros</dc:creator>
				<category><![CDATA[Data Management]]></category>
		<category><![CDATA[Data Warehouse]]></category>
		<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://www.asterdata.com/blog/index.php/2010/07/11/call-for-database-industrial-papers-in-edbt-2011/</guid>
		<description><![CDATA[Those of you that follow the academic conferences in the database space, are probably familiar with EDBT, the premier database conference in Europe. EDBT acts as a forum not only for European researchers, but also for commercial technologies and vendors that want to present their innovations in a European setting.
For 2011, EDBT is held in [...]<p><a href="http://sharethis.com/item?&#38;wp=2.2.3&#38;publisher=cf684f86-aafe-420a-8a13-0d8ab76b31c0&#38;title=Call+for+Database+Industrial+Papers+in+EDBT+2011&#38;url=http%3A%2F%2Fwww.asterdata.com%2Fblog%2Findex.php%2F2010%2F07%2F11%2Fcall-for-database-industrial-papers-in-edbt-2011%2F">ShareThis</a></p>]]></description>
			<content:encoded><![CDATA[<p>Those of you that follow the academic conferences in the database space, are probably familiar with <a target="_blank" href="http://edbticdt2011.it.uu.se/">EDBT</a>, the premier database conference in Europe. EDBT acts as a forum not only for European researchers, but also for commercial technologies and vendors that want to present their innovations in a European setting.</p>
<p>For 2011, EDBT is held in <a target="_blank" href="http://en.wikipedia.org/wiki/Uppsala">Uppsala, Sweden</a> in March. I’m on the Program Committee for the “industrial application” section and I’d like to encourage anyone with an interesting commercial technology and an interest in Europe to consider submitting a paper to the conference. Papers on applications and position papers on technology trends are equally welcome. The deadline for submission is September 8, 2010 and you can find more info on submitting <a target="_blank" href="http://edbticdt2011.it.uu.se/EDBT-CFP.html">here</a>.</p>
<p><img src="http://feeds.feedburner.com/~r/AsterData/~4/3wGtq6lcbmQ" height="1" width="1"/></p>




	<a rel="nofollow"  target="_blank" href="http://digg.com/submit?phase=2&amp;url=http%3A%2F%2Fitknowledgehub.com%2Fdata-management%2Fcall-for-database-industrial-papers-in-edbt-2011%2F&amp;title=Call%20for%20Database%20Industrial%20Papers%20in%20EDBT%202011&amp;bodytext=Those%20of%20you%20that%20follow%20the%20academic%20conferences%20in%20the%20database%20space%2C%20are%20probably%20familiar%20with%20EDBT%2C%20the%20premier%20database%20conference%20in%20Europe.%20EDBT%20acts%20as%20a%20forum%20not%20only%20for%20European%20researchers%2C%20but%20also%20for%20commercial%20technologies%20and%20vendors%20that%20want%20to%20present%20their%20innovations%20in%20a%20European%20setting.%0AFor%202011%2C%20EDBT%20is%20held%20in%20%5B...%5DShareThis" title="Digg"><img src="http://itknowledgehub.com/wp-content/plugins/sociable/images/digg.png" title="Digg" alt="Digg" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://www.facebook.com/share.php?u=http%3A%2F%2Fitknowledgehub.com%2Fdata-management%2Fcall-for-database-industrial-papers-in-edbt-2011%2F&amp;t=Call%20for%20Database%20Industrial%20Papers%20in%20EDBT%202011" title="Facebook"><img src="http://itknowledgehub.com/wp-content/plugins/sociable/images/facebook.png" title="Facebook" alt="Facebook" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://buzz.yahoo.com/submit/?submitUrl=http%3A%2F%2Fitknowledgehub.com%2Fdata-management%2Fcall-for-database-industrial-papers-in-edbt-2011%2F&amp;submitHeadline=Call%20for%20Database%20Industrial%20Papers%20in%20EDBT%202011&amp;submitSummary=Those%20of%20you%20that%20follow%20the%20academic%20conferences%20in%20the%20database%20space%2C%20are%20probably%20familiar%20with%20EDBT%2C%20the%20premier%20database%20conference%20in%20Europe.%20EDBT%20acts%20as%20a%20forum%20not%20only%20for%20European%20researchers%2C%20but%20also%20for%20commercial%20technologies%20and%20vendors%20that%20want%20to%20present%20their%20innovations%20in%20a%20European%20setting.%0AFor%202011%2C%20EDBT%20is%20held%20in%20%5B...%5DShareThis&amp;submitCategory=science&amp;submitAssetType=text" title="Yahoo! Buzz"><img src="http://itknowledgehub.com/wp-content/plugins/sociable/images/yahoobuzz.png" title="Yahoo! Buzz" alt="Yahoo! Buzz" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://twitter.com/home?status=Call%20for%20Database%20Industrial%20Papers%20in%20EDBT%202011%20-%20http%3A%2F%2Fitknowledgehub.com%2Fdata-management%2Fcall-for-database-industrial-papers-in-edbt-2011%2F" title="Twitter"><img src="http://itknowledgehub.com/wp-content/plugins/sociable/images/twitter.png" title="Twitter" alt="Twitter" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://www.diigo.com/post?url=http%3A%2F%2Fitknowledgehub.com%2Fdata-management%2Fcall-for-database-industrial-papers-in-edbt-2011%2F&amp;title=Call%20for%20Database%20Industrial%20Papers%20in%20EDBT%202011" title="Diigo"><img src="http://itknowledgehub.com/wp-content/plugins/sociable/images/diigo.png" title="Diigo" alt="Diigo" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://www.propeller.com/submit/?url=http%3A%2F%2Fitknowledgehub.com%2Fdata-management%2Fcall-for-database-industrial-papers-in-edbt-2011%2F" title="Propeller"><img src="http://itknowledgehub.com/wp-content/plugins/sociable/images/propeller.png" title="Propeller" alt="Propeller" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://www.stumbleupon.com/submit?url=http%3A%2F%2Fitknowledgehub.com%2Fdata-management%2Fcall-for-database-industrial-papers-in-edbt-2011%2F&amp;title=Call%20for%20Database%20Industrial%20Papers%20in%20EDBT%202011" title="StumbleUpon"><img src="http://itknowledgehub.com/wp-content/plugins/sociable/images/stumbleupon.png" title="StumbleUpon" alt="StumbleUpon" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://faves.com/Authoring.aspx?u=http%3A%2F%2Fitknowledgehub.com%2Fdata-management%2Fcall-for-database-industrial-papers-in-edbt-2011%2F&amp;title=Call%20for%20Database%20Industrial%20Papers%20in%20EDBT%202011" title="Faves"><img src="http://itknowledgehub.com/wp-content/plugins/sociable/images/bluedot.png" title="Faves" alt="Faves" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://www.mixx.com/submit?page_url=http%3A%2F%2Fitknowledgehub.com%2Fdata-management%2Fcall-for-database-industrial-papers-in-edbt-2011%2F&amp;title=Call%20for%20Database%20Industrial%20Papers%20in%20EDBT%202011" title="Mixx"><img src="http://itknowledgehub.com/wp-content/plugins/sociable/images/mixx.png" title="Mixx" alt="Mixx" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://www.tumblr.com/share?v=3&amp;u=http%3A%2F%2Fitknowledgehub.com%2Fdata-management%2Fcall-for-database-industrial-papers-in-edbt-2011%2F&amp;t=Call%20for%20Database%20Industrial%20Papers%20in%20EDBT%202011&amp;s=Those%20of%20you%20that%20follow%20the%20academic%20conferences%20in%20the%20database%20space%2C%20are%20probably%20familiar%20with%20EDBT%2C%20the%20premier%20database%20conference%20in%20Europe.%20EDBT%20acts%20as%20a%20forum%20not%20only%20for%20European%20researchers%2C%20but%20also%20for%20commercial%20technologies%20and%20vendors%20that%20want%20to%20present%20their%20innovations%20in%20a%20European%20setting.%0AFor%202011%2C%20EDBT%20is%20held%20in%20%5B...%5DShareThis" title="Tumblr"><img src="http://itknowledgehub.com/wp-content/plugins/sociable/images/tumblr.png" title="Tumblr" alt="Tumblr" class="sociable-hovers" /></a>


<br/><br/>
<p>Syndicated via RSS From: <a href="http://www.asterdata.com/blog" rel="nofollow">http://www.asterdata.com/blog</a></p>Get free <a href="http://itknowledgehub.com/white-papers/" style="text-decoration: none">
white papers</a> delivered direct to your inbox from IT Knowledge Hub! <a href="http://itknowledgehub.com/register-now/">Register now</a> for cutting edge webcasts, reports, and white papers in your area of expertise.]]></content:encoded>
			<wfw:commentRss>http://itknowledgehub.com/data-management/call-for-database-industrial-papers-in-edbt-2011/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>EMC to Acquire Greenplum</title>
		<link>http://itknowledgehub.com/data-management/emc-to-acquire-greenplum/</link>
		<comments>http://itknowledgehub.com/data-management/emc-to-acquire-greenplum/#comments</comments>
		<pubDate>Wed, 07 Jul 2010 07:43:56 +0000</pubDate>
		<dc:creator>Blog: Krish Krishnan</dc:creator>
				<category><![CDATA[Business Intelligence]]></category>
		<category><![CDATA[Data Management]]></category>
		<category><![CDATA[Data Warehouse]]></category>
		<category><![CDATA[Database]]></category>
		<category><![CDATA[Knowledge Management]]></category>
		<category><![CDATA[Oracle]]></category>
		<category><![CDATA[business intelligence]]></category>
		<category><![CDATA[data management blogs]]></category>

		<guid isPermaLink="false">http://www.b-eye-network.in/blogs/krishnan/archives/2010/07/emc_to_acquire.php</guid>
		<description><![CDATA[<p>An interesting move from EMC. First they signed a deal with ParAccel to provide stroage technology and now are acquiring Greenplum. This deal signifies the new war of worlds - HP, IBM, CISCO, EMC and Oracle will now fight a battle royale over Cloud Computing and in special mention DWBI and Analytics in the Cloud.<br /><br />There are several things to understand in this move<br /><br />1. Majir mover advantage for a commercial cloud provision - apart from Amazon<br />2. EMC establishing its presence as a player in the DWBI and Analytics space<br />3. The fact that BI in the cloud is a reality<br />4. The new platform for DWBI and Analytics may move out of SQL<br />5. DWBI as we know it will change<br /><br />As we start moving from a SQL intensive DWBI to a non-SQL intensive BI, we will start looking at these kinds of platforms for a new alternative. Good news for all technology enthusiasts and Analytical BI users.<br /><br />Another fact is now the DW Appliances Space has very few pure-play vendors - Netezza vs. AsterData is certainly the next battle <br /><br />&#160;<br /><br /></p>]]></description>
			<content:encoded><![CDATA[<p>An interesting move from EMC. First they signed a deal with ParAccel to provide stroage technology and now are acquiring Greenplum. This deal signifies the new war of worlds &#8211; HP, IBM, CISCO, EMC and Oracle will now fight a battle royale over Cloud Computing and in special mention DWBI and Analytics in the Cloud.</p>
<p>There are several things to understand in this move</p>
<p>1. Majir mover advantage for a commercial cloud provision &#8211; apart from Amazon<br />2. EMC establishing its presence as a player in the DWBI and Analytics space<br />3. The fact that BI in the cloud is a reality<br />4. The new platform for DWBI and Analytics may move out of SQL<br />5. DWBI as we know it will change</p>
<p>As we start moving from a SQL intensive DWBI to a non-SQL intensive BI, we will start looking at these kinds of platforms for a new alternative. Good news for all technology enthusiasts and Analytical BI users.</p>
<p>Another fact is now the DW Appliances Space has very few pure-play vendors &#8211; Netezza vs. AsterData is certainly the next battle </p>
<p>&nbsp;</p>




	<a rel="nofollow"  target="_blank" href="http://digg.com/submit?phase=2&amp;url=http%3A%2F%2Fitknowledgehub.com%2Fdata-management%2Femc-to-acquire-greenplum%2F&amp;title=EMC%20to%20Acquire%20Greenplum&amp;bodytext=An%20interesting%20move%20from%20EMC.%20First%20they%20signed%20a%20deal%20with%20ParAccel%20to%20provide%20stroage%20technology%20and%20now%20are%20acquiring%20Greenplum.%20This%20deal%20signifies%20the%20new%20war%20of%20worlds%20-%20HP%2C%20IBM%2C%20CISCO%2C%20EMC%20and%20Oracle%20will%20now%20fight%20a%20battle%20royale%20over%20Cloud%20Computing%20and%20in%20special%20mention%20DWBI%20and%20Analytics%20in%20the%20Cloud.There%20are%20several%20things%20to%20understand%20in%20this%20move1.%20Majir%20mover%20advantage%20for%20a%20commercial%20cloud%20provision%20-%20apart%20from%20Amazon2.%20EMC%20establishing%20its%20presence%20as%20a%20player%20in%20the%20DWBI%20and%20Analytics%20space3.%20The%20fact%20that%20BI%20in%20the%20cloud%20is%20a%20reality4.%20The%20new%20platform%20for%20DWBI%20and%20Analytics%20may%20move%20out%20of%20SQL5.%20DWBI%20as%20we%20know%20it%20will%20changeAs%20we%20start%20moving%20from%20a%20SQL%20intensive%20DWBI%20to%20a%20non-SQL%20intensive%20BI%2C%20we%20will%20start%20looking%20at%20these%20kinds%20of%20platforms%20for%20a%20new%20alternative.%20Good%20news%20for%20all%20technology%20enthusiasts%20and%20Analytical%20BI%20users.Another%20fact%20is%20now%20the%20DW%20Appliances%20Space%20has%20very%20few%20pure-play%20vendors%20-%20Netezza%20vs.%20AsterData%20is%20certainly%20the%20next%20battle%20%26nbsp%3B" title="Digg"><img src="http://itknowledgehub.com/wp-content/plugins/sociable/images/digg.png" title="Digg" alt="Digg" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://www.facebook.com/share.php?u=http%3A%2F%2Fitknowledgehub.com%2Fdata-management%2Femc-to-acquire-greenplum%2F&amp;t=EMC%20to%20Acquire%20Greenplum" title="Facebook"><img src="http://itknowledgehub.com/wp-content/plugins/sociable/images/facebook.png" title="Facebook" alt="Facebook" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://buzz.yahoo.com/submit/?submitUrl=http%3A%2F%2Fitknowledgehub.com%2Fdata-management%2Femc-to-acquire-greenplum%2F&amp;submitHeadline=EMC%20to%20Acquire%20Greenplum&amp;submitSummary=An%20interesting%20move%20from%20EMC.%20First%20they%20signed%20a%20deal%20with%20ParAccel%20to%20provide%20stroage%20technology%20and%20now%20are%20acquiring%20Greenplum.%20This%20deal%20signifies%20the%20new%20war%20of%20worlds%20-%20HP%2C%20IBM%2C%20CISCO%2C%20EMC%20and%20Oracle%20will%20now%20fight%20a%20battle%20royale%20over%20Cloud%20Computing%20and%20in%20special%20mention%20DWBI%20and%20Analytics%20in%20the%20Cloud.There%20are%20several%20things%20to%20understand%20in%20this%20move1.%20Majir%20mover%20advantage%20for%20a%20commercial%20cloud%20provision%20-%20apart%20from%20Amazon2.%20EMC%20establishing%20its%20presence%20as%20a%20player%20in%20the%20DWBI%20and%20Analytics%20space3.%20The%20fact%20that%20BI%20in%20the%20cloud%20is%20a%20reality4.%20The%20new%20platform%20for%20DWBI%20and%20Analytics%20may%20move%20out%20of%20SQL5.%20DWBI%20as%20we%20know%20it%20will%20changeAs%20we%20start%20moving%20from%20a%20SQL%20intensive%20DWBI%20to%20a%20non-SQL%20intensive%20BI%2C%20we%20will%20start%20looking%20at%20these%20kinds%20of%20platforms%20for%20a%20new%20alternative.%20Good%20news%20for%20all%20technology%20enthusiasts%20and%20Analytical%20BI%20users.Another%20fact%20is%20now%20the%20DW%20Appliances%20Space%20has%20very%20few%20pure-play%20vendors%20-%20Netezza%20vs.%20AsterData%20is%20certainly%20the%20next%20battle%20%26nbsp%3B&amp;submitCategory=science&amp;submitAssetType=text" title="Yahoo! Buzz"><img src="http://itknowledgehub.com/wp-content/plugins/sociable/images/yahoobuzz.png" title="Yahoo! Buzz" alt="Yahoo! Buzz" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://twitter.com/home?status=EMC%20to%20Acquire%20Greenplum%20-%20http%3A%2F%2Fitknowledgehub.com%2Fdata-management%2Femc-to-acquire-greenplum%2F" title="Twitter"><img src="http://itknowledgehub.com/wp-content/plugins/sociable/images/twitter.png" title="Twitter" alt="Twitter" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://www.diigo.com/post?url=http%3A%2F%2Fitknowledgehub.com%2Fdata-management%2Femc-to-acquire-greenplum%2F&amp;title=EMC%20to%20Acquire%20Greenplum" title="Diigo"><img src="http://itknowledgehub.com/wp-content/plugins/sociable/images/diigo.png" title="Diigo" alt="Diigo" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://www.propeller.com/submit/?url=http%3A%2F%2Fitknowledgehub.com%2Fdata-management%2Femc-to-acquire-greenplum%2F" title="Propeller"><img src="http://itknowledgehub.com/wp-content/plugins/sociable/images/propeller.png" title="Propeller" alt="Propeller" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://www.stumbleupon.com/submit?url=http%3A%2F%2Fitknowledgehub.com%2Fdata-management%2Femc-to-acquire-greenplum%2F&amp;title=EMC%20to%20Acquire%20Greenplum" title="StumbleUpon"><img src="http://itknowledgehub.com/wp-content/plugins/sociable/images/stumbleupon.png" title="StumbleUpon" alt="StumbleUpon" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://faves.com/Authoring.aspx?u=http%3A%2F%2Fitknowledgehub.com%2Fdata-management%2Femc-to-acquire-greenplum%2F&amp;title=EMC%20to%20Acquire%20Greenplum" title="Faves"><img src="http://itknowledgehub.com/wp-content/plugins/sociable/images/bluedot.png" title="Faves" alt="Faves" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://www.mixx.com/submit?page_url=http%3A%2F%2Fitknowledgehub.com%2Fdata-management%2Femc-to-acquire-greenplum%2F&amp;title=EMC%20to%20Acquire%20Greenplum" title="Mixx"><img src="http://itknowledgehub.com/wp-content/plugins/sociable/images/mixx.png" title="Mixx" alt="Mixx" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://www.tumblr.com/share?v=3&amp;u=http%3A%2F%2Fitknowledgehub.com%2Fdata-management%2Femc-to-acquire-greenplum%2F&amp;t=EMC%20to%20Acquire%20Greenplum&amp;s=An%20interesting%20move%20from%20EMC.%20First%20they%20signed%20a%20deal%20with%20ParAccel%20to%20provide%20stroage%20technology%20and%20now%20are%20acquiring%20Greenplum.%20This%20deal%20signifies%20the%20new%20war%20of%20worlds%20-%20HP%2C%20IBM%2C%20CISCO%2C%20EMC%20and%20Oracle%20will%20now%20fight%20a%20battle%20royale%20over%20Cloud%20Computing%20and%20in%20special%20mention%20DWBI%20and%20Analytics%20in%20the%20Cloud.There%20are%20several%20things%20to%20understand%20in%20this%20move1.%20Majir%20mover%20advantage%20for%20a%20commercial%20cloud%20provision%20-%20apart%20from%20Amazon2.%20EMC%20establishing%20its%20presence%20as%20a%20player%20in%20the%20DWBI%20and%20Analytics%20space3.%20The%20fact%20that%20BI%20in%20the%20cloud%20is%20a%20reality4.%20The%20new%20platform%20for%20DWBI%20and%20Analytics%20may%20move%20out%20of%20SQL5.%20DWBI%20as%20we%20know%20it%20will%20changeAs%20we%20start%20moving%20from%20a%20SQL%20intensive%20DWBI%20to%20a%20non-SQL%20intensive%20BI%2C%20we%20will%20start%20looking%20at%20these%20kinds%20of%20platforms%20for%20a%20new%20alternative.%20Good%20news%20for%20all%20technology%20enthusiasts%20and%20Analytical%20BI%20users.Another%20fact%20is%20now%20the%20DW%20Appliances%20Space%20has%20very%20few%20pure-play%20vendors%20-%20Netezza%20vs.%20AsterData%20is%20certainly%20the%20next%20battle%20%26nbsp%3B" title="Tumblr"><img src="http://itknowledgehub.com/wp-content/plugins/sociable/images/tumblr.png" title="Tumblr" alt="Tumblr" class="sociable-hovers" /></a>


<br/><br/>
<p>Syndicated via RSS From: <a href="http://www.b-eye-network.in/blogs/krishnan/" rel="nofollow">http://www.b-eye-network.in/blogs/krishnan/</a></p>Get free <a href="http://itknowledgehub.com/white-papers/" style="text-decoration: none">
white papers</a> delivered direct to your inbox from IT Knowledge Hub! <a href="http://itknowledgehub.com/register-now/">Register now</a> for cutting edge webcasts, reports, and white papers in your area of expertise.]]></content:encoded>
			<wfw:commentRss>http://itknowledgehub.com/data-management/emc-to-acquire-greenplum/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>The concept of non-relational analytics</title>
		<link>http://itknowledgehub.com/data-management/the-concept-of-non-relational-analytics/</link>
		<comments>http://itknowledgehub.com/data-management/the-concept-of-non-relational-analytics/#comments</comments>
		<pubDate>Fri, 02 Jul 2010 17:15:35 +0000</pubDate>
		<dc:creator>Tasso Argyros</dc:creator>
				<category><![CDATA[Data Management]]></category>
		<category><![CDATA[Data Warehouse]]></category>
		<category><![CDATA[analytics]]></category>
		<category><![CDATA[MapReduce]]></category>

		<guid isPermaLink="false">http://www.asterdata.com/blog/index.php/2010/07/02/the-concept-of-non-relational-analytics/</guid>
		<description><![CDATA[There is a lot of talk these days about relational vs. non-relational data. But what about analytics? Does it make sense to talk about relational and non-relational analytics?
I think it does. Historically, a lot of data analysis in the enterprise has been done with pure SQL. SQL-based analysis is a type of “relational analysis,” which [...]<p><a href="http://sharethis.com/item?&#38;wp=2.2.3&#38;publisher=cf684f86-aafe-420a-8a13-0d8ab76b31c0&#38;title=The+concept+of+non-relational+analytics&#38;url=http%3A%2F%2Fwww.asterdata.com%2Fblog%2Findex.php%2F2010%2F07%2F02%2Fthe-concept-of-non-relational-analytics%2F">ShareThis</a></p>]]></description>
			<content:encoded><![CDATA[<p>There is a lot of talk these days about relational vs. non-relational data. But what about analytics? Does it make sense to talk about relational and non-relational <em>analytics</em>?</p>
<p>I think it does. Historically, a lot of data analysis in the enterprise has been done with pure SQL. SQL-based analysis is a type of “relational analysis,” which I define as analysis done via a set-based declarative language like SQL. Note how SQL treats every table as a set of values; SQL statements are relational set operations; and any intermediate SQL results, even within the same query, need to follow the relational model. All these are characteristics of a relational analysis language. Although recent SQL standards define the language to be <a target="_blank" href="http://en.wikipedia.org/wiki/Turing_completeness" >Turing Complete</a>, meaning you can implement any algorithm in SQL, in practice implementing any computation that departs from the simple model of sets, joins, groupings, and orderings is severely sub-optimal, in terms of performance or complexity.</p>
<p>On the other hand, an interface like MapReduce is clearly non-relational in terms of its algorithmic and computational capabilities. You have the full flexibility of a procedural programming language, like C or Java; MapReduce intermediate results can follow any form; and the logic of a MapReduce analytical application can implement almost arbitrary formations of code flow and data structures. In addition, any MapReduce computation can be automatically extended to a shared-nothing parallel system which implies ability to crunch big amounts of data. So MapReduce is one version of “non-relational” analysis.</p>
<p>So Aster Data’s <a target="_blank" href="http://www.asterdata.com/resources/mapreduce.php">SQL-MapReduce</a> becomes really interesting if you see it as a way of doing non-relational analytics on top of relational data. In Aster Data’s platform, you can store your data in a purely relational form. By doing that, you can use popular RDBMS mechanisms to achieve things like adherence to a data model, security, compliance, integration with ETL or BI tools etc. The similarities, however, stop there. Because you can then use SQL-MapReduce to do analytics that were never possible before in a relational RDBMS, because they are MapReduce-based and non-relational and they extend to TBs or PBs. And that includes a large number of analytical applications like fraud detection, network analysis, graph algorithms, data mining, etc.</p>
<p><img src="http://feeds.feedburner.com/~r/AsterData/~4/9w7I5W5GdUs" height="1" width="1"/></p>




	<a rel="nofollow"  target="_blank" href="http://digg.com/submit?phase=2&amp;url=http%3A%2F%2Fitknowledgehub.com%2Fdata-management%2Fthe-concept-of-non-relational-analytics%2F&amp;title=The%20concept%20of%20non-relational%20analytics&amp;bodytext=There%20is%20a%20lot%20of%20talk%20these%20days%20about%20relational%20vs.%20non-relational%20data.%20But%20what%20about%20analytics%3F%20Does%20it%20make%20sense%20to%20talk%20about%20relational%20and%20non-relational%20analytics%3F%0AI%20think%20it%20does.%20Historically%2C%20a%20lot%20of%20data%20analysis%20in%20the%20enterprise%20has%20been%20done%20with%20pure%20SQL.%20SQL-based%20analysis%20is%20a%20type%20of%20%E2%80%9Crelational%20analysis%2C%E2%80%9D%20which%20%5B...%5DShareThis" title="Digg"><img src="http://itknowledgehub.com/wp-content/plugins/sociable/images/digg.png" title="Digg" alt="Digg" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://www.facebook.com/share.php?u=http%3A%2F%2Fitknowledgehub.com%2Fdata-management%2Fthe-concept-of-non-relational-analytics%2F&amp;t=The%20concept%20of%20non-relational%20analytics" title="Facebook"><img src="http://itknowledgehub.com/wp-content/plugins/sociable/images/facebook.png" title="Facebook" alt="Facebook" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://buzz.yahoo.com/submit/?submitUrl=http%3A%2F%2Fitknowledgehub.com%2Fdata-management%2Fthe-concept-of-non-relational-analytics%2F&amp;submitHeadline=The%20concept%20of%20non-relational%20analytics&amp;submitSummary=There%20is%20a%20lot%20of%20talk%20these%20days%20about%20relational%20vs.%20non-relational%20data.%20But%20what%20about%20analytics%3F%20Does%20it%20make%20sense%20to%20talk%20about%20relational%20and%20non-relational%20analytics%3F%0AI%20think%20it%20does.%20Historically%2C%20a%20lot%20of%20data%20analysis%20in%20the%20enterprise%20has%20been%20done%20with%20pure%20SQL.%20SQL-based%20analysis%20is%20a%20type%20of%20%E2%80%9Crelational%20analysis%2C%E2%80%9D%20which%20%5B...%5DShareThis&amp;submitCategory=science&amp;submitAssetType=text" title="Yahoo! Buzz"><img src="http://itknowledgehub.com/wp-content/plugins/sociable/images/yahoobuzz.png" title="Yahoo! Buzz" alt="Yahoo! Buzz" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://twitter.com/home?status=The%20concept%20of%20non-relational%20analytics%20-%20http%3A%2F%2Fitknowledgehub.com%2Fdata-management%2Fthe-concept-of-non-relational-analytics%2F" title="Twitter"><img src="http://itknowledgehub.com/wp-content/plugins/sociable/images/twitter.png" title="Twitter" alt="Twitter" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://www.diigo.com/post?url=http%3A%2F%2Fitknowledgehub.com%2Fdata-management%2Fthe-concept-of-non-relational-analytics%2F&amp;title=The%20concept%20of%20non-relational%20analytics" title="Diigo"><img src="http://itknowledgehub.com/wp-content/plugins/sociable/images/diigo.png" title="Diigo" alt="Diigo" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://www.propeller.com/submit/?url=http%3A%2F%2Fitknowledgehub.com%2Fdata-management%2Fthe-concept-of-non-relational-analytics%2F" title="Propeller"><img src="http://itknowledgehub.com/wp-content/plugins/sociable/images/propeller.png" title="Propeller" alt="Propeller" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://www.stumbleupon.com/submit?url=http%3A%2F%2Fitknowledgehub.com%2Fdata-management%2Fthe-concept-of-non-relational-analytics%2F&amp;title=The%20concept%20of%20non-relational%20analytics" title="StumbleUpon"><img src="http://itknowledgehub.com/wp-content/plugins/sociable/images/stumbleupon.png" title="StumbleUpon" alt="StumbleUpon" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://faves.com/Authoring.aspx?u=http%3A%2F%2Fitknowledgehub.com%2Fdata-management%2Fthe-concept-of-non-relational-analytics%2F&amp;title=The%20concept%20of%20non-relational%20analytics" title="Faves"><img src="http://itknowledgehub.com/wp-content/plugins/sociable/images/bluedot.png" title="Faves" alt="Faves" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://www.mixx.com/submit?page_url=http%3A%2F%2Fitknowledgehub.com%2Fdata-management%2Fthe-concept-of-non-relational-analytics%2F&amp;title=The%20concept%20of%20non-relational%20analytics" title="Mixx"><img src="http://itknowledgehub.com/wp-content/plugins/sociable/images/mixx.png" title="Mixx" alt="Mixx" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://www.tumblr.com/share?v=3&amp;u=http%3A%2F%2Fitknowledgehub.com%2Fdata-management%2Fthe-concept-of-non-relational-analytics%2F&amp;t=The%20concept%20of%20non-relational%20analytics&amp;s=There%20is%20a%20lot%20of%20talk%20these%20days%20about%20relational%20vs.%20non-relational%20data.%20But%20what%20about%20analytics%3F%20Does%20it%20make%20sense%20to%20talk%20about%20relational%20and%20non-relational%20analytics%3F%0AI%20think%20it%20does.%20Historically%2C%20a%20lot%20of%20data%20analysis%20in%20the%20enterprise%20has%20been%20done%20with%20pure%20SQL.%20SQL-based%20analysis%20is%20a%20type%20of%20%E2%80%9Crelational%20analysis%2C%E2%80%9D%20which%20%5B...%5DShareThis" title="Tumblr"><img src="http://itknowledgehub.com/wp-content/plugins/sociable/images/tumblr.png" title="Tumblr" alt="Tumblr" class="sociable-hovers" /></a>


<br/><br/>
<p>Syndicated via RSS From: <a href="http://www.asterdata.com/blog" rel="nofollow">http://www.asterdata.com/blog</a></p>Get free <a href="http://itknowledgehub.com/white-papers/" style="text-decoration: none">
white papers</a> delivered direct to your inbox from IT Knowledge Hub! <a href="http://itknowledgehub.com/register-now/">Register now</a> for cutting edge webcasts, reports, and white papers in your area of expertise.]]></content:encoded>
			<wfw:commentRss>http://itknowledgehub.com/data-management/the-concept-of-non-relational-analytics/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>In-Memory Data Processing</title>
		<link>http://itknowledgehub.com/data-management/in-memory-data-processing/</link>
		<comments>http://itknowledgehub.com/data-management/in-memory-data-processing/#comments</comments>
		<pubDate>Wed, 23 Jun 2010 23:40:07 +0000</pubDate>
		<dc:creator>Tasso Argyros</dc:creator>
				<category><![CDATA[Data Management]]></category>
		<category><![CDATA[Data Warehouse]]></category>
		<category><![CDATA[Database]]></category>
		<category><![CDATA[analytics]]></category>
		<category><![CDATA[Data-Application Server]]></category>
		<category><![CDATA[MapReduce]]></category>

		<guid isPermaLink="false">http://www.asterdata.com/blog/index.php/2010/06/23/in-memory-data-processing/</guid>
		<description><![CDATA[Recently, a journalist called to ask about in-memory data processing, a very interesting subject.  I always thought that in-memory processing will be more and more important as memory prices keep falling drastically. In fact, these days you can get 128GB of memory into a single system for less than $5K plus the server cost, not [...]<p><a href="http://sharethis.com/item?&#38;wp=2.2.3&#38;publisher=cf684f86-aafe-420a-8a13-0d8ab76b31c0&#38;title=In-Memory+Data+Processing&#38;url=http%3A%2F%2Fwww.asterdata.com%2Fblog%2Findex.php%2F2010%2F06%2F23%2Fin-memory-data-processing%2F">ShareThis</a></p>]]></description>
			<content:encoded><![CDATA[<p>Recently, a journalist called to ask about in-memory data processing, a very interesting subject.  I always thought that in-memory processing will be more and more important as memory prices keep falling drastically. In fact, these days you can get 128GB of memory into a single system for less than $5K plus the server cost, not to mention that DDR3 and multiple memory controllers are giving a huge performance boost. And if you run software that can handle shared-nothing parallelism (MPP), your memory cost increases linearly, and systems with TBs of memory are possible.</p>
<p>So what do you do with all that memory? There are two classes of use cases that are emerging today. First is the case where you need to increase concurrent access to data with reduced latency. Tools like <a target="_blank" href="http://memcached.org/">memcached</a> offer in-memory caching that, used properly, can vastly improve latency and concurrency for large-scale OLTP applications like websites. Also the nice thing with object caching is that it scales well in a distributed way and people have build <a target="_blank" href="http://www.scribd.com/doc/4069180/Caching-Performance-Lessons-from-Facebook">TB-level caches</a>. Memory-only OLTP databases have started to emerge, such as <a target="_blank" href="http://www.voltdb.com">VoltDB</a>. And memory is used implicitly as a very important caching layer in open-source key-value products like <a target="_blank" href="http://project-voldemort.com/">Voldemort</a>. We should only expect memory to play a more and more important role here.</p>
<p>The second way to use memory is to gain &#8220;processing flexibility&#8221; when doing analytics. The idea is to throw your data into memory (however much it fits, of course) without spending much time thinking how to do that or what queries you’ll need to run. Because memory is so fast, most simple queries will be executed at interactive times and also concurrency is handled well. European upstart <a target="_blank" href="http://www.qlikview.com/">QlikView</a> exploits this fact to offer a memory-only BI solution which provides simple and fast BI reporting. The downside is its applicability to only 10s of GBs of data as <a target="_blank" href="http://www.dbms2.com/2010/06/12/the-underlying-technology-of-qlikview/">Curt Monash notes</a>.</p>
<p>By exploiting an MPP shared-nothing architecture, Aster Data has production clusters with TBs of total memory. Our software takes advantage of memory in two ways: first, it uses caching aggressively to ensure the most relevant data stays in memory; and when data is in memory, processing is much faster and more flexible. Secondly, MapReduce is a great way to utilize memory as it provides full flexibility to the programmer to use memory-focused data structures for data processing. In addition, Aster Data&#8217;s SQL-MapReduce provides tools to the user to encourage the development of memory-only MapReduce applications.</p>
<p>However, one shouldn&#8217;t fall into the trap of thinking that all analytics will be in-memory anytime soon. While memory is down to $30/GB, disk manufacturers have been busy increasing platter density and dropping their price to less than $0.06/GB. Given that the amount of data in the world grows faster than Moore&#8217;s law and memory, there will always be more data to be stored and analyzed than what fits into any amount of memory that an enterprise can use. In fact, most big data applications will have data sets that do not fit into memory because, while tools like memcached worry only about the present (e.g. current Facebook users), analytics need to worry about the past, as well – and that means much more data. So a multi-layer architecture will be the only cost-effective way of analyzing large amounts of data for some time.</p>
<p>One shouldn’t be discussing memory without mentioning solid-state disk products (like Aster Data partner company <a target="_blank" href="http://www.fusionio.com/products/iodrive/">Fusion-io</a>). SSDs are likely to make the surprise here given that their per-GB price is falling faster than disks (being a solid-state product that follows Moore&#8217;s law does help). In the next few years we’ll witness SSDs in read-intensive applications providing similar advantages to memory while accommodating much larger data sizes.</p>
<p><img src="http://feeds.feedburner.com/~r/AsterData/~4/k_SgMvLyi-Q" height="1" width="1"/></p>




	<a rel="nofollow"  target="_blank" href="http://digg.com/submit?phase=2&amp;url=http%3A%2F%2Fitknowledgehub.com%2Fdata-management%2Fin-memory-data-processing%2F&amp;title=In-Memory%20Data%20Processing&amp;bodytext=Recently%2C%20a%20journalist%20called%20to%20ask%20about%20in-memory%20data%20processing%2C%20a%20very%20interesting%20subject.%C2%A0%20I%20always%20thought%20that%20in-memory%20processing%20will%20be%20more%20and%20more%20important%20as%20memory%20prices%20keep%20falling%20drastically.%20In%20fact%2C%20these%20days%20you%20can%20get%20128GB%20of%20memory%20into%20a%20single%20system%20for%20less%20than%20%245K%20plus%20the%20server%20cost%2C%20not%20%5B...%5DShareThis" title="Digg"><img src="http://itknowledgehub.com/wp-content/plugins/sociable/images/digg.png" title="Digg" alt="Digg" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://www.facebook.com/share.php?u=http%3A%2F%2Fitknowledgehub.com%2Fdata-management%2Fin-memory-data-processing%2F&amp;t=In-Memory%20Data%20Processing" title="Facebook"><img src="http://itknowledgehub.com/wp-content/plugins/sociable/images/facebook.png" title="Facebook" alt="Facebook" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://buzz.yahoo.com/submit/?submitUrl=http%3A%2F%2Fitknowledgehub.com%2Fdata-management%2Fin-memory-data-processing%2F&amp;submitHeadline=In-Memory%20Data%20Processing&amp;submitSummary=Recently%2C%20a%20journalist%20called%20to%20ask%20about%20in-memory%20data%20processing%2C%20a%20very%20interesting%20subject.%C2%A0%20I%20always%20thought%20that%20in-memory%20processing%20will%20be%20more%20and%20more%20important%20as%20memory%20prices%20keep%20falling%20drastically.%20In%20fact%2C%20these%20days%20you%20can%20get%20128GB%20of%20memory%20into%20a%20single%20system%20for%20less%20than%20%245K%20plus%20the%20server%20cost%2C%20not%20%5B...%5DShareThis&amp;submitCategory=science&amp;submitAssetType=text" title="Yahoo! Buzz"><img src="http://itknowledgehub.com/wp-content/plugins/sociable/images/yahoobuzz.png" title="Yahoo! Buzz" alt="Yahoo! Buzz" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://twitter.com/home?status=In-Memory%20Data%20Processing%20-%20http%3A%2F%2Fitknowledgehub.com%2Fdata-management%2Fin-memory-data-processing%2F" title="Twitter"><img src="http://itknowledgehub.com/wp-content/plugins/sociable/images/twitter.png" title="Twitter" alt="Twitter" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://www.diigo.com/post?url=http%3A%2F%2Fitknowledgehub.com%2Fdata-management%2Fin-memory-data-processing%2F&amp;title=In-Memory%20Data%20Processing" title="Diigo"><img src="http://itknowledgehub.com/wp-content/plugins/sociable/images/diigo.png" title="Diigo" alt="Diigo" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://www.propeller.com/submit/?url=http%3A%2F%2Fitknowledgehub.com%2Fdata-management%2Fin-memory-data-processing%2F" title="Propeller"><img src="http://itknowledgehub.com/wp-content/plugins/sociable/images/propeller.png" title="Propeller" alt="Propeller" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://www.stumbleupon.com/submit?url=http%3A%2F%2Fitknowledgehub.com%2Fdata-management%2Fin-memory-data-processing%2F&amp;title=In-Memory%20Data%20Processing" title="StumbleUpon"><img src="http://itknowledgehub.com/wp-content/plugins/sociable/images/stumbleupon.png" title="StumbleUpon" alt="StumbleUpon" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://faves.com/Authoring.aspx?u=http%3A%2F%2Fitknowledgehub.com%2Fdata-management%2Fin-memory-data-processing%2F&amp;title=In-Memory%20Data%20Processing" title="Faves"><img src="http://itknowledgehub.com/wp-content/plugins/sociable/images/bluedot.png" title="Faves" alt="Faves" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://www.mixx.com/submit?page_url=http%3A%2F%2Fitknowledgehub.com%2Fdata-management%2Fin-memory-data-processing%2F&amp;title=In-Memory%20Data%20Processing" title="Mixx"><img src="http://itknowledgehub.com/wp-content/plugins/sociable/images/mixx.png" title="Mixx" alt="Mixx" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://www.tumblr.com/share?v=3&amp;u=http%3A%2F%2Fitknowledgehub.com%2Fdata-management%2Fin-memory-data-processing%2F&amp;t=In-Memory%20Data%20Processing&amp;s=Recently%2C%20a%20journalist%20called%20to%20ask%20about%20in-memory%20data%20processing%2C%20a%20very%20interesting%20subject.%C2%A0%20I%20always%20thought%20that%20in-memory%20processing%20will%20be%20more%20and%20more%20important%20as%20memory%20prices%20keep%20falling%20drastically.%20In%20fact%2C%20these%20days%20you%20can%20get%20128GB%20of%20memory%20into%20a%20single%20system%20for%20less%20than%20%245K%20plus%20the%20server%20cost%2C%20not%20%5B...%5DShareThis" title="Tumblr"><img src="http://itknowledgehub.com/wp-content/plugins/sociable/images/tumblr.png" title="Tumblr" alt="Tumblr" class="sociable-hovers" /></a>


<br/><br/>
<p>Syndicated via RSS From: <a href="http://www.asterdata.com/blog" rel="nofollow">http://www.asterdata.com/blog</a></p>Get free <a href="http://itknowledgehub.com/white-papers/" style="text-decoration: none">
white papers</a> delivered direct to your inbox from IT Knowledge Hub! <a href="http://itknowledgehub.com/register-now/">Register now</a> for cutting edge webcasts, reports, and white papers in your area of expertise.]]></content:encoded>
			<wfw:commentRss>http://itknowledgehub.com/data-management/in-memory-data-processing/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Should Intel love MapReduce?</title>
		<link>http://itknowledgehub.com/data-management/should-intel-love-mapreduce/</link>
		<comments>http://itknowledgehub.com/data-management/should-intel-love-mapreduce/#comments</comments>
		<pubDate>Wed, 23 Jun 2010 05:55:29 +0000</pubDate>
		<dc:creator>Tasso Argyros</dc:creator>
				<category><![CDATA[Data Management]]></category>
		<category><![CDATA[Data Warehouse]]></category>
		<category><![CDATA[Data-Application Server]]></category>
		<category><![CDATA[MapReduce]]></category>
		<category><![CDATA[scalability]]></category>

		<guid isPermaLink="false">http://www.asterdata.com/blog/index.php/2010/06/22/should-intel-love-mapreduce/</guid>
		<description><![CDATA[Rumors abound that Intel is “baking” the successor of the very successful Nehalem CPU architecture, codenamed Westmere. It comes with an impressive spec: 10 CPU cores (supporting 20 concurrent threads) packed in a single chip. You can soon expect to see 40 cores in middle range 4-socket servers – a number hard to imagine just [...]<p><a href="http://sharethis.com/item?&#38;wp=2.2.3&#38;publisher=cf684f86-aafe-420a-8a13-0d8ab76b31c0&#38;title=Should+Intel+love+MapReduce%3F&#38;url=http%3A%2F%2Fwww.asterdata.com%2Fblog%2Findex.php%2F2010%2F06%2F22%2Fshould-intel-love-mapreduce%2F">ShareThis</a></p>]]></description>
			<content:encoded><![CDATA[<p><a target="_blank" href="http://www.pcworld.com/article/199412/intels_westmereex_chip_to_include_10_cores.html">Rumors abound</a> that Intel is “baking” the successor of the very successful Nehalem CPU architecture, codenamed Westmere. It comes with an impressive spec: 10 CPU cores (supporting 20 concurrent threads) packed in a single chip. You can soon expect to see <strong>40 cores in middle range 4-socket servers</strong> – a number hard to imagine just five years ago.</p>
<p>We’re definitely talking about a different era. In the old days, you could barely fit a single core in a chip. (I still remember 15 years ago when I had to buy and install a separate math co-processor on my <a target="_blank" href="http://en.wikipedia.org/wiki/Macintosh_LC">Mac LC</a> to run <a target="_blank" href="http://www.google.com/google-d-s/spreadsheets/">Microsoft Excel</a> and <a target="_blank" href="http://www.wolfram.com/products/mathematica/index.html">Mathematica</a>.) And with the hardware, software has to change, too. In fact, <strong>modern software means software that can handle parallelism</strong>. This is what makes <a target="_blank" href="http://mapreduce.org/">MapReduce </a>such an essential and timely tool for big data applications. MapReduce’s purpose in life is to simplify data and processing parallelism for big data applications. It gives ample freedom to the programmer on how to do things locally; and takes over when data needs to be communicated across processes/cores/servers, thus evaporating a lot of the parallelism complexity.</p>
<p>Once someone designs their software and data to operate in a parallelized environment using MapReduce, gains will come on multiple levels. Not only will MapReduce help your analytical applications scale across a cluster of servers with terabytes of data, it will also exploit the billions of transistors and the 10s of CPU cores <em>inside </em>each server. The best part: <strong>the programmer doesn’t need to think about the difference</strong>. </p>
<p>As an example, consider this <a target="_blank" href="http://citeseerx.ist.psu.edu/viewdoc/download?doi=10.1.1.71.4156&#038;rep=rep1&#038;type=pdf">great paper </a>out of Stanford discusses MapReduce implementations of popular Machine Learning algorithms. The Stanford researchers considered MapReduce as a way of “porting” these algorithms (traditionally implemented to run in a single CPU) to a multi-core architecture. But, of course, the same MapReduce implementations can be used to scale these algorithms across a distributed cluster as well. </p>
<p>Hardware has changed – MPP, shared-nothing, commodity servers, and, of course, multi-core. In this new world MapReduce is Software’s response for big data processing. Intel and Westmere have just found an unexpected friend.</p>
<p><img src="http://feeds.feedburner.com/~r/AsterData/~4/2lyOeqz6eqs" height="1" width="1"/></p>




	<a rel="nofollow"  target="_blank" href="http://digg.com/submit?phase=2&amp;url=http%3A%2F%2Fitknowledgehub.com%2Fdata-management%2Fshould-intel-love-mapreduce%2F&amp;title=Should%20Intel%20love%20MapReduce%3F&amp;bodytext=Rumors%20abound%20that%20Intel%20is%20%E2%80%9Cbaking%E2%80%9D%20the%20successor%20of%20the%20very%20successful%20Nehalem%20CPU%20architecture%2C%20codenamed%20Westmere.%20It%20comes%20with%20an%20impressive%20spec%3A%2010%20CPU%20cores%20%28supporting%2020%20concurrent%20threads%29%20packed%20in%20a%20single%20chip.%20You%20can%20soon%20expect%20to%20see%2040%20cores%20in%20middle%20range%204-socket%20servers%20%E2%80%93%20a%20number%20hard%20to%20imagine%20just%20%5B...%5DShareThis" title="Digg"><img src="http://itknowledgehub.com/wp-content/plugins/sociable/images/digg.png" title="Digg" alt="Digg" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://www.facebook.com/share.php?u=http%3A%2F%2Fitknowledgehub.com%2Fdata-management%2Fshould-intel-love-mapreduce%2F&amp;t=Should%20Intel%20love%20MapReduce%3F" title="Facebook"><img src="http://itknowledgehub.com/wp-content/plugins/sociable/images/facebook.png" title="Facebook" alt="Facebook" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://buzz.yahoo.com/submit/?submitUrl=http%3A%2F%2Fitknowledgehub.com%2Fdata-management%2Fshould-intel-love-mapreduce%2F&amp;submitHeadline=Should%20Intel%20love%20MapReduce%3F&amp;submitSummary=Rumors%20abound%20that%20Intel%20is%20%E2%80%9Cbaking%E2%80%9D%20the%20successor%20of%20the%20very%20successful%20Nehalem%20CPU%20architecture%2C%20codenamed%20Westmere.%20It%20comes%20with%20an%20impressive%20spec%3A%2010%20CPU%20cores%20%28supporting%2020%20concurrent%20threads%29%20packed%20in%20a%20single%20chip.%20You%20can%20soon%20expect%20to%20see%2040%20cores%20in%20middle%20range%204-socket%20servers%20%E2%80%93%20a%20number%20hard%20to%20imagine%20just%20%5B...%5DShareThis&amp;submitCategory=science&amp;submitAssetType=text" title="Yahoo! Buzz"><img src="http://itknowledgehub.com/wp-content/plugins/sociable/images/yahoobuzz.png" title="Yahoo! Buzz" alt="Yahoo! Buzz" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://twitter.com/home?status=Should%20Intel%20love%20MapReduce%3F%20-%20http%3A%2F%2Fitknowledgehub.com%2Fdata-management%2Fshould-intel-love-mapreduce%2F" title="Twitter"><img src="http://itknowledgehub.com/wp-content/plugins/sociable/images/twitter.png" title="Twitter" alt="Twitter" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://www.diigo.com/post?url=http%3A%2F%2Fitknowledgehub.com%2Fdata-management%2Fshould-intel-love-mapreduce%2F&amp;title=Should%20Intel%20love%20MapReduce%3F" title="Diigo"><img src="http://itknowledgehub.com/wp-content/plugins/sociable/images/diigo.png" title="Diigo" alt="Diigo" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://www.propeller.com/submit/?url=http%3A%2F%2Fitknowledgehub.com%2Fdata-management%2Fshould-intel-love-mapreduce%2F" title="Propeller"><img src="http://itknowledgehub.com/wp-content/plugins/sociable/images/propeller.png" title="Propeller" alt="Propeller" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://www.stumbleupon.com/submit?url=http%3A%2F%2Fitknowledgehub.com%2Fdata-management%2Fshould-intel-love-mapreduce%2F&amp;title=Should%20Intel%20love%20MapReduce%3F" title="StumbleUpon"><img src="http://itknowledgehub.com/wp-content/plugins/sociable/images/stumbleupon.png" title="StumbleUpon" alt="StumbleUpon" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://faves.com/Authoring.aspx?u=http%3A%2F%2Fitknowledgehub.com%2Fdata-management%2Fshould-intel-love-mapreduce%2F&amp;title=Should%20Intel%20love%20MapReduce%3F" title="Faves"><img src="http://itknowledgehub.com/wp-content/plugins/sociable/images/bluedot.png" title="Faves" alt="Faves" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://www.mixx.com/submit?page_url=http%3A%2F%2Fitknowledgehub.com%2Fdata-management%2Fshould-intel-love-mapreduce%2F&amp;title=Should%20Intel%20love%20MapReduce%3F" title="Mixx"><img src="http://itknowledgehub.com/wp-content/plugins/sociable/images/mixx.png" title="Mixx" alt="Mixx" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://www.tumblr.com/share?v=3&amp;u=http%3A%2F%2Fitknowledgehub.com%2Fdata-management%2Fshould-intel-love-mapreduce%2F&amp;t=Should%20Intel%20love%20MapReduce%3F&amp;s=Rumors%20abound%20that%20Intel%20is%20%E2%80%9Cbaking%E2%80%9D%20the%20successor%20of%20the%20very%20successful%20Nehalem%20CPU%20architecture%2C%20codenamed%20Westmere.%20It%20comes%20with%20an%20impressive%20spec%3A%2010%20CPU%20cores%20%28supporting%2020%20concurrent%20threads%29%20packed%20in%20a%20single%20chip.%20You%20can%20soon%20expect%20to%20see%2040%20cores%20in%20middle%20range%204-socket%20servers%20%E2%80%93%20a%20number%20hard%20to%20imagine%20just%20%5B...%5DShareThis" title="Tumblr"><img src="http://itknowledgehub.com/wp-content/plugins/sociable/images/tumblr.png" title="Tumblr" alt="Tumblr" class="sociable-hovers" /></a>


<br/><br/>
<p>Syndicated via RSS From: <a href="http://www.asterdata.com/blog" rel="nofollow">http://www.asterdata.com/blog</a></p>Get free <a href="http://itknowledgehub.com/white-papers/" style="text-decoration: none">
white papers</a> delivered direct to your inbox from IT Knowledge Hub! <a href="http://itknowledgehub.com/register-now/">Register now</a> for cutting edge webcasts, reports, and white papers in your area of expertise.]]></content:encoded>
			<wfw:commentRss>http://itknowledgehub.com/data-management/should-intel-love-mapreduce/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>HP StorageWorks D2D4000 Backup System wins High Honors in Data Protection</title>
		<link>http://itknowledgehub.com/data-management/hp-storageworks-d2d4000-backup-system-wins-high-honors-data-protection/</link>
		<comments>http://itknowledgehub.com/data-management/hp-storageworks-d2d4000-backup-system-wins-high-honors-data-protection/#comments</comments>
		<pubDate>Fri, 18 Jun 2010 16:46:56 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Data Management]]></category>
		<category><![CDATA[Data Warehouse]]></category>
		<category><![CDATA[data backup]]></category>
		<category><![CDATA[data duplication]]></category>
		<category><![CDATA[free white papers]]></category>
		<category><![CDATA[hp]]></category>
		<category><![CDATA[Software White Papers]]></category>
		<category><![CDATA[White Paper]]></category>

		<guid isPermaLink="false">http://itknowledgehub.com/?p=20895</guid>
		<description><![CDATA[
HP StorageWorks D2D4000 Backup System wins High Honors in Data Protection
Montana State University (MSU) Bozeman is the main campus of the Montana State University System, and the state’s land grant university. The 1,170-acre MSU Bozeman campus sits at an elevation of 4,900 feet on the south side of the scenic city. The Information Technology Center [...]]]></description>
			<content:encoded><![CDATA[<p><img class="alignnone size-full wp-image-18132" title="hp-logo" src="http://itknowledgehub.com/wp-content/uploads/2009/12/hp-logo.jpg" alt="hp-logo" width="146" height="92" /></p>
<p><strong>HP StorageWorks D2D4000 Backup System wins High Honors in Data Protection</strong></p>
<p>Montana State University (MSU) Bozeman is the main campus of the Montana State University System, and the state’s land grant university. The 1,170-acre MSU Bozeman campus sits at an elevation of 4,900 feet on the south side of the scenic city. The Information Technology Center (ITC) on the Bozeman campus is the main computing center for the university system. While individual university departments have their own mail servers and local files, the ITC is responsible for maintaining critical university-wide databases and mail servers.</p>
<p>Availability of services is the No. 1 business level goal for the ITC. “Four different campuses around the state are dependent on our databases,” says Mike Hall, UNIX® Systems Administrator. “They are out of business without those databases. We have all the student transcripts and employee information, and hear about it quickly if that information is not available. But with a solid disaster-recovery system in place, we can still do business even if we have a catastrophe.</p>
<p><strong>Complete the form below to access this White Paper from HP:</strong></p>
[contact-form]




	<a rel="nofollow"  target="_blank" href="http://digg.com/submit?phase=2&amp;url=http%3A%2F%2Fitknowledgehub.com%2Fdata-management%2Fhp-storageworks-d2d4000-backup-system-wins-high-honors-data-protection%2F&amp;title=HP%20StorageWorks%20D2D4000%20Backup%20System%20wins%20High%20Honors%20in%20Data%20Protection&amp;bodytext=%0D%0A%0D%0AHP%20StorageWorks%20D2D4000%20Backup%20System%20wins%20High%20Honors%20in%20Data%20Protection%0D%0A%0D%0AMontana%20State%20University%20%28MSU%29%20Bozeman%20is%20the%20main%20campus%20of%20the%20Montana%20State%20University%20System%2C%20and%20the%20state%E2%80%99s%20land%20grant%20university.%20The%201%2C170-acre%20MSU%20Bozeman%20cam" title="Digg"><img src="http://itknowledgehub.com/wp-content/plugins/sociable/images/digg.png" title="Digg" alt="Digg" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://www.facebook.com/share.php?u=http%3A%2F%2Fitknowledgehub.com%2Fdata-management%2Fhp-storageworks-d2d4000-backup-system-wins-high-honors-data-protection%2F&amp;t=HP%20StorageWorks%20D2D4000%20Backup%20System%20wins%20High%20Honors%20in%20Data%20Protection" title="Facebook"><img src="http://itknowledgehub.com/wp-content/plugins/sociable/images/facebook.png" title="Facebook" alt="Facebook" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://buzz.yahoo.com/submit/?submitUrl=http%3A%2F%2Fitknowledgehub.com%2Fdata-management%2Fhp-storageworks-d2d4000-backup-system-wins-high-honors-data-protection%2F&amp;submitHeadline=HP%20StorageWorks%20D2D4000%20Backup%20System%20wins%20High%20Honors%20in%20Data%20Protection&amp;submitSummary=%0D%0A%0D%0AHP%20StorageWorks%20D2D4000%20Backup%20System%20wins%20High%20Honors%20in%20Data%20Protection%0D%0A%0D%0AMontana%20State%20University%20%28MSU%29%20Bozeman%20is%20the%20main%20campus%20of%20the%20Montana%20State%20University%20System%2C%20and%20the%20state%E2%80%99s%20land%20grant%20university.%20The%201%2C170-acre%20MSU%20Bozeman%20cam&amp;submitCategory=science&amp;submitAssetType=text" title="Yahoo! Buzz"><img src="http://itknowledgehub.com/wp-content/plugins/sociable/images/yahoobuzz.png" title="Yahoo! Buzz" alt="Yahoo! Buzz" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://twitter.com/home?status=HP%20StorageWorks%20D2D4000%20Backup%20System%20wins%20High%20Honors%20in%20Data%20Protection%20-%20http%3A%2F%2Fitknowledgehub.com%2Fdata-management%2Fhp-storageworks-d2d4000-backup-system-wins-high-honors-data-protection%2F" title="Twitter"><img src="http://itknowledgehub.com/wp-content/plugins/sociable/images/twitter.png" title="Twitter" alt="Twitter" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://www.diigo.com/post?url=http%3A%2F%2Fitknowledgehub.com%2Fdata-management%2Fhp-storageworks-d2d4000-backup-system-wins-high-honors-data-protection%2F&amp;title=HP%20StorageWorks%20D2D4000%20Backup%20System%20wins%20High%20Honors%20in%20Data%20Protection" title="Diigo"><img src="http://itknowledgehub.com/wp-content/plugins/sociable/images/diigo.png" title="Diigo" alt="Diigo" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://www.propeller.com/submit/?url=http%3A%2F%2Fitknowledgehub.com%2Fdata-management%2Fhp-storageworks-d2d4000-backup-system-wins-high-honors-data-protection%2F" title="Propeller"><img src="http://itknowledgehub.com/wp-content/plugins/sociable/images/propeller.png" title="Propeller" alt="Propeller" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://www.stumbleupon.com/submit?url=http%3A%2F%2Fitknowledgehub.com%2Fdata-management%2Fhp-storageworks-d2d4000-backup-system-wins-high-honors-data-protection%2F&amp;title=HP%20StorageWorks%20D2D4000%20Backup%20System%20wins%20High%20Honors%20in%20Data%20Protection" title="StumbleUpon"><img src="http://itknowledgehub.com/wp-content/plugins/sociable/images/stumbleupon.png" title="StumbleUpon" alt="StumbleUpon" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://faves.com/Authoring.aspx?u=http%3A%2F%2Fitknowledgehub.com%2Fdata-management%2Fhp-storageworks-d2d4000-backup-system-wins-high-honors-data-protection%2F&amp;title=HP%20StorageWorks%20D2D4000%20Backup%20System%20wins%20High%20Honors%20in%20Data%20Protection" title="Faves"><img src="http://itknowledgehub.com/wp-content/plugins/sociable/images/bluedot.png" title="Faves" alt="Faves" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://www.mixx.com/submit?page_url=http%3A%2F%2Fitknowledgehub.com%2Fdata-management%2Fhp-storageworks-d2d4000-backup-system-wins-high-honors-data-protection%2F&amp;title=HP%20StorageWorks%20D2D4000%20Backup%20System%20wins%20High%20Honors%20in%20Data%20Protection" title="Mixx"><img src="http://itknowledgehub.com/wp-content/plugins/sociable/images/mixx.png" title="Mixx" alt="Mixx" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://www.tumblr.com/share?v=3&amp;u=http%3A%2F%2Fitknowledgehub.com%2Fdata-management%2Fhp-storageworks-d2d4000-backup-system-wins-high-honors-data-protection%2F&amp;t=HP%20StorageWorks%20D2D4000%20Backup%20System%20wins%20High%20Honors%20in%20Data%20Protection&amp;s=%0D%0A%0D%0AHP%20StorageWorks%20D2D4000%20Backup%20System%20wins%20High%20Honors%20in%20Data%20Protection%0D%0A%0D%0AMontana%20State%20University%20%28MSU%29%20Bozeman%20is%20the%20main%20campus%20of%20the%20Montana%20State%20University%20System%2C%20and%20the%20state%E2%80%99s%20land%20grant%20university.%20The%201%2C170-acre%20MSU%20Bozeman%20cam" title="Tumblr"><img src="http://itknowledgehub.com/wp-content/plugins/sociable/images/tumblr.png" title="Tumblr" alt="Tumblr" class="sociable-hovers" /></a>


<br/><br/>]]></content:encoded>
			<wfw:commentRss>http://itknowledgehub.com/data-management/hp-storageworks-d2d4000-backup-system-wins-high-honors-data-protection/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
