检查表是否存在
检查 Hbase 表是否存在的最快方法是什么?查看此 API:
http://hbase.apache。 org/devapidocs/org/apache/hadoop/hbase/client/HBaseAdmin.html 其中哪一个最快:
使用#4,您可以获得所有表的列表,并对其进行迭代,并比较这些表之一是否与您的表名称匹配。
或者还有另一种更聪明的方法?
What is the fastest way to check if Hbase table exists? Looking at this api :
http://hbase.apache.org/devapidocs/org/apache/hadoop/hbase/client/HBaseAdmin.html
Which of these is the fastest :
With #4 you get list of all tables and iterate trough it and compare if one of those tables matches your table name.
Or there is another, more smart way ?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(5)
这是我的示例代码。 (scala)
这里,你只需要使用“tableExists”来检查这个TableName是否存在。
Here is my sample code. (scala)
Here, you just need to use "tableExists" to check whether this TableName exists.
使用 HBaseAdmin.tableExists 只需大约 500ms 即可检查表是否存在。我们的集群中只有两个节点,因此它可能取决于集群的大小,但它看起来并不是不合理的慢。
Using HBaseAdmin.tableExists only takes about 500ms to check if the table exists. We only have two nodes in our cluster, so it might be dependent on the size of your cluster, but it doesn't seem unreasonably slow.
您可以尝试打开 HTable 到表,(我认为)如果表不存在,它会抛出异常/错误(尚未工作,因此无法进行快速测试)。
这并不是 100% 有效,只是一个突发的想法。 :)
You could attempt to open an HTable to the table and (I think) it will throw an exception/error (not at work yet so can't do a quick test) if the table doesn't exist.
Not 100% this will work, just an off the top of the head idea. :)
每次启动应用程序时,我都必须检查表是否存在。我已经在配置类中使用 Spring Boot 做了这个
这是代码,希望它有所帮助。
I have to check if table exist every time i start my app. I have made this in a configuration class, with spring boot
Here is the code, hope it helps.