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/Hbase/HbaseShell
The comment on the change is:
I edited the example table schema for next examples
------------------------------------------------------------------------------
{{{
Hbase > CREATE TABLE movieLog_table (
- --> year, length, inColor, studioName, vote, producer)
+ --> year, length, inColor, studioName, vote, producer, actor)
--> NUM_VERSIONS 10;
Hbase > CREATE TABLE webtable (
@@ -169, +169 @@
* ~-If '''TIMESTAMP''' is not specified for the value, the current time is used as its
timestamp.-~
{{{
- Hbase > INSERT INTO movieLog_table (year:, length:, inColor:, studioName:, 'vote:user
name', producer:)
+ Hbase > INSERT INTO movieLog_table (year:, length:, inColor:, studioName:, 'vote:user
name', producer:, 'actor:hero')
- --> VALUES ('1977', '124', 'true', 'Fox', '5', 'George Lucas')
+ --> VALUES ('1977', '124', 'true', 'Fox', '5', 'George Lucas', 'Mark Hamill')
--> WHERE row='Star Wars';
}}}
|