Dear Wiki user, You have subscribed to a wiki page or wiki category on "Lucene-hadoop Wiki" for change notification.
The following page has been changed by udanax: http://wiki.apache.org/lucene-hadoop/HbaseShell ------------------------------------------------------------------------------ '''Projection''' + '''~+^Ï^+~'''~-title-~,~-year-~,~-length-~'''~+^(movieLog_table)^+~''' - [http://mirror.udanax.org/~udanax/rsync1/blog_udanax_org/udanax/280/o_ex2.gif] - - {{{ - Hbase > A = SELECT movieLog_table; - --> B = A.Projection('year','length'); - - Hbase > PRINT B; - }}} ||<rowbgcolor="#ececec">title ||year ||length || ||Star Wars ||1977 ||124 || @@ -163, +156 @@ '''Selection''' + '''~+^Ï^+~'''~-length>100-~'''~+^(movieLog_table)^+~''' - [http://mirror.udanax.org/~udanax/rsync1/blog_udanax_org/udanax/280/o_ex3.gif] - - {{{ - Hbase > A = SELECT movieLog_table - --> WHERE column='studioName:Fox'; - Hbase > B = A.Filter by "length" > 100; - - Hbase > PRINT B; - }}} ||<rowbgcolor="#ececec">title ||year ||length ||inColor ||studioName ||producer || ||Star Wars ||1977 ||124 ||true ||Fox ||12345 || @@ -180, +165 @@ '''Example''' + '''~+^Ï^+~'''~-title-~,~-year-~'''~+^Ï^+~'''~-length>100-~'''~+^(movieLog_table)â©Ï^+~'''~-studioName='Fox'-~'''~+^(movieLog_table))^+~''' - [http://mirror.udanax.org/~udanax/rsync1/blog_udanax_org/udanax/280/o_ex4.gif] - - {{{ - Hbase > A = SELECT movieLog_table - --> WHERE column='studioName:Fox'; - Hbase > B = A.Filter by "length" > 100; - Hbase > C = B.Projection('year'); - - Hbase > PRINT C; - }}} == Matrix Operations == {{{