通过 Thrift(在 Ruby 中)在 Hbase 扫描器中通过正则表达式选择列

发布于 2024-11-28 13:11:36 字数 485 浏览 2 评论 0原文

文档建议我应该能够传递正则表达式作为列限定符。

我在列族“C”中有一个名为“F1:I”和“F2:I”的列。请考虑以下情况:

columns = ['C:F1:I']
scanner = hbase.scannerOpen('myTable', startKey, columns)

返回所有“F1”行。我本来希望能够传递正则表达式。我尝试过以下变体:

columns = ['C:F.*']
scanner = hbase.scannerOpen('myTable', startKey, columns)

什么也没有。

The docs suggest I should be able to pass a regex as a column qualifier.

I have a columns named "F1:I" and "F2:I" in the column family "C". Consider the following:

columns = ['C:F1:I']
scanner = hbase.scannerOpen('myTable', startKey, columns)

All the "F1" rows are returned. I had hoped to be able to pass in a regex. I've tried variations of the following:

columns = ['C:F.*']
scanner = hbase.scannerOpen('myTable', startKey, columns)

Nothing.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

月寒剑心 2024-12-05 13:11:37

根据 HBase 提交者 Lars George 的说法,当前版本的 thrift 服务不支持此功能。上面引用的文档具有误导性。

thrift 的下一个版本预计将更好地支持这些场景。

According to HBase committer Lars George, the current version of the thrift service does not support this. The documentation referenced above is misleading.

The next version of thrift is expected to support these scenarios better.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文