Postgresql – Save pandas DataFrame into Postgres running on AirFlow using df.to_sql?
I have a task running on AirFlow that has two steps: fetches data from MSSql server as a dataframe; stores it in a PostGres database; I'm using the MsSqlHook and PostgresHook to manage the connections. The fetching is going ok,…