Archives of Support Questions (Read Only)

This is an archived board for historical reference. Information and links may no longer be available or relevant
Announcements
This board is archived and read-only for historical reference. To ask a new question, please post a new topic on the appropriate active board.

pull metadata from Hive metastore

avatar
New Member

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.

1 ACCEPTED SOLUTION

avatar
Super Guru

@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:

https://hive.apache.org/javadocs/r0.13.1/api/metastore/org/apache/hadoop/hive/metastore/HiveMetaStor...

https://hive.apache.org/javadocs/r0.13.1/api/metastore/org/apache/hadoop/hive/metastore/MetaStoreUti...

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.

View solution in original post

2 REPLIES 2

avatar
Super Guru

@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:

https://hive.apache.org/javadocs/r0.13.1/api/metastore/org/apache/hadoop/hive/metastore/HiveMetaStor...

https://hive.apache.org/javadocs/r0.13.1/api/metastore/org/apache/hadoop/hive/metastore/MetaStoreUti...

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.

avatar
New Member

thanks a lot