Call a stored procedure in Redshift from Glue

0

Hi all,

I am trying to work out if it possible to call a stored procedure in redshift from a glue script. Appreciate any advice.

AWS
demandé il y a 5 ans1625 vues
1 réponse
0
Réponse acceptée

This should be very similar to running any SQL command on Redshift through python. You could use a python-shell job which connects to Redshift to run a stored procedure. A python sample which shows how to connect to the Redshift cluster from python using psycopg2 library:

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 

There are details on some more forums
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
MODÉRATEUR
répondu il y a 5 ans
profile picture
EXPERT
vérifié il y a un mois

Vous n'êtes pas connecté. Se connecter pour publier une réponse.

Une bonne réponse répond clairement à la question, contient des commentaires constructifs et encourage le développement professionnel de la personne qui pose la question.

Instructions pour répondre aux questions