Heim  >  Artikel  >  Backend-Entwicklung  >  Python betreibt die HBase-Instanz sparsam

Python betreibt die HBase-Instanz sparsam

高洛峰
高洛峰Original
2016-10-18 14:17:371553Durchsuche

Thrift ist eine von Facebook entwickelte und quelloffene binäre Kommunikations-Middleware. Durch Thrift können wir die Vorteile jeder Sprache voll ausnutzen und effizienten Code schreiben.


Artikel über Sparsamkeit: http://pan.baidu.com/share/link?shareid=234128&uk=3238841275


Thrift installieren: http://thrift.apache.org/docs/install/ubuntu/


Gehen Sie nach Abschluss der Installation in das hbase-Verzeichnis und suchen Sie Hbase.thrift, die Datei finden Sie unter


hbase-0.94.4/src/main/resources/org/apache/hadoop/hbase/thrift


thrift --gen python hbase.thrift generiert den gen-py-Ordner und ändert ihn in hbase


Installieren Sie den Python Thrift Bibliothek


sudo pip install thrift


Starten Sie den Thrift-Dienst von hbase: bin/hbase-daemon.sh start thrift default Der Port ist 9090


Hbase-Tabelle erstellen:

from thrift import Thrift
from thrift.transport import TSocket
from thrift.transport import TTransport
from thrift.protocol import TBinaryProtocol
  
from hbase import Hbase
from 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.createTable('test', [contents])
  
print client.getTableNames()

Führen Sie nach Erfolg die hbase-Shell aus und verwenden Sie die Befehlsliste, um sie anzuzeigen Was Sie gerade gesagt haben: Die Testtabelle wurde erfolgreich erstellt.

Daten einfügen:

from thrift import Thrift
from thrift.transport import TSocket
from thrift.transport import TTransport
from thrift.protocol import TBinaryProtocol
  
from hbase import Hbase
  
from hbase.ttypes import *
  
transport = TSocket.TSocket('localhost', 9090)
  
transport = TTransport.TBufferedTransport(transport)
  
protocol = TBinaryProtocol.TBinaryProtocol(transport)
  
client = Hbase.Client(protocol)
  
transport.open()
  
row = 'row-key1'
  
mutations = [Mutation(column="cf:a", value="1")]
client.mutateRow('test', row, mutations, None)

Eine Datenzeile abrufen:

from thrift import Thrift
from thrift.transport import TSocket
from thrift.transport import TTransport
from thrift.protocol import TBinaryProtocol
  
from hbase import Hbase
from hbase.ttypes import *
  
transport = TSocket.TSocket('localhost', 9090)
transport = TTransport.TBufferedTransport(transport)
  
protocol = TBinaryProtocol.TBinaryProtocol(transport)
  
client = Hbase.Client(protocol)
  
transport.open()
  
tableName = 'test'
rowKey = 'row-key1'
  
result = client.getRow(tableName, rowKey, None)
print result
for r in result:
    print 'the row is ' , r.row
    print 'the values is ' , r.columns.get('cf:a').value

Um mehrere Zeilen zurückzugeben, müssen Sie Scan verwenden:

from thrift import Thrift
from thrift.transport import TSocket
from thrift.transport import TTransport
from thrift.protocol import TBinaryProtocol
  
from hbase import Hbase
from hbase.ttypes import *
  
transport = TSocket.TSocket('localhost', 9090)
transport = TTransport.TBufferedTransport(transport)
  
protocol = TBinaryProtocol.TBinaryProtocol(transport)
  
client = Hbase.Client(protocol)
transport.open()
  
scan = TScan()
tableName = 'test'
id = client.scannerOpenWithScan(tableName, scan, None)
  
result2 = client.scannerGetList(id, 10)
  
print result2

scannerGet Es wird jeweils nur eine Datenzeile erfasst:

from thrift import Thrift
from thrift.transport import TSocket
from thrift.transport import TTransport
from thrift.protocol import TBinaryProtocol
  
from hbase import Hbase
from hbase.ttypes import *
  
transport = TSocket.TSocket('localhost', 9090)
transport = TTransport.TBufferedTransport(transport)
  
protocol = TBinaryProtocol.TBinaryProtocol(transport)
  
client = Hbase.Client(protocol)
transport.open()
  
scan = TScan()
tableName = 'test'
id = client.scannerOpenWithScan(tableName, scan, None)
result = client.scannerGet(id)
while result:
    print result
    result = client.scannerGet(id)


Stellungnahme:
Der Inhalt dieses Artikels wird freiwillig von Internetnutzern beigesteuert und das Urheberrecht liegt beim ursprünglichen Autor. Diese Website übernimmt keine entsprechende rechtliche Verantwortung. Wenn Sie Inhalte finden, bei denen der Verdacht eines Plagiats oder einer Rechtsverletzung besteht, wenden Sie sich bitte an admin@php.cn