<?xml version='1.0' encoding='UTF-8'?><?xml-stylesheet href="http://www.blogger.com/styles/atom.css" type="text/css"?><feed xmlns='http://www.w3.org/2005/Atom' xmlns:openSearch='http://a9.com/-/spec/opensearchrss/1.0/' xmlns:georss='http://www.georss.org/georss' xmlns:gd='http://schemas.google.com/g/2005' xmlns:thr='http://purl.org/syndication/thread/1.0'><id>tag:blogger.com,1999:blog-964289351835175252</id><updated>2011-04-21T18:35:17.666-07:00</updated><category term='performance'/><category term='meeting'/><category term='Microsoft'/><category term='new release'/><category term='Trend Micro'/><category term='scanners'/><category term='Powerset'/><category term='hbase'/><category term='project status'/><title type='text'>jdcryans's Blog</title><subtitle type='html'></subtitle><link rel='http://schemas.google.com/g/2005#feed' type='application/atom+xml' href='http://jdcryans.blogspot.com/feeds/posts/default'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/964289351835175252/posts/default?max-results=100'/><link rel='alternate' type='text/html' href='http://jdcryans.blogspot.com/'/><link rel='hub' href='http://pubsubhubbub.appspot.com/'/><author><name>Jean-Daniel Cryans</name><uri>http://www.blogger.com/profile/14961120027247545138</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='32' src='http://2.bp.blogspot.com/_ahj2mz4i5JE/SNzqhwwUynI/AAAAAAAAABI/9WgznWtfVEQ/S220/me.JPG'/></author><generator version='7.00' uri='http://www.blogger.com'>Blogger</generator><openSearch:totalResults>6</openSearch:totalResults><openSearch:startIndex>1</openSearch:startIndex><openSearch:itemsPerPage>100</openSearch:itemsPerPage><entry><id>tag:blogger.com,1999:blog-964289351835175252.post-7435130607235522482</id><published>2008-10-14T05:19:00.000-07:00</published><updated>2008-10-14T05:40:54.796-07:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='Powerset'/><category scheme='http://www.blogger.com/atom/ns#' term='Trend Micro'/><category scheme='http://www.blogger.com/atom/ns#' term='meeting'/><category scheme='http://www.blogger.com/atom/ns#' term='hbase'/><category scheme='http://www.blogger.com/atom/ns#' term='Microsoft'/><title type='text'>Project news</title><content type='html'>While we are working on HBase 0.19.0, here's what happening:&lt;br /&gt;&lt;br /&gt;&lt;ul&gt;&lt;li&gt;Andrew Purtell of Trend Micro became the fifth committer. They recently began using HBase in a production environment as you can see in the &lt;a href="http://wiki.apache.org/hadoop/Hbase/PoweredBy"&gt;PoweredBy&lt;/a&gt; page of the wiki.&lt;/li&gt;&lt;li&gt;Michael Stack and Jim Kellerman, the two committers from Powerset (which was bought by Microsoft), are once again able to contribute code. Expect a lot of improvements in the next release.&lt;/li&gt;&lt;li&gt;The 4th HBase User Group meeting will take place at the Powerset office on October 21, please &lt;a href="http://upcoming.yahoo.com/event/1221999/?ps=5"&gt;signup&lt;/a&gt; if you are coming. Currently, all active committers should be there (including me by phone).&lt;/li&gt;&lt;/ul&gt;I will soon post about the writes improvements in HBase, stay tuned!&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/964289351835175252-7435130607235522482?l=jdcryans.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://jdcryans.blogspot.com/feeds/7435130607235522482/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=964289351835175252&amp;postID=7435130607235522482' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/964289351835175252/posts/default/7435130607235522482'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/964289351835175252/posts/default/7435130607235522482'/><link rel='alternate' type='text/html' href='http://jdcryans.blogspot.com/2008/10/project-news.html' title='Project news'/><author><name>Jean-Daniel Cryans</name><uri>http://www.blogger.com/profile/14961120027247545138</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='32' src='http://2.bp.blogspot.com/_ahj2mz4i5JE/SNzqhwwUynI/AAAAAAAAABI/9WgznWtfVEQ/S220/me.JPG'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-964289351835175252.post-2433862926594957889</id><published>2008-09-18T06:58:00.000-07:00</published><updated>2008-09-23T08:16:25.855-07:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='performance'/><category scheme='http://www.blogger.com/atom/ns#' term='scanners'/><category scheme='http://www.blogger.com/atom/ns#' term='hbase'/><title type='text'>Speeding up HBase, part 1</title><content type='html'>UPDATE: This work on scanners is now committed into trunk, enjoy the new speed!&lt;br /&gt;&lt;br /&gt;Stability and reliability were the focus of the previous HBase versions, now it is time for performance! In this first post on the subject, I will describe the work done on the scanners.&lt;br /&gt;&lt;br /&gt;As described in the &lt;a href="http://wiki.apache.org/hadoop/Hbase/PerformanceEvaluation#0_2_0"&gt;Performance Evaluation&lt;/a&gt; page of the wiki, current numbers compared to Bigtable are not that great (though a lot better than it was). One big hotspot we have in HBase is remote procedure calls (RPC) and some profiling we did showed us that it's sometimes even bigger than the overhead of HDFS. So, our strategy for HBase 0.19.0 will be to batch as much rows as we can in a single RPC in order to diminish it's impact. It will require different implementations for different operations.&lt;br /&gt;&lt;br /&gt;&lt;span style="font-weight: bold;"&gt;Implementation and tests&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;Scanners in HBase already provide the fastest way to retrieve data but compared to how a direct scan in a HDFS MapFile is, it is clear that something is wrong (3 737 rows per second instead of a staggering 58 054). &lt;a href="https://issues.apache.org/jira/browse/HBASE-887"&gt;HBASE-877&lt;/a&gt; is about fixing that hotspot. The implementation is simple: since we know that we want many rows, why not get a bunch of them each time we communicate with a region server and then serve directly from cache? In other words, fetch x rows, serve from cache x times, repeat until rows are exhausted. That works for big jobs, but what if a user wants to scan only 2-3 rows (or even 1), can we do something so that it doesn't fetch 30 rows? If we make sure that that number is configurable, it will also work fine for small scans.&lt;br /&gt;&lt;br /&gt;My first tests with my patch confirm that batching rows is efficient. In the following chart, I ran the Performance Evaluation test 30 times, going from batching 1 row to batching 30 rows:&lt;br /&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://1.bp.blogspot.com/_ahj2mz4i5JE/SNJqyxCBgUI/AAAAAAAAAAc/g-oRg3PIubA/s1600-h/877-chart.jpg"&gt;&lt;img style="margin: 0px auto 10px; display: block; text-align: center; cursor: pointer;" src="http://1.bp.blogspot.com/_ahj2mz4i5JE/SNJqyxCBgUI/AAAAAAAAAAc/g-oRg3PIubA/s400/877-chart.jpg" alt="" id="BLOGGER_PHOTO_ID_5247373936227877186" border="0" /&gt;&lt;/a&gt;As we can see, the test took around 108 seconds to scan all 1 million+ rows on my machine (2.66 Ghz, 2GB of memory, SATA disk). That's 9692 rows per second, better than the PE in the wiki but my machine is also stronger. But at 30 rows per fetch, it scanned 30 028 rows per second! That's a lot better for a very simple fix. I think this could be further optimized by fetching the rows in a second thread with some logic to make sure we don't load the full table right away... and that's for a future version of HBase.&lt;br /&gt;&lt;br /&gt;&lt;span style="font-weight: bold;"&gt;Configuration&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;There are many ways to configure how many rows are fetched. First, hbase-default.xml will define a default value for &lt;span style="font-style: italic;"&gt;hbase.client.scanner.caching&lt;/span&gt; that you will be able to override in hbase-site.xml like any other value. The other way is to use &lt;span style="font-style: italic;"&gt;HTable.setScannerCaching&lt;/span&gt; to define an instance-specific value. For example, you have to scan thousands of rows and right after that you only have to scan 2 rows and close the scanner (all on the same table), you should just pass 30 the first time and 2 the second time to &lt;span style="font-style: italic;"&gt;setScannerCaching&lt;/span&gt;. That's a bit aggressive, but you can do it if you want.&lt;br /&gt;&lt;br /&gt;Something you must verify before setting the caching to a high number of is the size of your rows. While testing the patch, I used 100MB rows to have many splits and kept the caching at 20. Bad idea, my machine began swapping like hell!&lt;br /&gt;&lt;br /&gt;&lt;span style="font-weight: bold;"&gt;Conclusion&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;HBase 0.19.0 is all about speed and the first optimization is done on scanners. By fetching more rows, the cost of doing RPCs is greatly reduced. By keeping it configurable, it also fits all use cases. In my opinion, those who are using HBase as a source for MapReduce jobs will see a big improvement since it does full scans of tables (as long as the caching is configured at around 30 or less for very big rows).&lt;br /&gt;&lt;br /&gt;If you want to use this sweet improvement right now, just download HBase 0.18.0 and patch it with my patch in HBASE-887 or wait until it gets committed.&lt;br /&gt;&lt;br /&gt;Happy scanning!&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/964289351835175252-2433862926594957889?l=jdcryans.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://jdcryans.blogspot.com/feeds/2433862926594957889/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=964289351835175252&amp;postID=2433862926594957889' title='1 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/964289351835175252/posts/default/2433862926594957889'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/964289351835175252/posts/default/2433862926594957889'/><link rel='alternate' type='text/html' href='http://jdcryans.blogspot.com/2008/09/speeding-up-hbase-part-1.html' title='Speeding up HBase, part 1'/><author><name>Jean-Daniel Cryans</name><uri>http://www.blogger.com/profile/14961120027247545138</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='32' src='http://2.bp.blogspot.com/_ahj2mz4i5JE/SNzqhwwUynI/AAAAAAAAABI/9WgznWtfVEQ/S220/me.JPG'/></author><media:thumbnail xmlns:media='http://search.yahoo.com/mrss/' url='http://1.bp.blogspot.com/_ahj2mz4i5JE/SNJqyxCBgUI/AAAAAAAAAAc/g-oRg3PIubA/s72-c/877-chart.jpg' height='72' width='72'/><thr:total>1</thr:total></entry><entry><id>tag:blogger.com,1999:blog-964289351835175252.post-2553685082089485380</id><published>2008-09-15T09:49:00.000-07:00</published><updated>2008-09-15T10:17:45.430-07:00</updated><title type='text'>Small, frequently updated tables</title><content type='html'>New in 0.2.1 and 0.18.0 is a finer grained configuration of major compactions. I won't go into the details today for what is a compaction so I'll refer to the &lt;a href="http://wiki.apache.org/hadoop/Hbase/HbaseArchitecture#hregion"&gt;architecture page&lt;/a&gt; of the wiki.&lt;br /&gt;&lt;br /&gt;So, suppose you have a small table (10 rows) which is frequently updated (100 times / minute) and a MAX_VERSION of 1. From a developer point of view, you expect that this table will eat only a few MB in HDFS but upon inspection you will see that it's not the case. What happens is that when you add new cells, the old ones are kept but marked as deleted and will only be cleared after a major compaction which happens once a day! One thing you can do is to set the &lt;span style="font-style: italic;"&gt;hbase.hregion.majorcompaction&lt;/span&gt; to a smaller value but this will affect your whole cluster and it's not recommended. With the introduction of HBASE-871, you can now set this value for each family. In Java, the code looks like:&lt;br /&gt;&lt;br /&gt;family.setValue("hbase.hregion.majorcompaction", "1800");&lt;br /&gt;&lt;br /&gt;Here the family is a HColumnDescriptor and the value 1800 will get you major compactions every 30 minutes (more or less). That'it!&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/964289351835175252-2553685082089485380?l=jdcryans.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://jdcryans.blogspot.com/feeds/2553685082089485380/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=964289351835175252&amp;postID=2553685082089485380' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/964289351835175252/posts/default/2553685082089485380'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/964289351835175252/posts/default/2553685082089485380'/><link rel='alternate' type='text/html' href='http://jdcryans.blogspot.com/2008/09/small-frequently-updated-tables.html' title='Small, frequently updated tables'/><author><name>Jean-Daniel Cryans</name><uri>http://www.blogger.com/profile/14961120027247545138</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='32' src='http://2.bp.blogspot.com/_ahj2mz4i5JE/SNzqhwwUynI/AAAAAAAAABI/9WgznWtfVEQ/S220/me.JPG'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-964289351835175252.post-5299607035355451685</id><published>2008-09-03T13:15:00.000-07:00</published><updated>2008-09-03T13:19:21.527-07:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='new release'/><category scheme='http://www.blogger.com/atom/ns#' term='hbase'/><title type='text'>My Personal Notes on 0.2.1</title><content type='html'>&lt;span style=";font-family:Calibri;font-size:100%;"  &gt;0.2.1 is a bug fix release with some  improvements. We mainly fix issues not discovered with the 0.2.0 release  candidates.&lt;/span&gt; &lt;p&gt;&lt;span style=";font-family:Calibri;font-size:100%;"  &gt;BUG FIXES&lt;/span&gt;&lt;/p&gt; &lt;ul type="disc"&gt;&lt;li&gt;&lt;span style=";font-family:Calibri;font-size:100%;"  &gt;Many serious issues regarding    MAX_VERSIONS and deletes were fixed to the point that using 0.2.0 is    not recommended.&lt;/span&gt;&lt;/li&gt;&lt;li&gt;&lt;span style=";font-family:Calibri;font-size:100%;"  &gt;Another very serious issue    fixed is that using any character under the “,” in the ASCII table    can result in unreachable rows. For examples, see &lt;a href="https://issues.apache.org/jira/browse/HBASE-832"&gt;HBASE-832&lt;/a&gt;. This other    issue should also be considered as a strong argument to upgrade.&lt;/span&gt;&lt;/li&gt;&lt;li&gt;&lt;span style=";font-family:Calibri;font-size:100%;"  &gt;The timeout for the scanner    went from 30 seconds to 60 by default. This prevents getting UnknownScannerException    during heavy tasks (mainly MapReduce).&lt;/span&gt;&lt;/li&gt;&lt;li&gt;&lt;span style=";font-family:Calibri;font-size:100%;"  &gt;Writing in a region while    scanning it could result in a temporary deadlock if a split was required.    For example, a MapReduce job with no Reduce that modified each row it    mapped and that committed the change in the Map would surely fail after    some time.&lt;/span&gt;&lt;/li&gt;&lt;li&gt;&lt;span style=";font-family:Calibri;font-size:100%;"  &gt;The row counter present    in HQL is now in the new shell. It is supposed to be slow.&lt;/span&gt;&lt;/li&gt;&lt;li&gt;&lt;span style=";font-family:Calibri;font-size:100%;"  &gt;Committing a BatchUpdate    with no row will now complain.&lt;/span&gt;&lt;/li&gt;&lt;li&gt;&lt;span style=";font-family:Calibri;font-size:100%;"  &gt;Various other issues were    resolved that fixed stuff in the logs, cleaned the code, and fixed the    API for deleteFamily.&lt;/span&gt;&lt;/li&gt;&lt;/ul&gt; &lt;p&gt;&lt;span style=";font-family:Calibri;font-size:100%;"  &gt;IMPROVEMENTS&lt;/span&gt;&lt;/p&gt; &lt;ul type="disc"&gt;&lt;li&gt;&lt;span style=";font-family:Calibri;font-size:100%;"  &gt;Be aware that 0.2.1 is based    on Hadoop &lt;a href="http://0.17.2.1/" target="_blank"&gt;&lt;/a&gt;&lt;/span&gt;0.17.2.1&lt;span style=";font-family:Calibri;font-size:100%;"  &gt; which was released as &lt;/span&gt;0.17.2.&lt;/li&gt;&lt;li&gt;&lt;span style=";font-family:Calibri;font-size:100%;"  &gt;When dropping a table in    the shell, you will now have a nice message if the table was not disabled.&lt;/span&gt;&lt;/li&gt;&lt;li&gt;&lt;span style=";font-family:Calibri;font-size:100%;"  &gt;The pauses were reduced    so creating a new table, for example, is faster.&lt;/span&gt;&lt;/li&gt;&lt;li&gt;&lt;span style=";font-family:Calibri;font-size:100%;"  &gt;All methods that take a    Text that were not deprecated now are. Be aware that in 0.18 these methods    will be removed so this is your last warning!&lt;/span&gt;&lt;/li&gt;&lt;li&gt;&lt;span style=";font-family:Calibri;font-size:100%;"  &gt;Various speed improvements    regarding compactions and Jenkins Hash (used to encode a region’s    name).&lt;/span&gt;&lt;/li&gt;&lt;/ul&gt; &lt;p&gt;&lt;span style=";font-family:Calibri;font-size:100%;"  &gt;INCOMPATIBLE CHANGES&lt;/span&gt;&lt;/p&gt; &lt;ul&gt;&lt;li&gt;&lt;span style=";font-family:Calibri;font-size:100%;"  &gt;The Thrift IDL was updated    to match the new API. Be sure to have a look!&lt;/span&gt;&lt;/li&gt;&lt;/ul&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/964289351835175252-5299607035355451685?l=jdcryans.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://jdcryans.blogspot.com/feeds/5299607035355451685/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=964289351835175252&amp;postID=5299607035355451685' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/964289351835175252/posts/default/5299607035355451685'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/964289351835175252/posts/default/5299607035355451685'/><link rel='alternate' type='text/html' href='http://jdcryans.blogspot.com/2008/09/my-personal-notes-on-021.html' title='My Personal Notes on 0.2.1'/><author><name>Jean-Daniel Cryans</name><uri>http://www.blogger.com/profile/14961120027247545138</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='32' src='http://2.bp.blogspot.com/_ahj2mz4i5JE/SNzqhwwUynI/AAAAAAAAABI/9WgznWtfVEQ/S220/me.JPG'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-964289351835175252.post-6035244667438727054</id><published>2008-08-29T11:14:00.000-07:00</published><updated>2008-08-29T12:59:52.296-07:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='project status'/><category scheme='http://www.blogger.com/atom/ns#' term='Powerset'/><category scheme='http://www.blogger.com/atom/ns#' term='hbase'/><category scheme='http://www.blogger.com/atom/ns#' term='Microsoft'/><title type='text'>Current Project Status</title><content type='html'>Ok so a lot has been going on lately, here's where we are today.&lt;br /&gt;&lt;br /&gt;The acquisition of Powerset by Microsoft was feared by many members of the community (since PSet sponsors HBase by having two near full time devs and we all know MS love for OSS) but it turned out to be not that bad. For example, MS became an Apache &lt;a href="http://www.apache.org/foundation/thanks.html"&gt;Platinum sponsor&lt;/a&gt; which seems to imply that they are willing to change their perspective. Also, Jim and Stack (the two devs employed by PSet) cannot commit code since August (though they can support, test, describe how to fix bugs, make releases, etc), which IS bad, but this is only to give some time to the MS lawyers to sort out a way to make sure that the company's IP does not get into the HBase code. From my  point of view, this is really motivating knowing that 1) they *might* want to keep HBase and 2) they *might* put money into it (instead of burning some VC's money). Finally, I became a committer and some contributors helped so the patches kept coming.&lt;br /&gt;&lt;br /&gt;Regarding HBase versions numbering, there is a big change. Current major version is 0.2 and the next one will be 0.18. The goal of this is that it will be clear to users what version of Hadoop they should use with each version of HBase. We will also try the follow a schedule for our releases. Here is what Jim said on the subject:&lt;br /&gt;&lt;blockquote&gt;&lt;/blockquote&gt;&lt;blockquote&gt;I do not want to get &lt;span class="nfakPe"&gt;HBase&lt;/span&gt; as far behind the curve as we were with 0.2.0. Until that release, there was no &lt;span class="nfakPe"&gt;version&lt;/span&gt; of &lt;span class="nfakPe"&gt;HBase&lt;/span&gt; that worked with hadoop-0.17.x.&lt;br /&gt;&lt;br /&gt;What I'd like to do in the future is feature freeze &lt;span class="nfakPe"&gt;HBase&lt;/span&gt; when a new Hadoop release comes out, apply only bug fixes and release a new &lt;span class="nfakPe"&gt;HBase&lt;/span&gt; as soon as possible after Hadoop releases.&lt;br /&gt;&lt;br /&gt;Any features not included in a release will be included in the next one. In this way, there will always be a &lt;span class="nfakPe"&gt;version&lt;/span&gt; of &lt;span class="nfakPe"&gt;HBase&lt;/span&gt; that works with each released &lt;span class="nfakPe"&gt;version&lt;/span&gt; of Hadoop shortly after the Hadoop release.&lt;/blockquote&gt;&lt;blockquote&gt;&lt;/blockquote&gt;Since Hadoop 0.18.0 was released, HBase is now in a feature freeze and as soon as we fix the remaining bugs a release candidate will be posted. I will try to put up some release notes before it comes out.&lt;br /&gt;&lt;blockquote&gt;&lt;/blockquote&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/964289351835175252-6035244667438727054?l=jdcryans.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://jdcryans.blogspot.com/feeds/6035244667438727054/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=964289351835175252&amp;postID=6035244667438727054' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/964289351835175252/posts/default/6035244667438727054'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/964289351835175252/posts/default/6035244667438727054'/><link rel='alternate' type='text/html' href='http://jdcryans.blogspot.com/2008/08/current-project-status.html' title='Current Project Status'/><author><name>Jean-Daniel Cryans</name><uri>http://www.blogger.com/profile/14961120027247545138</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='32' src='http://2.bp.blogspot.com/_ahj2mz4i5JE/SNzqhwwUynI/AAAAAAAAABI/9WgznWtfVEQ/S220/me.JPG'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-964289351835175252.post-1986955087388902445</id><published>2008-08-29T08:56:00.000-07:00</published><updated>2008-08-29T11:07:13.563-07:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='hbase'/><title type='text'>The Unofficial HBase Blog</title><content type='html'>Hi everyone,&lt;br /&gt;&lt;br /&gt;For those who don't know me, I'm one of the HBase committers but also a student in Software Engineering at Ecole de technologie superieure in Montreal, Quebec. A lot of things have happened in the recent months (Microsoft buying Powerset for starters) so I thought that it would be nice to have a blog on HBase. Subjects I will likely cover:&lt;br /&gt;&lt;ul&gt;&lt;li&gt;Project status&lt;/li&gt;&lt;li&gt;Release notes (from my point of view)&lt;br /&gt;&lt;/li&gt;&lt;li&gt;Introductions to HBase&lt;/li&gt;&lt;li&gt;Frequent problems new comers have with HBase and how to solve them&lt;/li&gt;&lt;li&gt;Personal notes on HBase&lt;/li&gt;&lt;/ul&gt;Oh and by the way, my first language is french so be kind regarding my english ;)&lt;br /&gt;&lt;br /&gt;J-D&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/964289351835175252-1986955087388902445?l=jdcryans.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://jdcryans.blogspot.com/feeds/1986955087388902445/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=964289351835175252&amp;postID=1986955087388902445' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/964289351835175252/posts/default/1986955087388902445'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/964289351835175252/posts/default/1986955087388902445'/><link rel='alternate' type='text/html' href='http://jdcryans.blogspot.com/2008/08/unofficial-hbase-blog.html' title='The Unofficial HBase Blog'/><author><name>Jean-Daniel Cryans</name><uri>http://www.blogger.com/profile/14961120027247545138</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='32' src='http://2.bp.blogspot.com/_ahj2mz4i5JE/SNzqhwwUynI/AAAAAAAAABI/9WgznWtfVEQ/S220/me.JPG'/></author><thr:total>0</thr:total></entry></feed>
