haleemur_ali
07/18/2023, 2:41 PMjanis_puris
07/18/2023, 2:56 PM• is it possible / straightforward to manage the schema evolution outside of meltano (as new fields are added to the extract?Could you please elaborate on "outside of meltano" i.e. an example?
• is it possible to limit select access to the meltano role?1. "select" the streams (columns) you are interested in the extractor config 2. Remove all privileges from a table with sensitive columns to meltano role Then
GRANT SELECT (my_col1, my_col2) ON TABLE my_sensitive_table TO my_meltano_role;
This way meltano is able to read only the specified columns.
Source: https://www.postgresql.org/docs/15/sql-grant.html
edit: updated the grant exampleMatt Menzenski
07/18/2023, 4:16 PMhaleemur_ali
07/18/2023, 4:27 PMjanis_puris
07/18/2023, 4:41 PMinsert, update and truncate.