中文字幕av专区_日韩电影在线播放_精品国产精品久久一区免费式_av在线免费观看网站

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

python連接clickhouse數據庫的方式有哪些

發布時間:2022-05-17 11:03:32 來源:億速云 閱讀:752 作者:zzz 欄目:開發技術

這篇文章主要介紹“python連接clickhouse數據庫的方式有哪些”,在日常操作中,相信很多人在python連接clickhouse數據庫的方式有哪些問題上存在疑惑,小編查閱了各式資料,整理出簡單好用的操作方法,希望對大家解答”python連接clickhouse數據庫的方式有哪些”的疑惑有所幫助!接下來,請跟著小編一起來學習吧!

    python連接clickhouse數據庫

    在Python中獲取系統信息的一個好辦法是使用psutil這個第三方模塊。

    顧名思義,psutil = process and system utilities,它不僅可以通過一兩行代碼實現系統監控,還可以跨平臺使用。

    主要針對clickhouse_driver的使用進行簡要介紹

    第一步:

    • 通過pip install clickhouse_driver 安裝 clickhouse_driver

    第二步:

    • 方法一:使用clickhouse_driver 包中的Client類,通過實例化一個客戶端進行對數據庫的增刪改查操作

    from clickhouse_driver import Client
    from datetime import datetime
    import psutil
    host_name = '192.168.50.94'
    client = Client(host=host_name,database='default',user='default',password='自己設的密碼',send_receive_timeout=20,port=55666)
    now = datetime.now()
    time_stamp = now.strftime('%a %b %d %H:%M:%S CST %Y')# Tue Apr 06 15:32:55 CST 2021  <class 'str'>
    create_at = datetime.now().strftime('%Y-%m-%d %H:%M:%S')
    disk_io = psutil.disk_io_counters()
    net_io = psutil.net_io_counters()
    chart_name = ["磁盤IO","網絡IO"]
    metric_name1 = ["讀(數量)","寫(數量)", "讀(字節)", "寫(字節)", "讀(時間)", "寫(時間)"]
    metric_name2 = ["發送字節數","接收字節數","發送包數","接收包"]
    metric_value1 = [disk_io.read_count,disk_io.write_count,disk_io.read_bytes,disk_io.write_bytes,disk_io.read_time,disk_io.write_time]
    metric_value2 = [net_io.bytes_sent,net_io.bytes_recv,net_io.packets_sent,net_io.packets_recv]
    try:
        for i in chart_name:
            if i is "磁盤IO":
                for j in metric_name1:
                    sql = "insert into clickhouse_host_metrics777(time_stamp,host_name, chart_name, metric_name,metric_value,create_at) " \
                          "values('%s','%s','%s','%s','%s','%s')" % \
                             (time_stamp, host_name, i, j, metric_value1[metric_name1.index(j)], create_at)
                    res = client.execute(sql)
            elif i is "網絡IO":
                for j in metric_name2:
                    sql = "insert into clickhouse_host_metrics777(time_stamp,host_name, chart_name, metric_name,metric_value,create_at) " \
                          "values('%s','%s','%s','%s','%s','%s')" % \
                          (time_stamp, host_name, i, j, metric_value2[metric_name2.index(j)], create_at)
                    res = client.execute(sql)
        print("成功寫入數據")
    except Exception as e:
        print(str(e))
    • 方法二:使用clickhouse_driver 包中的connect函數,通過實例化一個客戶端進行對數據庫的增刪改查操作

    from datetime import datetime
    import psutil
    from clickhouse_driver import connect
    host_name = '192.168.50.94'
    #賬號:密碼@主機名:端口號/數據庫
    conn = connect('clickhouse://default:自己設的密碼@'+host_name+':55666/default')
    cursor = conn.cursor()
    now = datetime.now()
    time_stamp = now.strftime('%a %b %d %H:%M:%S CST %Y')# Tue Apr 06 15:32:55 CST 2021  <class 'str'>
    create_at = datetime.now().strftime('%Y-%m-%d %H:%M:%S')
    disk_io = psutil.disk_io_counters()
    net_io = psutil.net_io_counters()
    chart_name = ["磁盤IO","網絡IO"]
    metric_name1 = ["讀(數量)","寫(數量)", "讀(字節)", "寫(字節)", "讀(時間)", "寫(時間)"]
    metric_name2 = ["發送字節數","接收字節數","發送包數","接收包"]
    metric_value1 = [disk_io.read_count,disk_io.write_count,disk_io.read_bytes,disk_io.write_bytes,disk_io.read_time,disk_io.write_time]
    metric_value2 = [net_io.bytes_sent,net_io.bytes_recv,net_io.packets_sent,net_io.packets_recv]
    try:
        for i in chart_name:
            if i is "磁盤IO":
                for j in metric_name1:
                    sql = "insert into clickhouse_host_metrics777(time_stamp,host_name, chart_name, metric_name,metric_value,create_at) values('%s','%s','%s','%s','%s','%s')" % \
                             (time_stamp, host_name, i, j, metric_value1[metric_name1.index(j)], create_at)
                    # res = client.execute(sql)
                    res = cursor.execute(sql)
            elif i is "網絡IO":
                for j in metric_name2:
                    sql = "insert into clickhouse_host_metrics777(time_stamp,host_name, chart_name, metric_name,metric_value,create_at) values('%s','%s','%s','%s','%s','%s')" % \
                          (time_stamp, host_name, i, j, metric_value2[metric_name2.index(j)], create_at)
                    res = cursor.execute(sql)
        cursor.close()
        print("成功寫入數據")
    except Exception as e:
        print(str(e))

    python將數據寫入clickhouse

    from clickhouse_driver import Client 
     
    # connect ClickHouse
    client = Client(host= ,port= ,user= ,database= , password=)
     
     
    # 得到table1中查詢的數據導入table2中(database2中應該事先建立對應的table2表)
    query_ck_sql = """ SELECT *
        FROM database1.table1
        WHERE date = today() """
    # 導入數據到臨時表
    try:
        # 導入數據
        client.execute("insert into {official_table_db}.{official_all_table_name}  \
            {query_ck_sql}".format(
                official_table_db = database2, 
                official_table_name = table2, 
                query_ck_sql = query_ck_sql) 
            ,types_check = True)
    except Exception as e:
        print str(e)

    到此,關于“python連接clickhouse數據庫的方式有哪些”的學習就結束了,希望能夠解決大家的疑惑。理論與實踐的搭配能更好的幫助大家學習,快去試試吧!若想繼續學習更多相關知識,請繼續關注億速云網站,小編會繼續努力為大家帶來更多實用的文章!

    向AI問一下細節

    免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

    AI

    怀安县| 德昌县| 黄龙县| 玉田县| 新巴尔虎左旗| 溧水县| 敦化市| 固镇县| 周至县| 遵义市| 乌拉特中旗| 肃北| 乳山市| 囊谦县| 泰安市| 兴宁市| 南投县| 手游| 克山县| 右玉县| 柳江县| 湟源县| 志丹县| 巴中市| 九龙坡区| 阿拉善左旗| 定日县| 富顺县| 通许县| 苍山县| 偏关县| 马龙县| 成武县| 乌兰县| 天台县| 股票| 商水县| 石柱| 肇东市| 栾川县| 绥江县|