0
我試圖篩選從HBase的表(我用HappyBase)行,具體我試圖讓行,其「身份證」小於1000:過濾整數與HBase的+ Python的
for key, data in graph_table.scan(filter="SingleColumnValueFilter('cf', 'id', <, 'binary:1000')"):
print key, data
的結果如下的:
<http://ieee.rkbexplorer.com/id/publication-d2a6837e67d808b41ffe6092db50f7cc> {'cf:type': 'v', 'cf:id': '100', 'cf:label': '<http://www.aktors.org/ontology/portal#Proceedings-Paper-Reference>'}
<http://www.aktors.org/ontology/date#1976> {'cf:type': 'v', 'cf:id': '1', 'cf:label': '<http://www.aktors.org/ontology/support#Calendar-Date>'}
<http://www.aktors.org/ontology/date#1985> {'cf:type': 'v', 'cf:id': '10', 'cf:label': '<http://www.aktors.org/ontology/support#Calendar-Date>'}
在表中不存在與從1「身份證」到1000如果我使用HBase的Java庫,它工作正常,解析與Byte.toBytes整數值在Java代碼中的各行( )功能。
謝謝。
您能澄清一下:您只使用此搜索來獲得id = 1 | 10 | 100的結果,而表中的值爲1-1000? – Suman
是的,我的數值從1到超過7000,在之前的文章中我想說的是996個結果不見了。 –
SO是一個Q&A網站,因此如果您可以將問題和答案都帶入適當的格式,這將非常有幫助。你可以發佈一個答案給你自己的問題,這很完美。如果這是不可能的,請考慮完全刪除問題。 – JensG