我可以用
curl -H "Accept: application/json" http://localhost:8080/table/*
我可以限制行数
curl -H "Accept: application/json" http://localhost:8080/table/*?limit=10
问题是,行总是插入的前10行,而不是最后10行。
我想得到相反的顺序,特别是结合极限参数。
我知道setreversed参数,在hbase shell中,它可以正常工作:
scan 'table', {LIMIT => 10, REVERSED=> TRUE}
1条答案
按热度按时间exdqitrt1#
看起来它并没有在旧版本中实现,但补丁是可用的。
这是有关吉拉的机票
最终应该是
curl -H "Accept: application/json" http://localhost:8080/table/*?limit=10&reversed=true