Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/akolb1/gometastore
Go Client for Hive Metastore
https://github.com/akolb1/gometastore
go golang hive hive-metastore hive-metastore-client hms metastore rest-api rest-client thrift
Last synced: 3 months ago
JSON representation
Go Client for Hive Metastore
- Host: GitHub
- URL: https://github.com/akolb1/gometastore
- Owner: akolb1
- License: apache-2.0
- Created: 2017-12-17T07:44:50.000Z (almost 7 years ago)
- Default Branch: master
- Last Pushed: 2022-12-18T02:04:03.000Z (almost 2 years ago)
- Last Synced: 2024-05-07T18:28:26.840Z (6 months ago)
- Topics: go, golang, hive, hive-metastore, hive-metastore-client, hms, metastore, rest-api, rest-client, thrift
- Language: Go
- Size: 671 KB
- Stars: 14
- Watchers: 5
- Forks: 19
- Open Issues: 3
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
- awesome-hive - Go Client for Hive Metastore
README
# gometastore
Tools for accessing Hive Metastore over thrift API.
The repository provides a set of tools for accessing Hive Metastore (HMS) directly using
its Thrift interface rather then going via beeline. It can be use to explore and troubleshoot
HMS and to develop other scripts and tools that need to access it.## Kerberos support
**None of these tools work in kerberos-enabled cluster.**
You should consider using [Java-based toolkit](https://github.com/akolb1/hclient)
if you need support for Kerberos.## Installation
Make sure that you have an up-to-date GO environment. Currently `Go 1.11` or higher is required.
On MacOS this can be as easy as running
brew install go
Building:
go get -u github.com/akolb1/gometastore/...
This command will install tools in `~/go/bin` directory.* [hmstool][] - CLI for HMS client
[hmstool]: https://github.com/akolb1/gometastore/tree/master/hmstool
* [GO CLient library][]
[GO CLient library]: https://github.com/akolb1/gometastore/tree/master/hmsclient
* [REST front-end for Hive Metastore][]
[REST front-end for Hive Metastore]: https://github.com/akolb1/gometastore/tree/master/hmsweb
* [HMS Benchmarks][]
[HMS Benchmarks]: https://github.com/akolb1/gometastore/tree/master/hmsbench