Fork me on GitHub

版权声明 本站原创文章 由 萌叔 发表
转载请注明 萌叔 | https://vearne.cc

起因

使用happybase 访问hbase 时


def scan(self, row_start=None, row_stop=None, row_prefix=None, columns=None, filter=None, timestamp=None, include_timestamp=False, batch_size=1000, scan_batching=None, limit=None, sorted_columns=False):

scan 函数中有一个row_prefix 参数,而这个参数在java client 对应函数并没有出现,它到底有什么作用呢
查看源码,我们能看到

if row_prefix is not None:  
    if row_start is not None or row_stop is not None:  
        raise TypeError(  
            "'row_prefix' cannot be combined with 'row_start' "  
            "or 'row_stop'")  

    row_start = row_prefix  
    row_stop = str_increment(row_prefix)  

str_increment 的具体代码

def str_increment(s):  
    """Increment and truncate a byte string (for sorting purposes) 

    This functions returns the shortest string that sorts after the given 
    string when compared using regular string comparison semantics. 

    This function increments the last byte that is smaller than ``0xFF``, and 
    drops everything after it. If the string only contains ``0xFF`` bytes, 
    `None` is returned. 
    """  
    for i in xrange(len(s) - 1, -1, -1):  
        if s[i] != '\xff':  
            return s[:i] + chr(ord(s[i]) + 1)  

    return None  

看完代码大家应该很明白了,row_prefix 被转换成了row_start 和row_stop。
当有如下场景

微博表

用户ID_微博ID

假定我们想获取此用户的所有微博,在scan时就没有必要设定scan范围 ‘用户ID_0’ ~ ‘用户ID_a’

而可以直接使用row_prefix = ‘用户ID’

发表回复

您的电子邮箱地址不会被公开。 必填项已用 * 标注

此站点使用Akismet来减少垃圾评论。了解我们如何处理您的评论数据