Fetching data with snowflake connector throws EmptyPyArrowIterator error(使用雪花连接器提取数据引发EmptyPyArrowIterator错误)
本文介绍了使用雪花连接器提取数据引发EmptyPyArrowIterator错误的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
我在我的python脚本中使用了python雪花连接器(策划式划线应用程序),今天这个应用程序在我没有更改代码的情况下停止工作。我尝试了几种方法来找出可能的问题所在,我甚至尝试运行Snowflake documentation中的示例代码,但得到了相同的错误:
编码:
cur = conn.cursor()
try:
cur.execute("SELECT col1, col2 FROM test_table ORDER BY col1")
for (col1, col2) in cur:
print('{0}, {1}'.format(col1, col2))
finally:
cur.close()
错误:
Traceback (most recent call last):
File "db_connection.py", line 48, in <module>
cur.execute("SELECT col1, col2 FROM test_table ORDER BY col1")
File "/Library/Frameworks/Python.framework/Versions/3.7/lib/python3.7/site-packages/snowflake/connector/cursor.py", line 580, in execute
self._init_result_and_meta(data, _use_ijson)
File "/Library/Frameworks/Python.framework/Versions/3.7/lib/python3.7/site-packages/snowflake/connector/cursor.py", line 630, in _init_result_and_meta
self._result = ArrowResult(data, self, use_dict_result=self._use_dict_result)
File "arrow_result.pyx", line 42, in snowflake.connector.arrow_result.ArrowResult.__init__
File "arrow_result.pyx", line 156, in snowflake.connector.arrow_result.ArrowResult._reset
NameError: name 'EmptyPyArrowIterator' is not defined
连接已建立,我能够在数据库中创建表,但似乎无法查询和迭代数据。
我在macOS Catalina 10.15.1
、snowflake-connector-python==2.1.0
、Python 3.7.0
上。
推荐答案
请使用Python连接器版本2.1.1
pip安装雪花连接器-python==2.1.1
或
PIP3安装雪花连接器-python==2.1.1
这篇关于使用雪花连接器提取数据引发EmptyPyArrowIterator错误的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
沃梦达教程
本文标题为:使用雪花连接器提取数据引发EmptyPyArrowIterator错误
基础教程推荐
猜你喜欢
- Python 的 List 是如何实现的? 2022-01-01
- 使用Python匹配Stata加权xtil命令的确定方法? 2022-01-01
- 合并具有多索引的两个数据帧 2022-01-01
- 使用 Google App Engine (Python) 将文件上传到 Google Cloud Storage 2022-01-01
- 将 YAML 文件转换为 python dict 2022-01-01
- 症状类型错误:无法确定关系的真值 2022-01-01
- 哪些 Python 包提供独立的事件系统? 2022-01-01
- 如何在 Python 中检测文件是否为二进制(非文本)文 2022-01-01
- 如何在Python中绘制多元函数? 2022-01-01
- 使 Python 脚本在 Windows 上运行而不指定“.py";延期 2022-01-01