Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

  1. For bigtop-0.2.0 uncomment and set JAVA_HOME in /etc/hbase/conf/hbase-env.sh
  2. For bigtop-0.3.0 uncomment and set JAVA_HOME in /etc/hbase/conf.dist/hbase-env.sh this shouldn't be necessary because JAVA_HOME is auto detected
    No Format
    sudo service hbase-master start
    hbase shell
    
    Test the HBase shell by creating a HBase table named t1 with 3 columns f1, f2 and f3. Verify the table exists in HBase
    No Format
    create 't1','f1','f2','f3'
    list
    
  3. you should see a verification from HBase the table t1 exists, the symbol t1 which is the table name should appear under list

...