Load into Postgres
In this exercise, you'll write out some data to a PostgreSQL data warehouse. That could be useful when you have a result of some transformations, and you want to use it in an application.
For example, the result of a transformation could have added a column with film recommendations, and you want to use them in your online store.
There's a pandas DataFrame called film_pdf in your workspace.
As a reminder, here's the structure of a connection URI for sqlalchemy:
postgresql://[user[:password]@][host][:port][/database]
Questo esercizio fa parte del corso
Introduction to Data Engineering
Istruzioni dell'esercizio
- Complete the connection URI for to create the database engine. The user and password are
replandpasswordrespectively. The host islocalhost, and the port is5432. This time, the database isdwh. - Finish the call so we use the
"store"schema in the database. If the table exists, replace it completely.
Esercizio pratico interattivo
Prova a risolvere questo esercizio completando il codice di esempio.
# Finish the connection URI
connection_uri = "____://____:____@____:____/____"
db_engine_dwh = sqlalchemy.create_engine(connection_uri)
# Transformation step, join with recommendations data
film_pdf_joined = film_pdf.join(recommendations)
# Finish the .to_sql() call to write to store.film
film_pdf_joined.to_sql("film", ____, schema="____", if_exists="____")
# Run the query to fetch the data
pd.read_sql("SELECT film_id, recommended_film_ids FROM store.film", db_engine_dwh)