AWS Glue
Core pluginmarmotdata/glue
Discover jobs, databases, tables and crawlers from AWS Glue
The Glue plugin discovers and catalogs AWS Glue resources including jobs, databases, tables and crawlers. It captures metadata such as job configurations, table schemas, crawler schedules and database properties. Iceberg-managed tables are automatically skipped (use the dedicated Iceberg plugin instead).
Required Permissions
AWS Configuration
See AWS Configuration for the supported AWS configuration options.
In the UI
Point-and-click, no config file needed.
- 1 Open
Runs→Create Pipeline - 2 Pick AWS Glue from the plugin list.
- 3 Fill in the wizard, set a schedule, save.
With the CLI
Save a YAML config, then run marmot ingest.
name: my-glue-pipeline
runs:
- glue:
# No required fields — see the Configuration tab.marmot ingest -c ingest.yaml Not using plugins? Other ways to populate Marmot
Configuration
10 top-level fields.
tags multiselect Tags to apply to discovered assets
external_links object[] External links to show on all assets
name string Display name for the link
icon string Icon identifier for the link
url string URL to the external resource
filter object Filter discovered assets by name (regex)
include multiselect Include patterns for resource names (regex)
exclude multiselect Exclude patterns for resource names (regex)
credentials object AWS credentials configuration
use_default bool Use AWS credentials from environment or default profile (recommended)
true id string AWS access key ID
secret password AWS secret access key
token password AWS session token
profile string AWS profile to use from shared credentials file
role string AWS IAM role ARN to assume
role_external_id string External ID for cross-account role assumption
region string AWS region for services
endpoint string Custom endpoint URL for AWS services
tags_to_metadata bool Convert AWS tags to Marmot metadata
include_tags multiselect List of AWS tags to include as metadata. By default, all tags are included.
discover_jobs bool Whether to discover Glue jobs
true discover_databases bool Whether to discover Glue databases
true discover_tables bool Whether to discover Glue tables
true discover_crawlers bool Whether to discover Glue crawlers
true Assets Emitted
Metadata fields this plugin attaches to each discovered asset.
Glue Job
GlueJobFieldsGlueJobFields represents Glue Job metadata fields
role stringIAM role ARN assigned to the job
type stringJob command type (glueetl, pythonshell, gluestreaming)
glue_version stringGlue version used by the job
worker_type stringWorker type (Standard, G.1X, G.2X, etc.)
number_of_workers intNumber of workers allocated to the job
max_capacity floatMaximum number of DPU that can be allocated
timeout intJob timeout in minutes
max_retries intMaximum number of retries
script_location stringS3 location of the job script
connections stringConnections used by the job
created_on stringDate and time the job was created
last_modified_on stringDate and time the job was last modified
security_configuration stringSecurity configuration applied to the job
Glue Database
GlueDatabaseFieldsGlueDatabaseFields represents Glue Database metadata fields
catalog_id stringID of the Data Catalog
location_uri stringLocation of the database
description stringDescription of the database
create_time stringDate and time the database was created
parameters stringDatabase parameters
Glue Table
GlueTableFieldsGlueTableFields represents Glue Table metadata fields
database_name stringName of the database containing the table
table_type stringType of table (EXTERNAL_TABLE, VIRTUAL_VIEW, etc.)
classification stringClassification of the table data (csv, parquet, json, etc.)
owner stringOwner of the table
location stringS3 location of the table data
input_format stringHadoop input format class
output_format stringHadoop output format class
serde stringSerialization/deserialization library
partition_keys stringPartition key columns
create_time stringDate and time the table was created
update_time stringDate and time the table was last updated
retention intRetention period in days
Glue Crawler
GlueCrawlerFieldsGlueCrawlerFields represents Glue Crawler metadata fields
role stringIAM role ARN assigned to the crawler
database_name stringTarget database for the crawler
state stringCurrent state of the crawler (READY, RUNNING, STOPPING)
schedule stringCron schedule expression
targets stringSummary of crawler targets
schema_update_behavior stringBehavior when schema changes are detected
schema_delete_behavior stringBehavior when schema objects are deleted
recrawl_behavior stringRecrawl behavior policy
creation_time stringDate and time the crawler was created
last_updated stringDate and time the crawler was last updated
last_crawl_status stringStatus of the last crawl
last_crawl_time stringStart time of the last crawl
last_crawl_error stringError message from the last crawl
classifiers stringCustom classifiers used by the crawler