Apache Zeppelin 如何可视化来自 Hbase 的数据?

How does Apache Zeppelin visualize data from Hbase?

由于Apache Zeppelin 支持Hbase 作为解释器,可以可视化任何识别的后端语言,我想知道是否可以使用Zeppelin 直接可视化来自Hbase 的数据?

现在我只能从飞艇上查看Hbase中的data。

也欢迎任何关于好的替代方案的建议。最终目标是对大量地理空间数据进行可视化和数据分析。

can visualize any backend language that's recognized

这不完全正确。 table 和图表可视化通常需要 table 结构。

Hbase 解释器只是 a proxy into the hbase shell command on that machine Zeppelin 在其上运行,不会将结果重新格式化为 table 以便 Zeppelin 识别和格式化为图形。

如果你真的想可视化一些东西,我相信一般的解决方案是安装 Apache Phoenix 并使用它 as a JDBC interpreter 或者在 Hbase 上安装 Kylin 并使用那个解释器

See Phoenix example here