1 回答
- 最新
- 投票最多
- 评论最多
0
【以下的回答经过翻译处理】 这应该与通过 python 在 Redshift 上运行任何 SQL 命令非常相似。您可以使用连接到 Redshift 的 python-shell 作业来运行存储过程。一个 python 示例,它显示了如何使用 psycopg2 库从 python 连接到 Redshift 集群:
def loadfile(filename):
conn_string = "dbname='dbname' port='port' user='user' password='password' host='host.eu-west-1.redshift.amazonaws.com'"
conn = psycopg2.connect(conn_string)
cursor = conn.cursor()
cursor.execute("INSERT INTO tb_table (field1) VALUES ('field1')")
conn.commit()
cursor.close()
return
这个link中还有一些细节 https://www.quora.com/Can-I-connect-to-Redshift-using-Python https://www.blendo.co/blog/access-your-data-in-amazon-redshift-and-postgresql-with-python-and-r/
相关内容
- AWS 官方已更新 2 个月前
- AWS 官方已更新 2 年前