diff --git a/ingestion/src/metadata/ingestion/source/sql_source.py b/ingestion/src/metadata/ingestion/source/sql_source.py index 54171a0dc8f..9a4d3411bcd 100644 --- a/ingestion/src/metadata/ingestion/source/sql_source.py +++ b/ingestion/src/metadata/ingestion/source/sql_source.py @@ -117,6 +117,10 @@ class SQLSource(Source[OMetaDatabaseAndTable]): ) return True # Catch any errors during profiling init and continue ingestion + except ModuleNotFoundError as err: + logger.error( + f"Profiling not available for this databaseService: {str(err)}" + ) except Exception as exc: # pylint: disable=broad-except logger.debug(traceback.print_exc()) logger.debug(f"Error loading profiler {repr(exc)}")