<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	xmlns:georss="http://www.georss.org/georss" xmlns:geo="http://www.w3.org/2003/01/geo/wgs84_pos#" xmlns:media="http://search.yahoo.com/mrss/"
	>

<channel>
	<title>CloverETL&#039;s Blog &#187; performance</title>
	<atom:link href="http://blog.cloveretl.com/tag/performance/feed/" rel="self" type="application/rss+xml" />
	<link>http://blog.cloveretl.com</link>
	<description>Life, the Universe, CloverETL and everything ...</description>
	<lastBuildDate>Thu, 15 Jul 2010 14:12:27 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.com/</generator>
<cloud domain='blog.cloveretl.com' port='80' path='/?rsscloud=notify' registerProcedure='' protocol='http-post' />
<image>
		<url>http://www.gravatar.com/blavatar/dd4c2411bcdf90b36e88bda58e3fce7c?s=96&#038;d=http://s2.wp.com/i/buttonw-com.png</url>
		<title>CloverETL&#039;s Blog &#187; performance</title>
		<link>http://blog.cloveretl.com</link>
	</image>
	<atom:link rel="search" type="application/opensearchdescription+xml" href="http://blog.cloveretl.com/osd.xml" title="CloverETL&#039;s Blog" />
	<atom:link rel='hub' href='http://blog.cloveretl.com/?pushpress=hub'/>
		<item>
		<title>DataDirect&#8217;s OracleDB JDBC driver speed test</title>
		<link>http://blog.cloveretl.com/2010/01/12/data-direct-oracle-driver-speed-test/</link>
		<comments>http://blog.cloveretl.com/2010/01/12/data-direct-oracle-driver-speed-test/#comments</comments>
		<pubDate>Tue, 12 Jan 2010 12:39:36 +0000</pubDate>
		<dc:creator>Agata Vackova</dc:creator>
				<category><![CDATA[Using CloverETL]]></category>
		<category><![CDATA[bulkloader]]></category>
		<category><![CDATA[CloverETL]]></category>
		<category><![CDATA[data direct]]></category>
		<category><![CDATA[jdbc]]></category>
		<category><![CDATA[oracle]]></category>
		<category><![CDATA[performance]]></category>
		<category><![CDATA[sqlldr]]></category>

		<guid isPermaLink="false">http://blog.cloveretl.com/?p=345</guid>
		<description><![CDATA[Purpose Compare the speed of data loading into Oracle database (Oracle Database 11g Release 11.1.0.6.0 – Enterprise Edition) with Oracle corp. JDBC driver, DataDirect JDBC Oracle driver and direct data loading (OracleDataWriter component – sqlldr utility) in CloverETL. Test description Graph used for testing: The above graph loads data into database table that contains 3 [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=blog.cloveretl.com&blog=7070972&post=345&subd=cloveretl&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<h2>Purpose</h2>
<p><!-- 		@page { margin: 2cm } 		P { margin-bottom: 0.21cm } -->Compare the speed of data loading into Oracle database (Oracle Database 11g Release 11.1.0.6.0 – Enterprise Edition) with Oracle corp. JDBC driver,<a href="http://www.datadirect.com/products/jdbc/oracle/index.ssp"> DataDirect JDBC Oracle driver</a> and direct data loading (OracleDataWriter component – <strong>sqlldr</strong> utility) in CloverETL.</p>
<p><!-- 		@page { margin: 2cm } 		P { margin-bottom: 0.21cm } 		H2 { margin-bottom: 0.21cm } 		H2.western { font-family: "Arial", sans-serif; font-size: 14pt; font-style: italic } 		H2.cjk { font-family: "Arial", sans-serif; font-size: 14pt; font-style: italic } 		H2.ctl { font-family: "Arial", sans-serif; font-size: 14pt; font-style: italic } --></p>
<h2>Test description</h2>
<p><!-- 		@page { margin: 2cm } 		P { margin-bottom: 0.21cm } 		H3 { margin-bottom: 0.21cm } 		H3.western { font-family: "Arial", sans-serif } 		H3.cjk { font-family: "Arial", sans-serif } 		H3.ctl { font-family: "Arial", sans-serif } --></p>
<h3>Graph used for testing:</h3>
<p><a href="http://cloveretl.files.wordpress.com/2010/01/dddbload.png"><img class="alignnone size-medium wp-image-346" title="DDdbLoad" src="http://cloveretl.files.wordpress.com/2010/01/dddbload.png?w=286&#038;h=300" alt="DDdbLoad.grf" width="286" height="300" /></a></p>
<p><!-- 		@page { margin: 2cm } 		P { margin-bottom: 0.21cm } 		H2 { margin-bottom: 0.21cm } 		H2.western { font-family: "Arial", sans-serif; font-size: 14pt; font-style: italic } 		H2.cjk { font-family: "Arial", sans-serif; font-size: 14pt; font-style: italic } 		H2.ctl { font-family: "Arial", sans-serif; font-size: 14pt; font-style: italic } -->The above graph loads data into database table that contains 3 number columns and 127 varchar columns.</p>
<p>Database table for storing data is truncated before each data loading – DBExecute components, each with query: TRUNCATE TABLE dd_test1 REUSE STORAGE</p>
<p><em>Phase 1:</em> loading data with DDBulkLoad (DataDirect) object from csv file (loader.load(file))</p>
<p><em>Phase 3:</em> loading data with DDBulkLoad (DataDirect) object from ResultSet (loader.load(resultSet)) – created ResultSet implementation, that reads data from DataRecord (read from the edge).</p>
<p><em>Phase 4:</em> loading data with DBOutputTable with Oracle corp&#8217;s  JDBC driver:</p>
<pre>Manifest-Version: 1.0
Specification-Title:    Oracle JDBC driver classes for use with JDK14
Sealed: true
Created-By: 1.4.2_08 (Sun Microsystems Inc.)
Implementation-Title:   ojdbc14.jar
Specification-Vendor:   Oracle Corporation
Specification-Version:  Oracle JDBC Driver version - "10.2.0.1.0XE"
Implementation-Version: Oracle JDBC Driver version - "10.2.0.1.0XE"
Implementation-Vendor:  Oracle Corporation
Implementation-Time:    Wed Jan 25 01:28:31 2006</pre>
<p><em>Phase 7:</em> loading data with DBOutputTable with DataDirect Oracle JDBC driver – enabled bulk load feature</p>
<p><em>Phase 9</em>: loading data with OracleDataWriter component from csv file (sqlldr utility)</p>
<p><em>Phase 11: </em>loading data with OracleDataWriter component from edge (sqlldr utility)</p>
<h2>Test processing</h2>
<p>Graph run 3 times for 10,000,000 records with default DataDirect settings.</p>
<p>Graph run 3 times for 1,000,000 records with default DataDirect settings.</p>
<p>Graph run 3 times for 1,000,000 records with following settings:</p>
<p><a href="http://cloveretl.files.wordpress.com/2010/01/connectionproperties.png"><img class="alignnone size-medium wp-image-347" title="Connection Properties" src="http://cloveretl.files.wordpress.com/2010/01/connectionproperties.png?w=215&#038;h=300" alt="" width="215" height="300" /></a></p>
<p><!-- 		@page { margin: 2cm } 		P { margin-bottom: 0.21cm } 		H2 { margin-bottom: 0.21cm } 		H2.western { font-family: "Arial", sans-serif; font-size: 14pt; font-style: italic } 		H2.cjk { font-family: "Arial", sans-serif; font-size: 14pt; font-style: italic } 		H2.ctl { font-family: "Arial", sans-serif; font-size: 14pt; font-style: italic } 		H3 { margin-bottom: 0.21cm } 		H3.western { font-family: "Arial", sans-serif } 		H3.cjk { font-family: "Arial", sans-serif } 		H3.ctl { font-family: "Arial", sans-serif } --></p>
<h2>Test results</h2>
<p>Results in seconds.</p>
<h3>1,000,000 records with default DataDirect settings:</h3>
<p><em>Phase 1:</em> 178, 167, 132 – min: 132, max: 178, average:  159</p>
<p><em>Phase 3:</em> 128, 166, 152 – min: 128, max: 166, average:  149</p>
<p><em>Phase 5:</em> 228, 246, 290 – min: 228, max: 290, average:  255</p>
<p><em>Phase 7</em>: 176, 170, 239 – min: 170, max: 239, average:  195</p>
<p><em>Phase 9:</em> 44, 45, 56 – min: 44, max: 56, average: 48</p>
<p><em>Phase 11:</em> 104, 95, 106 – min: 95, max: 104, average: 102</p>
<h3>1,000,000 records with custom settings:</h3>
<p><em>Phase 1:</em> 163, 152, 142 – min: 142, max: 163, average:  152</p>
<p><em>Phase 3:</em> 166, 133, 134 – min: 133, max: 166, average:  144</p>
<p><em>Phase 5:</em> 278, 263, 260 – min: 260, max: 278, average:  267</p>
<p><em>Phase 7: </em>239, 172, 209 – min: 172, max: 239, average:  207</p>
<h3>10,000,000 records with default DataDirect settings:</h3>
<p><em>Phase 1:</em> 1553, 1818, 1352 – min: 1352, max: 1818, average:  1574</p>
<p><em>Phase 3: </em>1475, 1299, 1298 – min: 1298, max: 1475, average:  1357</p>
<p><em>Phase 5:</em> 3041, 2592, 2550 – min: 2550, max: 3041, average:  2728</p>
<p><em>Phase 7: </em>1824, 1623, 1722 – min: 1722, max: 1824, average:  1723</p>
<p><em>Phase 9: </em>404, 432, 472 – min: 404, max: 472, average: 436</p>
<p><em>Phase 11: </em>1096, 975, 1012 – min: 975, max: 1096, average: 1028</p>
<h2><strong>Summary</strong></h2>
<p>Loading data was slowest when DBOutputTable with original Oracle corp. driver was used. All loadings with DataDirect driver were faster than with Oracle corp. driver but the usage of DDBulkLoad object (DataDirect) plainly increases the speed of loading data in comparison with setting <em>EnableBulkLoad=true</em> and using DBOutputTable. The results for loading data from csv file and edge (result set) are very similar with slight predomination of ResultSet method. All three methods with DataDirect driver usage, get to more steady execution times with number of records to load.</p>
<p>The fastest way of loading data is unquestionably direct data loading with <strong>sqlldr</strong> utility. Even when inter-storing data in pipe, the <strong>sqlldr</strong> utility is about 50% faster than any other method, but is less convenient.<br />
<a href="http://cloveretl.files.wordpress.com/2010/01/graph1.png"><img class="alignnone size-medium wp-image-346" title="1,000,000 records" src="http://cloveretl.files.wordpress.com/2010/01/graph1.png?w=744&#038;h=196" alt="1,000,000 records" width="744" height="196" /></a><br />
﻿﻿<a href="http://cloveretl.files.wordpress.com/2010/01/graph2.png"><img class="alignnone size-medium wp-image-346" title="10,000,000 records" src="http://cloveretl.files.wordpress.com/2010/01/graph2.png?w=744&#038;h=196" alt="10,000,000 records" width="744" height="196" /></a></p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/cloveretl.wordpress.com/345/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/cloveretl.wordpress.com/345/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/cloveretl.wordpress.com/345/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/cloveretl.wordpress.com/345/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/cloveretl.wordpress.com/345/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/cloveretl.wordpress.com/345/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/cloveretl.wordpress.com/345/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/cloveretl.wordpress.com/345/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/cloveretl.wordpress.com/345/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/cloveretl.wordpress.com/345/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=blog.cloveretl.com&blog=7070972&post=345&subd=cloveretl&ref=&feed=1" />]]></content:encoded>
			<wfw:commentRss>http://blog.cloveretl.com/2010/01/12/data-direct-oracle-driver-speed-test/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/934c88184df6c0034450ae00a1695ee8?s=96&#38;d=http%3A%2F%2F1.gravatar.com%2Favatar%2Fad516503a11cd5ca435acc9bb6523536%3Fs%3D96&#38;r=G" medium="image">
			<media:title type="html">agad</media:title>
		</media:content>

		<media:content url="http://cloveretl.files.wordpress.com/2010/01/dddbload.png?w=286" medium="image">
			<media:title type="html">DDdbLoad</media:title>
		</media:content>

		<media:content url="http://cloveretl.files.wordpress.com/2010/01/connectionproperties.png?w=215" medium="image">
			<media:title type="html">Connection Properties</media:title>
		</media:content>

		<media:content url="http://cloveretl.files.wordpress.com/2010/01/graph1.png" medium="image">
			<media:title type="html">1,000,000 records</media:title>
		</media:content>

		<media:content url="http://cloveretl.files.wordpress.com/2010/01/graph2.png?w=286" medium="image">
			<media:title type="html">10,000,000 records</media:title>
		</media:content>
	</item>
		<item>
		<title>ParallelReader Versus Competitors Finish</title>
		<link>http://blog.cloveretl.com/2009/12/09/parallelreader-versus-competitors-finish/</link>
		<comments>http://blog.cloveretl.com/2009/12/09/parallelreader-versus-competitors-finish/#comments</comments>
		<pubDate>Wed, 09 Dec 2009 15:09:09 +0000</pubDate>
		<dc:creator>Petr Uher</dc:creator>
				<category><![CDATA[Using CloverETL]]></category>
		<category><![CDATA[performance]]></category>
		<category><![CDATA[comparison]]></category>
		<category><![CDATA[ParallelReader]]></category>
		<category><![CDATA[talend]]></category>
		<category><![CDATA[pentaho]]></category>
		<category><![CDATA[CloverETL]]></category>

		<guid isPermaLink="false">http://blog.cloveretl.com/?p=319</guid>
		<description><![CDATA[As I have promised I bring you a complex comparison of ETL tools: CloverETL, Talend and Pentaho. Short summary of my previous posts: For testing I used two transformations based on TPCH test and the input data generated by dbgen utility. The transformations were run on my laptop with Windows Vista Home Premium. For detail [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=blog.cloveretl.com&blog=7070972&post=319&subd=cloveretl&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<p>As I have promised I bring you a complex comparison of ETL tools: CloverETL, Talend and Pentaho.</p>
<p>Short summary of my previous posts: For testing I used two transformations based on TPCH test and the input data generated by dbgen utility. The transformations were run on my laptop with Windows Vista Home Premium. For detail information see <a href="http://blog.cloveretl.com/2009/10/26/parallelreader-versus-competitors/">part 1</a> and <a href="http://blog.cloveretl.com/2009/11/11/parallelreader-versus-competitors-part-2/">part 2</a>.</p>
<p><strong>New testing:</strong><br />
To ensure my comparison a full complexity, all tools were tested as &#8220;desktop&#8221; and &#8220;enterprise&#8221; ETL tools. The &#8220;desktop&#8221; tools were running on laptop computer with a small amount of data. The &#8220;enterprise&#8221; ETL tools were running on server class machine with a large amount of data stored both in flat files and in a database. The transformation executed on server class machine was the same as the one I executed on desktop, only the size of input data was changed:</p>
<ul>
<li>lineitem.tbl &#8211;  59,986,052 records,  7.24 GB</li>
<li>customers.tbl – 1,500,000 records, 233 MB</li>
<li>orders.tbl &#8211;  15,000,000 records, 1.62 GB</li>
</ul>
<p>The results of flat file reading:</p>
<p style="text-align:center;font-size:large;"><strong>TPCH-Q1</strong></p>
<p><a href="http://cloveretl.files.wordpress.com/2009/12/tpch11.png"><img src="http://cloveretl.files.wordpress.com/2009/12/tpch11.png?w=936&#038;h=334" alt="TPCH-Q1" title="TPCH-Q1" width="936" height="334" class="aligncenter size-full wp-image-328" /></a></p>
<p style="text-align:center;font-size:large;"><strong>TPCH-Q3</strong></p>
<p><a href="http://cloveretl.files.wordpress.com/2009/12/tpch22.png"><img src="http://cloveretl.files.wordpress.com/2009/12/tpch22.png?w=936&#038;h=334" alt="TPCH-Q3" title="TPCH-Q3" width="936" height="334" class="aligncenter size-full wp-image-329" /></a></p>
<p>The new results of database reading, all previously published results, detailed information about used hardware and a summary are available in <a href="http://www.cloveretl.com/_upload/clover-etl/Comparison_CloverETL_vs_Talend_Pentaho.pdf">this final document</a>.</p>
<p>I also described main features of all tools and my experiences to work with them. This part of the document expresses my opinions so it could be biased since I work mostly with CloverETL. If you don&#8217;t agree with anything, please express your opinion in comments. I will be pleased to discuss them with you.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/cloveretl.wordpress.com/319/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/cloveretl.wordpress.com/319/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/cloveretl.wordpress.com/319/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/cloveretl.wordpress.com/319/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/cloveretl.wordpress.com/319/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/cloveretl.wordpress.com/319/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/cloveretl.wordpress.com/319/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/cloveretl.wordpress.com/319/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/cloveretl.wordpress.com/319/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/cloveretl.wordpress.com/319/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=blog.cloveretl.com&blog=7070972&post=319&subd=cloveretl&ref=&feed=1" />]]></content:encoded>
			<wfw:commentRss>http://blog.cloveretl.com/2009/12/09/parallelreader-versus-competitors-finish/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/cec19d3aab248f6f4591a97277323f2c?s=96&#38;d=http%3A%2F%2F0.gravatar.com%2Favatar%2Fad516503a11cd5ca435acc9bb6523536%3Fs%3D96&#38;r=G" medium="image">
			<media:title type="html">puher</media:title>
		</media:content>

		<media:content url="http://cloveretl.files.wordpress.com/2009/12/tpch11.png" medium="image">
			<media:title type="html">TPCH-Q1</media:title>
		</media:content>

		<media:content url="http://cloveretl.files.wordpress.com/2009/12/tpch22.png" medium="image">
			<media:title type="html">TPCH-Q3</media:title>
		</media:content>
	</item>
		<item>
		<title>ParallelReader Versus Competitors Part 2</title>
		<link>http://blog.cloveretl.com/2009/11/11/parallelreader-versus-competitors-part-2/</link>
		<comments>http://blog.cloveretl.com/2009/11/11/parallelreader-versus-competitors-part-2/#comments</comments>
		<pubDate>Wed, 11 Nov 2009 16:08:24 +0000</pubDate>
		<dc:creator>Petr Uher</dc:creator>
				<category><![CDATA[Using CloverETL]]></category>
		<category><![CDATA[performance]]></category>
		<category><![CDATA[comparison]]></category>
		<category><![CDATA[ParallelReader]]></category>
		<category><![CDATA[talend]]></category>
		<category><![CDATA[pentaho]]></category>
		<category><![CDATA[CloverETL]]></category>

		<guid isPermaLink="false">http://blog.cloveretl.com/?p=271</guid>
		<description><![CDATA[Before we will release a complete comparison of open source ETL tools and after a success of my previous blog post I decided to publish the second transformation that we used in the comparison. The second transformation is also based on SQL query that I rewrote to ETL transformation. I chose Query 3 from http://www.tpc.org/tpch. [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=blog.cloveretl.com&blog=7070972&post=271&subd=cloveretl&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<p>Before we will release a complete comparison of open source ETL tools and after a success of <a href="http://blog.cloveretl.com/2009/10/26/parallelreader-versus-competitors/">my previous blog post</a> I decided to publish the second transformation that we used in the comparison.</p>
<p>The second transformation is also based on SQL query that I rewrote to ETL transformation. I chose <strong>Query 3</strong> from <a href="http://www.tpc.org/tpch" target="_blank">http://www.tpc.org/tpch</a>.</p>
<p><code><strong>select</strong><br />
l_orderkey,<br />
<strong>sum</strong>(l_extendedprice*(1-l_discount)) <strong>as</strong> revenue,<br />
o_orderdate,<br />
o_shippriority<br />
<strong>from</strong> customer, orders, lineitem<br />
<strong>where</strong> c_mktsegment = ‘BUILDING’<br />
<strong>and</strong> c_custkey = o_custkey<br />
<strong>and</strong> l_orderkey = o_orderkey<br />
<strong>and</strong> o_orderdate &lt; date ‘1995-03-15’<br />
<strong>and</strong> l_shipdate &gt; date ‘1995-03-15’<br />
<strong>group by</strong> l_orderkey, o_orderdate, o_shippriority<br />
<strong>order by</strong> revenue desc, o_orderdate</code></p>
<p>Input data are generated by <code>dbgen</code> utility and stored in CSV files.</p>
<ul>
<li>lineitem.tbl &#8211;  6,001,215 records, 724 MB</li>
<li>customers.tbl &#8211;  15,000 records, 23.2 MB</li>
<li>orders.tbl &#8211;  1,500,000 records, 163 MB</li>
</ul>
<p>Expected output should contain 11,620 records.</p>
<p>There is a new item in the results. After a discussion in <a href="http://blog.cloveretl.com/2009/10/26/parallelreader-versus-competitors/">my previous post</a> I added „Pentaho parallel“, Pentaho transformation that reads data in parallel mode. Thanks Matt for your transformation <img src='http://s.wordpress.com/wp-includes/images/smilies/icon_smile.gif' alt=':-)' class='wp-smiley' />  without it I wasn&#8217;t able to set it up.</p>
<p>Matt Caster also presented an opinion that Pentaho is discriminated because the transformation sorts the data before aggregation in Pentaho transformation. Yes, I agree that sorting of 6,000,000 records takes a significant amount of execution time of the transformation. But I have no choice, Pentaho aggregate component requires sorted input. Today&#8217;s transformation is more fair in this aspect. The number of records flowing to aggregate component is smaller (30,519 records) so they can be easily sorted in memory and the sorting doesn&#8217;t influence the total execution time in such volume.</p>
<p>The versions of used ETL tools stay the same ones: CloverETL Designer 2.8.1, Talend Open Studio 3.1.3 and Pentaho Data Integration 3.2.0.</p>
<p>Also the hardware configuration and Java runtime parameters are the same:</p>
<ul>
<li>Intel Core 2 Duo @ 1666 Mhz, 2048 MB RAM, 200GB SATA 5400 RPM, Windows Vista Home Premium 32bit.</li>
<li><code>-server -Xmx256m -Xmx1536m</code></li>
</ul>
<p><strong>Results:</strong></p>
<ol>
<li>CloverETL ParallelReader</li>
<li>Talend</li>
<li>Pentaho parallel</li>
<li>CloverETL UniversalDataReader</li>
<li>Pentaho</li>
</ol>
<p><img class="aligncenter size-full wp-image-276" title="Results" src="http://cloveretl.files.wordpress.com/2009/11/results.png?w=937&#038;h=335" alt="Results" width="937" height="335" /></p>
<p>Transformations and the input data are available on <a href="http://www.filefactory.com/file/a09gc3b/n/ParallelReaderComparisonPart2.zip" target="_blank">filefactory.com</a>. Today&#8217;s transformation are named TPCH2. The transformation from my previous post are named TPCH1.</p>
<p>Please give me a feedback, especially on Talend transformation if it&#8217;s correct.</p>
<h2>Transformation graphs</h2>
<div id="attachment_278" class="wp-caption aligncenter" style="width: 710px"><img class="size-full wp-image-278" title="CloverETL ParallelReader &amp; UniversalDataReader" src="http://cloveretl.files.wordpress.com/2009/11/cloveretl_tpch2_parallelreader.png?w=700&#038;h=158" alt="CloverETL ParallelReader &amp; UniversalDataReader" width="700" height="158" /><p class="wp-caption-text">CloverETL ParallelReader &amp; UniversalDataReader</p></div>
<div id="attachment_279" class="wp-caption aligncenter" style="width: 710px"><img class="size-full wp-image-279" title="Talend" src="http://cloveretl.files.wordpress.com/2009/11/talend_tpch2.png?w=700&#038;h=302" alt="Talend" width="700" height="302" /><p class="wp-caption-text">Talend</p></div>
<div id="attachment_280" class="wp-caption aligncenter" style="width: 710px"><img class="size-full wp-image-280" title="Pentaho" src="http://cloveretl.files.wordpress.com/2009/11/pentaho_tpch2.png?w=700&#038;h=304" alt="Pentaho" width="700" height="304" /><p class="wp-caption-text">Pentaho</p></div>
<div id="attachment_281" class="wp-caption aligncenter" style="width: 710px"><img class="size-full wp-image-281" title="Pentaho parallel" src="http://cloveretl.files.wordpress.com/2009/11/pentaho_tpch2_parallel.png?w=700&#038;h=258" alt="Pentaho parallel" width="700" height="258" /><p class="wp-caption-text">Pentaho parallel</p></div>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/cloveretl.wordpress.com/271/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/cloveretl.wordpress.com/271/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/cloveretl.wordpress.com/271/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/cloveretl.wordpress.com/271/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/cloveretl.wordpress.com/271/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/cloveretl.wordpress.com/271/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/cloveretl.wordpress.com/271/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/cloveretl.wordpress.com/271/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/cloveretl.wordpress.com/271/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/cloveretl.wordpress.com/271/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=blog.cloveretl.com&blog=7070972&post=271&subd=cloveretl&ref=&feed=1" />]]></content:encoded>
			<wfw:commentRss>http://blog.cloveretl.com/2009/11/11/parallelreader-versus-competitors-part-2/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/cec19d3aab248f6f4591a97277323f2c?s=96&#38;d=http%3A%2F%2F0.gravatar.com%2Favatar%2Fad516503a11cd5ca435acc9bb6523536%3Fs%3D96&#38;r=G" medium="image">
			<media:title type="html">puher</media:title>
		</media:content>

		<media:content url="http://cloveretl.files.wordpress.com/2009/11/results.png" medium="image">
			<media:title type="html">Results</media:title>
		</media:content>

		<media:content url="http://cloveretl.files.wordpress.com/2009/11/cloveretl_tpch2_parallelreader.png" medium="image">
			<media:title type="html">CloverETL ParallelReader &#38; UniversalDataReader</media:title>
		</media:content>

		<media:content url="http://cloveretl.files.wordpress.com/2009/11/talend_tpch2.png" medium="image">
			<media:title type="html">Talend</media:title>
		</media:content>

		<media:content url="http://cloveretl.files.wordpress.com/2009/11/pentaho_tpch2.png" medium="image">
			<media:title type="html">Pentaho</media:title>
		</media:content>

		<media:content url="http://cloveretl.files.wordpress.com/2009/11/pentaho_tpch2_parallel.png" medium="image">
			<media:title type="html">Pentaho parallel</media:title>
		</media:content>
	</item>
		<item>
		<title>ParallelReader versus competitors</title>
		<link>http://blog.cloveretl.com/2009/10/26/parallelreader-versus-competitors/</link>
		<comments>http://blog.cloveretl.com/2009/10/26/parallelreader-versus-competitors/#comments</comments>
		<pubDate>Mon, 26 Oct 2009 03:37:57 +0000</pubDate>
		<dc:creator>Petr Uher</dc:creator>
				<category><![CDATA[Using CloverETL]]></category>
		<category><![CDATA[performance]]></category>
		<category><![CDATA[comparison]]></category>
		<category><![CDATA[ParallelReader]]></category>
		<category><![CDATA[talend]]></category>
		<category><![CDATA[pentaho]]></category>
		<category><![CDATA[CloverETL]]></category>

		<guid isPermaLink="false">http://blog.cloveretl.com/?p=223</guid>
		<description><![CDATA[On Oct. 21 OpenSys released a new version of its ETL tool, CloverETL Designer version 2.8.1. It&#8217;s mainly bugfix version but also brings a new component, ParallelReader, that makes delimited data file (CSV) processing faster than ever before. I decided to make a test and compare ParallelReader&#8217;s performance with CloverETL&#8217;s UniversalDataReader and also with two [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=blog.cloveretl.com&blog=7070972&post=223&subd=cloveretl&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<p>On Oct. 21 <a href="http://www.opensys.com" target="_blank">OpenSys</a> released a new version of its ETL tool, <a href="http://www.cloveretl.com/cloveretl-designer/" target="_blank">CloverETL Designer</a> version 2.8.1. It&#8217;s mainly bugfix version but also brings a new component, ParallelReader, that makes delimited data file (CSV) processing faster than ever before.</p>
<p>I decided to make a test and compare ParallelReader&#8217;s performance with CloverETL&#8217;s UniversalDataReader and also with two ETL competitors Talend Open Studio (3.1.3) and Pentaho Data Integration (3.2.0).</p>
<p>As a testing task I chose simple SQL query and I tried to rewrite it to ETL transformation.</p>
<p><code><strong>select</strong><br />
l_returnflag,<br />
l_linestatus,<br />
sum(l_quantity) as sum_qty,<br />
sum(l_extendedprice) as sum_base_price,<br />
sum(l_extendedprice*(1-l_discount)) as sum_disc_price,<br />
sum(l_extendedprice*(1-l_discount)*(1+l_tax)) as sum_charge,<br />
avg(l_quantity) as avg_qty,<br />
avg(l_extendedprice) as avg_price,<br />
avg(l_discount) as avg_disc,<br />
count(*) as count_order<br />
<strong>from</strong> lineitem<br />
<strong>where</strong> l_shipdate &lt;= date ‘1998-09-03’<br />
<strong>group by</strong> l_returnflag, l_linestatus<br />
<strong>order by</strong>l_returnflag, l_linestatus;</code></p>
<p>This query is one of standard queries used for performance testing of database engines. More info on <a href="http://www.tpc.org/tpch/" target="_blank">http://www.tpc.org/tpch/</a>. The dataset for testing was generated by dbgen utility available on <a href="http://www.tpc.org/tpch/" target="_blank">tpc.org</a> too. The size of dataset is 725MB.</p>
<p>All transformation was run on my laptop: Intel Core 2 Duo @ 1666 Mhz, 2048 MB RAM, 200GB SATA 5400 RPM, Windows Vista Home Premium 32bit.</p>
<p>Java parameters was set up to <code>-server -Xmx256m -Xmx1536m</code>.</p>
<p><strong>The results aren&#8217;t surprising <img src='http://s.wordpress.com/wp-includes/images/smilies/icon_smile.gif' alt=':-)' class='wp-smiley' /> </strong>:</p>
<ol>
<li><strong>CloverETL &#8211; ParallelReader</strong></li>
<li>CloverETL &#8211; UniversalDataReader</li>
<li>Talend</li>
<li>Pentaho</li>
</ol>
<p><img class="aligncenter size-full wp-image-227" title="Results" src="http://cloveretl.files.wordpress.com/2009/10/parallelreader_versus_competitors.png?w=747&#038;h=322" alt="Results" width="747" height="322" /></p>
<p>If you don&#8217;t trust me you can verify results on your own computer. All transformation graphs and testing dataset are available on <a href="http://rapidshare.com/files/296410277/ParallelReaderComparison.zip" target="_blank">rapidshare.com</a> or <a href="http://www.filefactory.com/file/a0732fg/n/ParallelReaderComparison_zip" target="_blank">filefactory.com</a> (200 MB). CloverETL Designer can be downloaded on <a href="http://www.cloveretl.com/user/eval-update/" target="_blank">www.cloveretl.com</a>.</p>
<p>Deeper and more extensive comparison will be published soon. Watch <a href="http://www.cloveretl.com">www.cloveretl.com</a>, watch  this blog. The latest news about CloverETL are also available on <a href="http://www.linkedin.com/groupRegistration?gid=1850543" target="_blank">CloverETL linkedin group</a> and <a href="http://www.facebook.com/home.php?#/group.php?gid=122852612208" target="_blank">CloverETL facebook group</a>. Don&#8217;t hesitate and join.</p>
<h2>Transformation graphs</h2>
<div id="attachment_230" class="wp-caption aligncenter" style="width: 610px"><img src="http://cloveretl.files.wordpress.com/2009/10/parallelreader.png?w=600&#038;h=48" alt="CloverETL ParallelReader" title="CloverETL ParallelReader" width="600" height="48" class="size-full wp-image-230" /><p class="wp-caption-text">CloverETL ParallelReader</p></div><br />
<div id="attachment_232" class="wp-caption aligncenter" style="width: 610px"><img src="http://cloveretl.files.wordpress.com/2009/10/universaldatareader.png?w=600&#038;h=48" alt="CloverETL UniversalDataReader" title="CloverETL UniversalDataReader" width="600" height="48" class="size-full wp-image-232" /><p class="wp-caption-text">CloverETL UniversalDataReader</p></div><br />
<div id="attachment_234" class="wp-caption aligncenter" style="width: 610px"><img src="http://cloveretl.files.wordpress.com/2009/10/talend.png?w=600&#038;h=76" alt="Talend" title="Talend" width="600" height="76" class="size-full wp-image-234" /><p class="wp-caption-text">Talend</p></div><br />
<div id="attachment_235" class="wp-caption aligncenter" style="width: 610px"><img src="http://cloveretl.files.wordpress.com/2009/10/pentaho.png?w=600&#038;h=88" alt="Pentaho" title="Pentaho" width="600" height="88" class="size-full wp-image-235" /><p class="wp-caption-text">Pentaho</p></div>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/cloveretl.wordpress.com/223/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/cloveretl.wordpress.com/223/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/cloveretl.wordpress.com/223/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/cloveretl.wordpress.com/223/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/cloveretl.wordpress.com/223/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/cloveretl.wordpress.com/223/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/cloveretl.wordpress.com/223/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/cloveretl.wordpress.com/223/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/cloveretl.wordpress.com/223/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/cloveretl.wordpress.com/223/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=blog.cloveretl.com&blog=7070972&post=223&subd=cloveretl&ref=&feed=1" />]]></content:encoded>
			<wfw:commentRss>http://blog.cloveretl.com/2009/10/26/parallelreader-versus-competitors/feed/</wfw:commentRss>
		<slash:comments>12</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/cec19d3aab248f6f4591a97277323f2c?s=96&#38;d=http%3A%2F%2F0.gravatar.com%2Favatar%2Fad516503a11cd5ca435acc9bb6523536%3Fs%3D96&#38;r=G" medium="image">
			<media:title type="html">puher</media:title>
		</media:content>

		<media:content url="http://cloveretl.files.wordpress.com/2009/10/parallelreader_versus_competitors.png" medium="image">
			<media:title type="html">Results</media:title>
		</media:content>

		<media:content url="http://cloveretl.files.wordpress.com/2009/10/parallelreader.png" medium="image">
			<media:title type="html">CloverETL ParallelReader</media:title>
		</media:content>

		<media:content url="http://cloveretl.files.wordpress.com/2009/10/universaldatareader.png" medium="image">
			<media:title type="html">CloverETL UniversalDataReader</media:title>
		</media:content>

		<media:content url="http://cloveretl.files.wordpress.com/2009/10/talend.png" medium="image">
			<media:title type="html">Talend</media:title>
		</media:content>

		<media:content url="http://cloveretl.files.wordpress.com/2009/10/pentaho.png" medium="image">
			<media:title type="html">Pentaho</media:title>
		</media:content>
	</item>
		<item>
		<title>Light speed sorting with FastSort</title>
		<link>http://blog.cloveretl.com/2009/05/15/light-speed-sorting-with-fastsort/</link>
		<comments>http://blog.cloveretl.com/2009/05/15/light-speed-sorting-with-fastsort/#comments</comments>
		<pubDate>Fri, 15 May 2009 14:40:12 +0000</pubDate>
		<dc:creator>bigpavel</dc:creator>
				<category><![CDATA[Using CloverETL]]></category>
		<category><![CDATA[performance]]></category>
		<category><![CDATA[sort]]></category>

		<guid isPermaLink="false">http://blog.cloveretl.com/?p=40</guid>
		<description><![CDATA[A short post introducing FastSort component in CloverETL 2.7<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=blog.cloveretl.com&blog=7070972&post=40&subd=cloveretl&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<p><!-- 		@page { margin: 0.79in } 		P { margin-bottom: 0.08in } 		A:link { so-language: zxx } --></p>
<p style="margin-bottom:0;" lang="en-US">Recently I’ve been struggling to squeeze a little speed increase out of current CloverETL’s sorting component – the ExtSort. Benchmarks show that the performance of ExtSort is very good, yet we again wanted to push things a few steps forward and make them even better. Finally, after a little research and tweaking we came up with a compromise. The development split into two paths – the original ExtSort remained and a new component – FastSort – was introduced in CloverETL 2.7. Let&#8217;s have a small peek at what it is about!</p>
<p style="margin-bottom:0;" lang="en-US">FastSort is based on modified merging algorithm and can usually produce double or sometimes even 2.5 times better performance results than ExtSort. No matter how good this sounds it surprisingly doesn’t make ExtSort obsolete or generally inferior sort component! Let&#8217;s see why it is and how you will benefit from learning to use the right sort component for the right purpose.</p>
<p style="margin-bottom:0;" lang="en-US">Let&#8217;s go back to the beginning. ExtSort is based on merge sort algorithm using fixed number of tapes (temporary disk files). Records in ExtSort are read from input, sorted into groups – chunks – and added onto the end one of the tapes balancing their lengths. The chunks are then merged together and sent out. The number of tapes and chunk size play important role in performance tweaking. ExtSort can work on any size of input data (provided that there is enough disk space for temporary files) and has reasonably low demands on system memory (almost constant relatively to input data set size).</p>
<p style="margin-bottom:.14in;" lang="en-US">On the other hand, FastSort does not put chunks onto tapes – it creates a new file (i.e. tape) for each sorted chunk instead – we call them “sorted runs” here. Along with parallel processing of multiple chunks at once, larger memory utilization, etc. great speed achievements are possible. But there is a cost for everything and this fast sort approach is no exception. Since FastSort has to keep many open files it slowly increases its resource demands proportionally to the size of the data set. That means there is a theoretical cap which is a trade-off between run size (which needs to fit into memory for sorting) and overhead with keeping open runs (around 10KB each).  However, on most production systems, hitting this cap is far beyond practical use. Let&#8217;s see a small example:</p>
<p style="margin-bottom:.14in;" lang="en-US"><em>Let&#8217;s have a billion (10^9) data records of average size of 200 bytes, i.e. around 200 GB of data – quite a large set. Ideal run size, which is computed automatically, is around 500 000 records = 100 megs for a single run.. Under ideal conditions there are 3 sort buffers which makes 300 megs of memory for sorting. This setup produces roughly 2000 temporary files, i.e. another 20 megs for keeping track of them. That adds to a total of 320 MB of memory plus some system overhead for sorting a 200 GB file – this surely is acceptable, especially when we take FastSort&#8217;s tweaking possibilities into account. There are always ways of sacrificing a little performance to decrease resource requirements – e.g. shrinking run size, limiting buffers and open files, etc. &#8211; there&#8217;s a lot of parameters to fiddle with if you wish to.</em></p>
<p style="margin-bottom:.14in;" lang="en-US">As you can see, FastSort is a bit more greedy that ExtSort but given the resources, it gets the job done significantly faster. In cases where speed is crucial and enough system resources can be dedicated for sorting, FastSort is a great choice. For moderate and resource critical applications ExtSort is less demanding and provides steady performance at very little cost.</p>
<p style="margin-bottom:.14in;" lang="en-US">For further information please referr to CloverETL&#8217;s wiki page <a href="http://wiki.cloveretl.org/doku.php?id=components:transformers#fastsort">http://wiki.cloveretl.org/doku.php?id=components:transformers#fastsort</a> or  Documentation page.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/cloveretl.wordpress.com/40/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/cloveretl.wordpress.com/40/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/cloveretl.wordpress.com/40/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/cloveretl.wordpress.com/40/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/cloveretl.wordpress.com/40/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/cloveretl.wordpress.com/40/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/cloveretl.wordpress.com/40/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/cloveretl.wordpress.com/40/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/cloveretl.wordpress.com/40/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/cloveretl.wordpress.com/40/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=blog.cloveretl.com&blog=7070972&post=40&subd=cloveretl&ref=&feed=1" />]]></content:encoded>
			<wfw:commentRss>http://blog.cloveretl.com/2009/05/15/light-speed-sorting-with-fastsort/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/0fb57473985720d4d29eac8a52337a73?s=96&#38;d=http%3A%2F%2F0.gravatar.com%2Favatar%2Fad516503a11cd5ca435acc9bb6523536%3Fs%3D96&#38;r=G" medium="image">
			<media:title type="html">bigpavel</media:title>
		</media:content>
	</item>
		<item>
		<title>CloverETL x Talend evaluation by Axege</title>
		<link>http://blog.cloveretl.com/2009/03/31/cloveretl-x-talend-evaluation-by-axege/</link>
		<comments>http://blog.cloveretl.com/2009/03/31/cloveretl-x-talend-evaluation-by-axege/#comments</comments>
		<pubDate>Tue, 31 Mar 2009 19:48:00 +0000</pubDate>
		<dc:creator>dpavlis</dc:creator>
				<category><![CDATA[Using CloverETL]]></category>
		<category><![CDATA[benchmark]]></category>
		<category><![CDATA[comparison]]></category>
		<category><![CDATA[ETL]]></category>
		<category><![CDATA[performance]]></category>

		<guid isPermaLink="false">http://cloveretl.wordpress.com/?p=16</guid>
		<description><![CDATA[For those looking for some independent comparison of CloverETL versus Talend Open Studio, look at this one conducted by French organization Axege [in French ] We have prepared English translation of the original document with comments.<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=blog.cloveretl.com&blog=7070972&post=16&subd=cloveretl&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<p>For those looking for some independent comparison of CloverETL versus Talend Open Studio, <a title="CloverETL versus Talend Open Studio by Axege" href="http://www.axege.com/Evaluation-de-deux-ETL-Clover-ETL-vs-Talend-Open-Studio.html" target="_blank">look at this one</a> conducted by French organization <a href="http://www.axege.com" target="_blank">Axege</a> [in French <img src='http://s.wordpress.com/wp-includes/images/smilies/icon_wink.gif' alt=';-)' class='wp-smiley' />  ]</p>
<p><em>We have prepared <a href="http://www.cloveretl.com/_upload/clover-etl/Evaluation_of_two_ETL_Axege.pdf" target="_blank">English translation</a> of the original document with comments.</em></p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/cloveretl.wordpress.com/16/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/cloveretl.wordpress.com/16/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/cloveretl.wordpress.com/16/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/cloveretl.wordpress.com/16/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/cloveretl.wordpress.com/16/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/cloveretl.wordpress.com/16/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/cloveretl.wordpress.com/16/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/cloveretl.wordpress.com/16/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/cloveretl.wordpress.com/16/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/cloveretl.wordpress.com/16/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=blog.cloveretl.com&blog=7070972&post=16&subd=cloveretl&ref=&feed=1" />]]></content:encoded>
			<wfw:commentRss>http://blog.cloveretl.com/2009/03/31/cloveretl-x-talend-evaluation-by-axege/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/a2fe7d61b2e2fa3b0adea8b6aeca574a?s=96&#38;d=http%3A%2F%2F0.gravatar.com%2Favatar%2Fad516503a11cd5ca435acc9bb6523536%3Fs%3D96&#38;r=G" medium="image">
			<media:title type="html">dadik</media:title>
		</media:content>
	</item>
	</channel>
</rss>