Advertisement
Guest User

john

a guest
Sep 13th, 2013
77
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Bash 0.65 KB | None | 0 0
  1. hbase(main):013:0> put 'mytable', 'key1', 'cf:c', 'val'
  2. 0 row(s) in 0.0110 seconds
  3.  
  4. hbase(main):011:0> put 'mytable', 'key1', 'cf:d', 'val'
  5. 0 row(s) in 0.0060 seconds
  6.  
  7. hbase(main):012:0> put 'mytable', 'key1', 'cf:a', 'val'
  8. 0 row(s) in 0.0060 seconds
  9.  
  10.  
  11. hbase(main):014:0> get 'mytable', 'key1'
  12. COLUMN                CELL                                                      
  13.  cf:a                 timestamp=1376468325426, value=val                        
  14.  cf:c                 timestamp=1376468328318, value=val                        
  15.  cf:d                 timestamp=1376468321642, value=val                        
  16. 3 row(s) in 0.0570 seconds
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement