Python3 使用 clickhouse_driver 操作 clickhouse

2024-06-15 03:04

本文主要是介绍Python3 使用 clickhouse_driver 操作 clickhouse,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!

'''
版本:
Python 3.7 x86
clickhouse 24.6.1.3573
clickhouse-driver         0.2.7
'''

代码一:

from clickhouse_driver import Client# 准备参数
host = "192.168.1.112"
port = 9000
username = "default"
password = "123456"
database = "default"# client = Client('localhost')
client = Client(host=host,port=port,database=database,user=username,password=password)result = client.execute('SHOW TABLES')
print(type(result))
for table in result:print(table)
client.execute('DROP TABLE IF EXISTS test')
client.execute('CREATE TABLE test (x Int32) ENGINE = Memory')
client.execute('INSERT INTO test (x) VALUES',[{'x': 100}])
client.execute('INSERT INTO test (x) VALUES', [[200]])
client.execute('INSERT INTO test (x) ''SELECT * FROM system.numbers LIMIT %(limit)s',{'limit': 3})
sumdata = client.execute('SELECT sum(x) FROM test')
print(type(sumdata))
for i in sumdata:for k in i:print(k)'''
输出:
<class 'list'>
('my_table',)
('new_table',)
('test',)
('user',)
<class 'list'>
303
'''

代码二:

from clickhouse_driver import connect# 准备参数
host = "192.168.1.112"
port = 9000
username = "default"
password = "123456"
database = "default"# conn = connect('clickhouse://localhost')
conn = connect(host=host,port=port,database=database,user=username,password=password)cursor = conn.cursor()cursor.execute('SHOW TABLES')
print(cursor.fetchall())cursor.execute('DROP TABLE IF EXISTS test')
cursor.fetchall()cursor.execute('CREATE TABLE test (x Int32) ENGINE = Memory')
cursor.fetchall()cursor.executemany('INSERT INTO test (x) VALUES',[{'x': 100}])
cursor.rowcountcursor.executemany('INSERT INTO test (x) VALUES', [[200],[300]])
cursor.rowcountcursor.execute('INSERT INTO test (x)''SELECT * FROM system.numbers LIMIT %(limit)s',{'limit': 3})
cursor.rowcountcursor.execute('SELECT * FROM test')
result = cursor.fetchall()
print(type(result))
for i in result:print(i)'''
输出:
[('my_table',), ('new_table',), ('test',), ('user',)]
<class 'list'>
(100,)
(200,)
(300,)
(0,)
(1,)
(2,)
'''

代码三:

from clickhouse_driver import connect# 准备参数
host = "192.168.1.112"
port = 9000
username = "default"
password = "123456"
database = "default"# conn = connect('clickhouse://localhost')
conn = connect(host=host,port=port,database=database,user=username,password=password)# 创建游标
cursor = conn.cursor()cursor.execute('SHOW TABLES')
print(cursor.fetchall())# 删除表
cursor.execute('drop table if exists my_table')create_table_sql = "CREATE TABLE IF NOT EXISTS my_table (id Int32, name String, age Int32) ENGINE = MergeTree() ORDER BY id"# 执行创建数据表的 SQL 语句
cursor.execute(create_table_sql)# 批量插入数据
# insert_sql = "INSERT INTO my_table (id,name,age) VALUES (%(id)s,%(name)s,%(age)s)"
insert_sql = "INSERT INTO my_table (id,name,age) VALUES "'''
data = [{'id':1, 'name':'Alice', 'age':20},{'id':2, 'name':'Alice', 'age':20},{'id':3, 'name':'Alice', 'age':20},
]
'''
#
data = [(1,'Alice',20),(2,'Alice',20),(3,'Alice',20),
]# 执行批量插入数据的 SQL 语句
cursor.executemany(insert_sql, data)# 提交事务
conn.commit()cursor.execute('SELECT id FROM my_table')
result = cursor.fetchall()
print(type(result))
for i in result:print(i)# 关闭连接
conn.close()

'''
参考:
https://blog.51cto.com/u_16175492/8291625
https://blog.51cto.com/u_16213366/9389145
https://blog.51cto.com/u_16213301/8845983
https://clickhouse-driver.readthedocs.io/en/latest/quickstart.html
https://pypi.org/project/clickhouse-driver/
'''
 

