<?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>btaz &#187; Miscellaneous</title>
	<atom:link href="http://www.btaz.com/category/misc/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.btaz.com</link>
	<description>Promoting the art of coding</description>
	<lastBuildDate>Thu, 17 Mar 2011 06:41:23 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0.4</generator>
		<item>
		<title>fatal: The remote end hung up unexpectedly</title>
		<link>http://www.btaz.com/misc/fatal-the-remote-end-hung-up-unexpectedly/</link>
		<comments>http://www.btaz.com/misc/fatal-the-remote-end-hung-up-unexpectedly/#comments</comments>
		<pubDate>Tue, 16 Nov 2010 15:47:48 +0000</pubDate>
		<dc:creator>michael</dc:creator>
				<category><![CDATA[Miscellaneous]]></category>
		<category><![CDATA[GIT]]></category>
		<category><![CDATA[git push]]></category>
		<category><![CDATA[hung up]]></category>
		<category><![CDATA[remote]]></category>
		<category><![CDATA[unexpectedly]]></category>

		<guid isPermaLink="false">http://www.btaz.com/?p=187</guid>
		<description><![CDATA[I committed changes to my GIT project, tried to push them to the remote server (git push) and got the following cryptic error message: fatal: The remote end hung up unexpectedly The GitFaq states that: Git push fails with &#8220;fatal: The remote end hung up unexpectedly&#8221;? If, when attempting git push, you get a message [...]


Related posts:<ol><li><a href='http://www.btaz.com/scm/git/fatal-git-checkout-updating-paths-is-incompatible-with-switching-branches/' rel='bookmark' title='Permanent Link: fatal: git checkout: updating paths is incompatible with switching branches.'>fatal: git checkout: updating paths is incompatible with switching branches.</a></li>
<li><a href='http://www.btaz.com/scm/git/git-fatal-you-have-not-concluded-your-merge-merge_head-exists/' rel='bookmark' title='Permanent Link: GIT Fatal You Have not Concluded Your Merge MERGE_HEAD Exists'>GIT Fatal You Have not Concluded Your Merge MERGE_HEAD Exists</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p>I committed changes to my GIT project, tried to push them to the remote server (git push) and got the following cryptic error message:</p>
<p><span style="color: #0000ff;">fatal: The remote end hung up unexpectedly</span></p>
<p>The <a title="Git FAQ" href="https://git.wiki.kernel.org/index.php/GitFaq#Git_push_fails_with_.22fatal:_The_remote_end_hung_up_unexpectedly.22.3F">GitFaq</a> states that:</p>
<p><span style="color: #0000ff;">Git push fails with &#8220;fatal: The remote end hung up unexpectedly&#8221;?<br />
If, when attempting git push, you get a message that says:<br />
<em>fatal: The remote end hung up unexpectedly</em><br />
</span></p>
<p><span style="color: #0000ff;">There are a couple of reasons for that, but the most common is that  authorization failed. You might be using a git:// URL to push, which has no authorization  whatsoever and hence has write access disabled by default. Or you might be using an ssh URL, but  either your public key was not installed correctly, or your account does  not have write access to that repository/branch.</span></p>
<p>I used &#8220;git config &#8211;list&#8221; to review my project configuration</p>
<p><span style="color: #0000ff;">core.repositoryformatversion=0<br />
core.filemode=true<br />
core.bare=false<br />
core.logallrefupdates=true<br />
core.ignorecase=true<br />
remote.origin.fetch=+refs/heads/*:refs/remotes/origin/*<br />
remote.origin.url=git://git.some-domain.com/my-project<br />
branch.master.remote=origin<br />
branch.master.merge=refs/heads/master<br />
branch.v2.remote=origin<br />
branch.v2.merge=refs/heads/v2<br />
gui.geometry=1374&#215;727+34+82 301 201</span></p>
<p>The culprit here is the &#8220;remote.origin.url&#8221; property, it&#8217;s pointing to a read-only repository. We can change this using &#8220;git config &#8211;edit&#8221;. We want to change:</p>
<p><span style="color: #0000ff;">remote.origin.url=git://git.some-domain.com/my-project</span></p>
<p>to</p>
<p><span style="color: #0000ff;">remote.origin.url=git@git.some-domain.com:/my-project</span></p>
<p>Please note that the specific user &#8220;git&#8221; is specific to my setup and your GIT setup/configuration is most likely different. After this change I was able to successfully push my changes to the remote server.</p>
<p>The reason to why I got the read-only version of the project was because I used &#8220;git clone git://git.some-domain.com/my-project&#8221; when I should have used &#8220;git clone git@git.some-domain.com:/my-project&#8221;</p>


<p>Related posts:<ol><li><a href='http://www.btaz.com/scm/git/fatal-git-checkout-updating-paths-is-incompatible-with-switching-branches/' rel='bookmark' title='Permanent Link: fatal: git checkout: updating paths is incompatible with switching branches.'>fatal: git checkout: updating paths is incompatible with switching branches.</a></li>
<li><a href='http://www.btaz.com/scm/git/git-fatal-you-have-not-concluded-your-merge-merge_head-exists/' rel='bookmark' title='Permanent Link: GIT Fatal You Have not Concluded Your Merge MERGE_HEAD Exists'>GIT Fatal You Have not Concluded Your Merge MERGE_HEAD Exists</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://www.btaz.com/misc/fatal-the-remote-end-hung-up-unexpectedly/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Hadoop World</title>
		<link>http://www.btaz.com/misc/hadoop-world/</link>
		<comments>http://www.btaz.com/misc/hadoop-world/#comments</comments>
		<pubDate>Mon, 18 Oct 2010 00:22:23 +0000</pubDate>
		<dc:creator>michael</dc:creator>
				<category><![CDATA[Miscellaneous]]></category>
		<category><![CDATA[big data]]></category>
		<category><![CDATA[cloudera]]></category>
		<category><![CDATA[hadoop]]></category>
		<category><![CDATA[hadoop world]]></category>
		<category><![CDATA[hbase]]></category>
		<category><![CDATA[hive]]></category>
		<category><![CDATA[pig]]></category>

		<guid isPermaLink="false">http://www.btaz.com/?p=183</guid>
		<description><![CDATA[I just came back from the Hadoop World conference in New York and I have to say that it was quite exciting. Processing huge amounts of data used to be a problem for just a few companies like Google, Yahoo, Facebook and a few others, but has now become a problem for many. The conference [...]


Related posts:<ol><li><a href='http://www.btaz.com/hadoop-2/los-angeles-hadoop-users-group-la-hug/' rel='bookmark' title='Permanent Link: Los Angeles Hadoop Users Group- LA-HUG'>Los Angeles Hadoop Users Group- LA-HUG</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p><img class="alignnone" title="Hadoop Logo" src="http://upload.wikimedia.org/wikipedia/en/8/8a/Hadoop-logo.jpg" alt="" width="300" height="71" /></p>
<p>I just came back from the Hadoop World conference in New York and I have to say that it was quite exciting. Processing huge amounts of data used to be a problem for just a few companies like Google, Yahoo, Facebook and a few others, but has now become a problem for many. The conference topics were interesting and the training held by Cloudera was really good. My personal recommendation is to get up to speed on Hadoop and related technologies e.g. HBase, Hive, Pig etc. quickly since I think that the ever growing data sizes will soon make these tools commonplace. It takes time to learn how think at scale and to use these tools properly. I&#8217;ve now seen how &#8220;big data&#8221; has grown to such sizes that not even big clustered databases like Oracle RAC provide the ability to quickly process and extract information for our needs. Hadoop is not a universal tool for big data problems, but for a certain set of problems it&#8217;s quite powerful and provides almost linear performance as you scale up your compute cluster. Cloudera has excellent videos for Hadoop here: http://www.cloudera.com/resources/?media=Video to get you started. Tom White&#8217;s &#8220;<a title="Hadoop: The Definitive Guide" href="http://www.amazon.com/Hadoop-Definitive-Guide-Tom-White/dp/1449389732/ref=ntt_at_ep_dpi_1" target="_self">Hadoop: The Definitive Guide (2nd Edition)</a>&#8221; is excellent and I can highly recommend it.</p>


<p>Related posts:<ol><li><a href='http://www.btaz.com/hadoop-2/los-angeles-hadoop-users-group-la-hug/' rel='bookmark' title='Permanent Link: Los Angeles Hadoop Users Group- LA-HUG'>Los Angeles Hadoop Users Group- LA-HUG</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://www.btaz.com/misc/hadoop-world/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

