elliot
10/07/2021, 2:04 PMMELTANO_DATABASE_URI? We have tried installing sqlalchemy-redshift and using the redshift+psycopg2 prefix, but it is complaining about type BYTEA for value in the plugin_settings table. We think this may be due to this line here.aaronsteers
10/07/2021, 3:57 PMelliot
10/08/2021, 8:42 AMedgar_ramirez_mondragon
10/08/2021, 7:23 PMMELTANO_DATABASE_URI is only for Meltano's system database, where it stores job state and plugin settings if you're in read-only mode. I think you intend to use Redshift as a data destination, right? In that case you need https://hub.meltano.com/loaders/redshift.edgar_ramirez_mondragon
10/08/2021, 7:26 PMelliot
10/11/2021, 8:16 AMedgar_ramirez_mondragon
10/11/2021, 3:28 PMBYTEA as you found out) will be missing: https://docs.aws.amazon.com/redshift/latest/dg/c_unsupported-postgresql-datatypes.html
It's also missing primary keys, foreign keys and indexes: https://docs.aws.amazon.com/redshift/latest/dg/c_unsupported-postgresql-features.html. That may be ok for a few thousand records, without noticeable performance issues, but I'd still recommend using something like Postgres RDS