blob: fcf561f874a8442260d0d0e439fbfeb3eb2cc3f4 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
|
Commands can be run from any cluster machine with hadoop environment config
set up. Most of these commands are run from the shell (start with `hbase
shell`). There is only one AIT/Webgroup HBase instance/namespace; there may be
QA/prod tables, but there are not QA/prod clusters.
## Create Table
Create column families (note: not all individual columns) with something like:
create 'wbgrp-journal-extract-0-qa', 'f', 'file', {NAME => 'grobid0', COMPRESSION => 'snappy'}
## Run Thrift Server Informally
The Thrift server can technically be run from any old cluster machine that has
Hadoop client stuff set up, using:
hbase thrift start -nonblocking -c
Note that this will run version 0.96, while the actual HBase service seems to
be running 0.98.
To interact with this config, use happybase (python) config:
conn = happybase.Connection("bnewbold-dev.us.archive.org", transport="framed", protocol="compact")
# Test connection
conn.tables()
|