Created 08-02-2016 06:39 PM
I would like to pull metadata from Hive metastore without wrong about what database metastore uses. It seems like I have following APIs to use:
1. Hive Server2 JDBC
2. WebHCatalog
3. Hive Metastore Client
(Or there are more options)
I'm building a tool to pull metadata and maybe want to keep my pulled metadata up to date. Which API would work best for me?
Any related information will be highly appreciated.
Created 08-03-2016 08:23 PM
@Yan Chen\
For example, I would use the API corresponding for the Hive version. Here is an example for 0.13, which I heavily relied on the following to do something somehow similar with what you are trying to do:
I used some resources from here: http://www.javased.com/index.php?api=org.apache.hadoop.hive.metastore.api.MetaException
Let me know if this helps or you need more help.
Created 08-03-2016 08:23 PM
@Yan Chen\
For example, I would use the API corresponding for the Hive version. Here is an example for 0.13, which I heavily relied on the following to do something somehow similar with what you are trying to do:
I used some resources from here: http://www.javased.com/index.php?api=org.apache.hadoop.hive.metastore.api.MetaException
Let me know if this helps or you need more help.
Created 08-15-2016 05:14 PM
thanks a lot