Conda 安装Jupyter:使用Pyhive(Kerberos)

安装基本环境

conda create -n bigdata python=3.10

conda activate bigdata

conda install -y pandas numpy pyhive

yum install gcc-c++ python-devel.x86_64 cyrus-sasl-devel.x86_64

pip install sasl

Jupyter Notebook

安装jupyter notebook配置自动提示

conda install nb_conda_kernels

配置jupyter,添加密码,允许root,设置启动目录

环境配置-为linux服务器配置可以远程访问的Jupyter - 知乎 (zhihu.com)

jupyter notebook启动,以下报错可忽略

    AttributeError: 'NotebookApp' object has no attribute 'io_loop'


PyHive连接开启Kerberos的Hive

jupyter notebook部署的服务器为集群已配置Kerberos认证的服务器,否则需要配置客户端认证

from pyhive import hive
import pandas as pd
import numpy as np
import time

def func_time(func):
    def wrapper(*args, **kwargs):
        start_time = time.time()
        result = func(*args, **kwargs)
        end_time = time.time()

        execution_time = end_time - start_time
        print(f"函数 {func.__name__} 的执行时间为:{execution_time} 秒")

        return result

    return wrapper


class HiveCursor:
    def __init__(self, host, port, db, auth, username, configuration={'hive.execution.engine': 'spark'}):
        self.host = host
        self.port = port
        self.db = db
        self.username = username
        self.auth = auth
        self.conn = None
        self.cursor = None
        self.configuration = configuration

    def __enter__(self):
        # 建立与 Hive 的连接
        if self.auth == "KERBEROS":
            self.conn = hive.Connection(host=self.host, port=self.port, database=self.db,
                                        kerberos_service_name=self.username,
                                        auth=self.auth, configuration=self.configuration)
        else:
            self.conn = hive.Connection(host=self.host, port=self.port, database=self.db, username=self.username,
                                        auth=self.auth, configuration=self.configuration)
        self.cursor = self.conn.cursor()
        return self

    def query(self, sql):
        self.cursor.execute(sql)
        # 将查询结果读取到 DataFrame
        df = pd.DataFrame(self.cursor.fetchall())
        # 设置 DataFrame 列名
        df.columns = [desc[0] for desc in self.cursor.description]
        return df

    def __exit__(self, exc_type, exc_val, exc_tb):
        # 关闭连接
        self.conn.close()


@func_time
def hive_kerberos():
    query = "show databases"

    with HiveCursor(host="master", port=10000, db="default", auth='KERBEROS',
                    username='hive') as _hive:
        result = _hive.query(sql)
        print(result)


@func_time
def hive_on_spark():
    query = "show databases"

    with HiveCursor(host="master", port=10000, db="default", auth='KERBEROS',
                    username='hive', configuration={'hive.execution.engine': 'spark'}) as _hive:
        df = _hive.query(sql)
        print(df)

相关推荐

  1. Conda 安装Jupyter使用Pyhive(Kerberos)

    2023-12-07 17:16:04       68 阅读
  2. jupyter | jupyter使用conda虚拟环境

    2023-12-07 17:16:04       41 阅读
  3. jupyter使用conda环境

    2023-12-07 17:16:04       54 阅读
  4. 使用conda安装openturns

    2023-12-07 17:16:04       27 阅读

最近更新

  1. docker php8.1+nginx base 镜像 dockerfile 配置

    2023-12-07 17:16:04       94 阅读
  2. Could not load dynamic library ‘cudart64_100.dll‘

    2023-12-07 17:16:04       100 阅读
  3. 在Django里面运行非项目文件

    2023-12-07 17:16:04       82 阅读
  4. Python语言-面向对象

    2023-12-07 17:16:04       91 阅读

热门阅读

  1. Serial for Mac:Macos 电脑全功能串行终端管理软件

    2023-12-07 17:16:04       62 阅读
  2. VUE笔试题精讲1

    2023-12-07 17:16:04       79 阅读
  3. ubuntu使用ffmpeg录屏(播放黑屏问题解决)

    2023-12-07 17:16:04       64 阅读
  4. undo的作用

    2023-12-07 17:16:04       61 阅读
  5. 希尔排序:提高排序效率的经典方法

    2023-12-07 17:16:04       61 阅读