You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
It would be good to have switches in command line options (and in API of course):
to enable or disable analyzing database views - usually views provide redundant data to tables, thus we waste computation time
to enable or disable analyzing of external schemas (in case of Redshift), or schemas that are mapped from remote DBs - to avoid deep scanning of external data sources which may incur costs.
The text was updated successfully, but these errors were encountered:
Hi @mateuszboryn piicatcher currently utilises the amundson package to retrieve data from the databases and the sql queries are on a tabular level [https://github.com/amundsen-io/amundsen/blob/main/databuilder/databuilder/extractor/postgres_metadata_extractor.py]. Hence, we are unable to filter out the database views and create a switch for that.
It would be good to have switches in command line options (and in API of course):
The text was updated successfully, but these errors were encountered: