1 Answer
- Newest
- Most votes
- Most comments
1
Fixed this myself - it wasn't an issue with Relationalize per se ... writing to Postgres, the write_dynamic_frame did not enjoy periods in the table names. Fix :
for df_name in dfc.keys():
m_df = dfc.select(df_name)
final = df_name.replace('.val.','_')
if m_df.count():
glueContext.write_dynamic_frame.from_jdbc_conf(frame = m_df, catalog_connection = "postgres", connection_options = {"dbtable": final, "database": "tekmetric"})
answered 2 years ago
Relevant content
- asked 4 months ago
- asked 8 months ago
- AWS OFFICIALUpdated a year ago
- AWS OFFICIALUpdated 3 years ago
- AWS OFFICIALUpdated 2 years ago