AWS Glue is a fully managed serverless ETL service that eliminates the need to provision and manage Spark infrastructure. It consists of three integrated components: the Data Catalog (a metadata store for schemas and table definitions), Crawlers (schema discovery agents that scan data sources and populate the Catalog), and ETL Jobs (Apache Spark or Python Shell scripts executed in a managed serverless environment). Together these provide the metadata-driven ETL pipeline that forms the transformation backbone for most AWS-native data lake architectures.
The AWS Glue Data Catalog is a centralised metadata repository compatible with the Apache Hive Metastore. Registering a table in the Catalog makes it immediately queryable from Athena, EMR, Redshift Spectrum, and Glue ETL jobs without additional configuration. A delivery records Parquet table registered in the Catalog is queryable from Athena for ad-hoc analysis, from Redshift Spectrum for SQL joins with warehouse tables, and from Spark on EMR for programmatic transformations — all reading the same S3 data through the same schema.