这篇关于Python3 使用 clickhouse_driver 操作 clickhouse的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!



http://www.chinasem.cn/article/1062250

相关文章

Java中流式并行操作parallelStream的原理和使用方法

《Java中流式并行操作parallelStream的原理和使用方法》本文详细介绍了Java中的并行流(parallelStream)的原理、正确使用方法以及在实际业务中的应用案例,并指出在使用并行流... 目录Java中流式并行操作parallelStream0. 问题的产生1. 什么是parallelS

Linux join命令的使用及说明

《Linuxjoin命令的使用及说明》`join`命令用于在Linux中按字段将两个文件进行连接,类似于SQL的JOIN,它需要两个文件按用于匹配的字段排序,并且第一个文件的换行符必须是LF,`jo... 目录一. 基本语法二. 数据准备三. 指定文件的连接key四.-a输出指定文件的所有行五.-o指定输出

Linux jq命令的使用解读

《Linuxjq命令的使用解读》jq是一个强大的命令行工具,用于处理JSON数据,它可以用来查看、过滤、修改、格式化JSON数据,通过使用各种选项和过滤器,可以实现复杂的JSON处理任务... 目录一. 简介二. 选项2.1.2.2-c2.3-r2.4-R三. 字段提取3.1 普通字段3.2 数组字段四.

Linux kill正在执行的后台任务 kill进程组使用详解

《Linuxkill正在执行的后台任务kill进程组使用详解》文章介绍了两个脚本的功能和区别,以及执行这些脚本时遇到的进程管理问题,通过查看进程树、使用`kill`命令和`lsof`命令,分析了子... 目录零. 用到的命令一. 待执行的脚本二. 执行含子进程的脚本,并kill2.1 进程查看2.2 遇到的

详解SpringBoot+Ehcache使用示例

《详解SpringBoot+Ehcache使用示例》本文介绍了SpringBoot中配置Ehcache、自定义get/set方式,并实际使用缓存的过程,文中通过示例代码介绍的非常详细,对大家的学习或者... 目录摘要概念内存与磁盘持久化存储:配置灵活性:编码示例引入依赖:配置ehcache.XML文件:配置

Java 虚拟线程的创建与使用深度解析

《Java虚拟线程的创建与使用深度解析》虚拟线程是Java19中以预览特性形式引入,Java21起正式发布的轻量级线程,本文给大家介绍Java虚拟线程的创建与使用,感兴趣的朋友一起看看吧... 目录一、虚拟线程简介1.1 什么是虚拟线程?1.2 为什么需要虚拟线程?二、虚拟线程与平台线程对比代码对比示例:三

k8s按需创建PV和使用PVC详解

《k8s按需创建PV和使用PVC详解》Kubernetes中,PV和PVC用于管理持久存储,StorageClass实现动态PV分配,PVC声明存储需求并绑定PV,通过kubectl验证状态,注意回收... 目录1.按需创建 PV(使用 StorageClass)创建 StorageClass2.创建 PV

Redis 基本数据类型和使用详解

《Redis基本数据类型和使用详解》String是Redis最基本的数据类型,一个键对应一个值,它的功能十分强大,可以存储字符串、整数、浮点数等多种数据格式,本文给大家介绍Redis基本数据类型和... 目录一、Redis 入门介绍二、Redis 的五大基本数据类型2.1 String 类型2.2 Hash

Redis中Hash从使用过程到原理说明

《Redis中Hash从使用过程到原理说明》RedisHash结构用于存储字段-值对,适合对象数据,支持HSET、HGET等命令,采用ziplist或hashtable编码,通过渐进式rehash优化... 目录一、开篇:Hash就像超市的货架二、Hash的基本使用1. 常用命令示例2. Java操作示例三

Linux创建服务使用systemctl管理详解

《Linux创建服务使用systemctl管理详解》文章指导在Linux中创建systemd服务,设置文件权限为所有者读写、其他只读,重新加载配置,启动服务并检查状态,确保服务正常运行,关键步骤包括权... 目录创建服务 /usr/lib/systemd/system/设置服务文件权限:所有者读写js,其他