项目作者: taozle

项目描述 :
Hive thrift client which implement database/sql
高级语言: Thrift
项目地址: git://github.com/taozle/go-hive-driver.git
创建时间: 2018-12-05T11:08:26Z
项目社区:https://github.com/taozle/go-hive-driver

开源协议:

下载


Go-Hive-Driver

A hive driver for Go’s database/sql package

Features

  • Support hive thrift server 2
  • Support SASL
  • Implement database/sql package

Requirements

  • Go 1.10+
  • Hive thrift server 2

Usage

  1. package main
  2. import (
  3. "database/sql"
  4. _ "github.com/taozle/go-hive-driver"
  5. )
  6. func main() {
  7. db, err := sql.Open("hive", "hive://user:password@host:port?auth=sasl&batch=500")
  8. }