<?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>Jonas-Kress.de</title>
	<atom:link href="http://Jonas-Kress.de/feed/" rel="self" type="application/rss+xml" />
	<link>http://Jonas-Kress.de</link>
	<description>Thoughts, projects and publications from Jonas M. Kress</description>
	<lastBuildDate>Sat, 17 Dec 2011 13:03:35 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3</generator>
		<item>
		<title>Hive Table Column Mapping</title>
		<link>http://Jonas-Kress.de/106/2011/12/hadoop/hive/hive-table-column-mapping/</link>
		<comments>http://Jonas-Kress.de/106/2011/12/hadoop/hive/hive-table-column-mapping/#comments</comments>
		<pubDate>Fri, 16 Dec 2011 11:56:13 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Hive]]></category>

		<guid isPermaLink="false">http://Jonas-Kress.de/?p=106</guid>
		<description><![CDATA[When creating a column mapping in hive all the data is being saved to the metastore. Example of a hive hbase column mapping: CREATE EXTERNAL TABLE hivetableName(Col String, Col1 String) STORED BY 'org.apache.hadoop.hive.hbase.HBaseStorageHandler' WITH SERDEPROPERTIES ("hbase.columns.mapping" = "colFamily:Col, colFamily:Col") TBLPROPERTIES("hbase.table.name" &#8230; <a href="http://Jonas-Kress.de/106/2011/12/hadoop/hive/hive-table-column-mapping/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>When creating a column mapping in hive all the data is being saved to the metastore.</p>
<p>Example of a hive hbase column mapping:<br />
<code>CREATE EXTERNAL TABLE hivetableName(Col String, Col1 String)<br />
STORED BY 'org.apache.hadoop.hive.hbase.HBaseStorageHandler'<br />
WITH SERDEPROPERTIES ("hbase.columns.mapping" = "colFamily:Col, colFamily:Col")<br />
        TBLPROPERTIES("hbase.table.name" = "hbasetableName")</code></p>
<p>If you use a vast amount of columns that are being mapped the table column of the serde params will reach its limit. </p>
<p>You can fix this problem with the following statement if your metastore uses a mysql database:<br />
<code>ALTER TABLE hive.`SERDE_PARAMS` MODIFY COLUMN `PARAM_VALUE` text;</code> </p>
]]></content:encoded>
			<wfw:commentRss>http://Jonas-Kress.de/106/2011/12/hadoop/hive/hive-table-column-mapping/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Virtualbox Image Resize Disk (VDI, VMDK)</title>
		<link>http://Jonas-Kress.de/101/2011/12/virtualization/virtualbox-image-resize-disk-vdi-vmdk/</link>
		<comments>http://Jonas-Kress.de/101/2011/12/virtualization/virtualbox-image-resize-disk-vdi-vmdk/#comments</comments>
		<pubDate>Fri, 16 Dec 2011 11:29:08 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Virtualization]]></category>
		<category><![CDATA[VDI]]></category>
		<category><![CDATA[VirtualBox]]></category>
		<category><![CDATA[VMDK]]></category>

		<guid isPermaLink="false">http://Jonas-Kress.de/?p=101</guid>
		<description><![CDATA[When resizing a VirtualBox image you may face the error &#8220;Resize hard disk operation for this format is not implemented yet!&#8221;. You can fix this by doing a convert to the VDI disk format before trying to resize it. It &#8230; <a href="http://Jonas-Kress.de/101/2011/12/virtualization/virtualbox-image-resize-disk-vdi-vmdk/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>When resizing a VirtualBox image you may face the error &#8220;Resize hard disk operation for this format is not implemented yet!&#8221;.<br />
You can fix this by doing a convert to the VDI disk format before trying to resize it.<br />
It could be necessary to boot the converted image before doing a resize!</p>
<p>Convert format of virtual hard disk:<br />
<code>VBoxManage clonehd disk.vmdk disk.vdi --format VDI</code></p>
<p>Resize virtual hard disk:<br />
<code>VBoxManage modifyhd disk.vdi --resize [SIZE_IN_MB]</code></p>
<p>You may also want to resize your partitions.<br />
This can be easily done by using the <a href="http://gparted.sourceforge.net/livecd.php" target="_blank">GParted live cd</a></p>
]]></content:encoded>
			<wfw:commentRss>http://Jonas-Kress.de/101/2011/12/virtualization/virtualbox-image-resize-disk-vdi-vmdk/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Master Thesis in Progress</title>
		<link>http://Jonas-Kress.de/46/2011/11/publication/master-thesis/</link>
		<comments>http://Jonas-Kress.de/46/2011/11/publication/master-thesis/#comments</comments>
		<pubDate>Mon, 28 Nov 2011 15:53:25 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Papers]]></category>
		<category><![CDATA[Thesis]]></category>

		<guid isPermaLink="false">http://dev.jonas-kress.de/?p=46</guid>
		<description><![CDATA[Started working on my master thesis with the title: Analysis of migrating a MySQL based data warehouse and monitoring system to hadoop Most relevant books and papers: Hadoop The Definitive Guide 2nd Edition and HBase The Definitive Guide Hive – &#8230; <a href="http://Jonas-Kress.de/46/2011/11/publication/master-thesis/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>Started working on my master thesis with the title:</p>
<blockquote><p>Analysis of migrating a MySQL based data warehouse and monitoring system to hadoop</p></blockquote>
<p>Most relevant books and papers:</p>
<ul>
<li>Hadoop The Definitive Guide 2nd Edition and</li>
<li>HBase The Definitive Guide</li>
<li>Hive – A Petabyte Scale Data Warehouse</li>
<li>High Performance MySQL</li>
</ul>
<p>Further links:<a href="http://www.cloudera.com/"><br />
http://www.cloudera.com/</a> Hadoop distribution and installation package<br />
<a href="http://hadoop.apache.org/">http://hadoop.apache.org/</a>  Hadoop is an open source Apache project</p>
]]></content:encoded>
			<wfw:commentRss>http://Jonas-Kress.de/46/2011/11/publication/master-thesis/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

