HBase は、HDFS 上に構築された分散カラム ストレージ システムで、主に大規模な構造化データ ストレージに使用されます。ここでの目標は、Pythonが HBase にアクセスするための基本的な環境を提供することだけなので、バイナリ パッケージを直接ダウンロードして 1 台のマシンにインストールします。ダウンロード後、解凍し、設定ファイルを変更して、HBase を直接起動します。使用したシステムバージョンはubuntu14.04です。
wget https://mirrors.tuna.tsinghua.edu.cn/apache/hbase/1.2.4/hbase-1.2.4-bin.tar.gz tar zxvf hbase-1.2.4-bin.tar.gz
hbase-env.shを変更し、JAVA_HOMEを設定します。
export JAVA_HOME=/usr/lib/jvm/java-8-oracle
hbase-site.xmlを変更し、データを保存するルートディレクトリを設定します。
<configuration> <property> <name>hbase.rootdir</name> <value>file:///home/mi/work/hbase/data</value> </property></configuration>
bin/start-hbase.sh # 启动bin/hbase shell # 进入hbase交互shell
HBaseをインストールした後、Thriftもインストールする必要があります。他の言語でHBaseを呼び出す場合はThrift経由で接続する必要があるためです。
sudo apt-get install automake bison flex g++ git libboost1.55 libevent-dev libssl-dev libtool make pkg-config
PS: libboost1.55-all-dev、ubuntu14.04 でのインストールに問題があったため、libboost1.55 をインストールしました。
ソースコードをダウンロードし、解凍してコンパイルしてインストールします。 Thrift のダウンロード アドレス
tar zxf thrift-0.10.0.tar.gzcd thrift-0.10.0/./configure --with-cpp --with-boost --with-python --without-csharp --with-java --without-erlang --without-perl --with-php --without-php_extension --without-ruby --without-haskell --without-gomake # 编译耗时较长sudo make install
bin/hbase-daemon.sh start thrift
システム プロセスを確認します
~/work/hbase/hbase-1.2.4/conf$ jps3009 ThriftServer4184 HMaster5932 Jps733 Main
ThriftServer が正常に開始されていることがわかり、複数の言語を使用して Thrift 経由で HBase にアクセスできるようになります。
以下では、例として Python を使用して、HBase にアクセスする方法を示します。
sudo pip install thriftsudo pip install hbase-thrift
from thrift import Thriftfrom thrift.transport import TSocketfrom thrift.transport import TTransportfrom thrift.protocol import TBinaryProtocolfrom hbase import Hbasefrom hbase.ttypes import * transport = TSocket.TSocket('localhost', 9090) transport = TTransport.TBufferedTransport(transport) protocol = TBinaryProtocol.TBinaryProtocol(transport) client = Hbase.Client(protocol) transport.open() contents = ColumnDescriptor(name='cf:', maxVersions=1)# client.deleteTable('test')client.createTable('test', [contents])print client.getTableNames()# insert datatransport.open() row = 'row-key1'mutations = [Mutation(column="cf:a", value="1")] client.mutateRow('test', row, mutations) # get one rowtableName = 'test'rowKey = 'row-key1'result = client.getRow(tableName, rowKey) print resultfor r in result: print 'the row is ', r.row print 'the values is ', r.columns.get('cf:a').value
['test'] [TRowResult(columns={'cf:a': TCell(timestamp=1488617173254, value='1')}, row='row-key1')] the row is row-key1 the values is 1
以上がPython での HBase 操作サンプル コード分析の詳細内容です。詳細については、PHP 中国語 Web サイトの他の関連記事を参照してください。