Skip to main content

Documentation Index

Fetch the complete documentation index at: https://openmetadata-feat-feat-gkerunnermwaa.mintlify.app/llms.txt

Use this file to discover all available pages before exploring further.

Metadata Ingestion - Incremental Extraction

The default Metadata Ingestion roughly follows these steps:
  1. Fetch all the information from the Source.
  2. Compare the information with the OpenMetadata information to update it properly.
  3. Compare the information with the OpenMetadata information to delete entities that were deleted.
While on one hand this is a great simple way of doing things that works for most use cases since at every ingestion pipeline run we get the whole Source state, on other hand this is fetching and comparing a lot of data without need since if there were no structural changes we already know there is nothing to update on OpenMetadata. We implemented the Incremental Extraction feature to improve the performance by diminishing the extraction and comparison of uneeded data. How this is done depends a lot on the Source itself, but the general idea is to follow these steps:
  1. Fetch the last successful pipeline run.
  2. Add a small safety margin.
  3. Get all the structural changes since then.
  4. Flag deleted entities.
  5. Fetch/Compare only the entities with structural changes.
  6. Delete entities flagged for deletion.

External Ingestion

When using the Incremental Extraction feature with External Ingestions (ingesting using YAML files instead of setting it up from the UI), you must pass the ingestion pipeline fully qualified name to the configuration. This should be {service_name}{pipeline_name} Example:
source:
  serviceName: my_service
# ...
# Other configurations
# ...
ingestionPipelineFQN: my_service.my_pipeline

Feature available for

Databases

https://mintcdn.com/openmetadata-feat-feat-gkerunnermwaa/luBDqn-ipLo5hhv0/public/images/connectors/bigquery.webp?fit=max&auto=format&n=luBDqn-ipLo5hhv0&q=85&s=0a55b1e4b8ddd1d06bbcd9421ef7f89b

BigQuery

BETA | OpenMetadata
https://mintcdn.com/openmetadata-feat-feat-gkerunnermwaa/xToX1CbL7-btH2lt/public/images/connectors/redshift.webp?fit=max&auto=format&n=xToX1CbL7-btH2lt&q=85&s=448922d91cd70f50b555c601e291f077

Redshift

BETA | OpenMetadata
https://mintcdn.com/openmetadata-feat-feat-gkerunnermwaa/hHPfOaHl9mJkZm0d/public/images/connectors/snowflakes.webp?fit=max&auto=format&n=hHPfOaHl9mJkZm0d&q=85&s=eb9907a69c8e8fc93bd08b705c35523c

Snowflake

BETA | OpenMetadata