During compilation, SDF creates a comprehensive Information Schema (IF) which contains metadata
about your workspace. This metadata includes basic information such as tables, columns, data types, and descriptions
along with more complex metadata like column level lineage, and data classifiers.This workspace IF can be used to enrich data catalogs, and queried to power Checks.
Under the hood, SDF stores the analysis output as Parquet.
The below tables represent the SDF Information Schema. They are always accessible, after any compilation, in the sdftarget under sdftarget/dbg/data/system/information_schema::sdfYou may dynamically query the information schema in any valid SDF workspace.To query your tables:
sdf run -q "select * from sdf.information_schema.tables"
To query your columns:
sdf run -q "select * from sdf.information_schema.columns"
To query your column_lineage:
sdf run -q "select * from sdf.information_schema.column_lineage"
The information schema tables have the following schemas.