如何从 Glue 调用 Redshift 中的存储过程

0

【以下的问题经过翻译处理】 大家好,

我正在尝试找出是否可以从Glue脚本调用Redshift中的存储过程。

感谢任何建议。

profile picture
專家
已提問 5 個月前檢視次數 19 次
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/

profile picture
專家
已回答 5 個月前

您尚未登入。 登入 去張貼答案。

一個好的回答可以清楚地回答問題並提供建設性的意見回饋,同時有助於提問者的專業成長。

回答問題指南