Custom Drive Connector
Just like other services in OpenMetadata (Database, Pipelines, Dashboards, Messaging, and so on), it’s possible to create a Custom Drive Connector to bring metadata from a storage or file system-like service into OpenMetadata.
In this guide, we’ll walk through how to implement your own Custom Drive Connector by extending the ingestion framework. The implementation pattern follows other service types closely, making the transition smooth for anyone familiar with the ecosystem.
Watch OpenMetadata’s Webinar on Custom Connectors to get more context on how to build these integrations.
Steps to Set Up a Custom Drive Connector
Follow these steps to build and register a Custom Drive Connector.
Step 1 - Prepare Your Drive Connector
A Custom Drive Connector is a Python class that inherits from:
It must implement required methods such as:
prepare
_iter
test_connection (optional but recommended so the UI can validate access)
Inside my_drive_connector.py, define your class:
_iter is a generator that produces the CreateEntityRequest instances expected by the ingestion framework.
For more on the ingestion framework, refer to the OpenMetadata Ingestion Workflow docs.
Step 2 - Yield Drive Data as Entities
You need to yield CreateEntityRequest objects wrapped in an Either type. This pattern handles both successful entity creation and errors.
Import necessary types:
Example usage:
Extend the same pattern with CreateSpreadsheetRequest and CreateWorksheetRequest if your Drive service exposes those concepts.
Step 3 - Package Your Custom Drive Connector
To use the connector, package it as a Python module. A minimal setup.py may look like:
Build the package:
Step 4 - Update the Ingestion Image
To run your Custom Drive Connector inside Docker (for example, with Airflow or directly from the UI), the ingestion image must include your module.
Dockerfile example:
This ensures that your code is baked into the ingestion container. Always align the ingestion image tag with the OpenMetadata version that is running your server/UI.
If you’re using Docker Compose, update your setup to use the new image.
The Custom Drive service form does not expose a Source Python Class field. Add the fully qualified class name to your ingestion YAML, then run it with the ingestion CLI.
Run metadata ingest -c <path-to-config.yaml>.
The Metadata Agent extracts directories, files, spreadsheets, and other structural metadata from your source and keeps your OpenMetadata catalog in sync. It powers discovery, lineage, and governance across your data assets.
When you click Create & Deploy, OpenMetadata automatically deploys a Metadata Agent for this service and triggers the first ingestion run. View its status and run history from the Agents tab on the service detail page.
To configure the additional Metadata Agent and schedule ingestion, follow these steps:
-
Navigate to Settings > Services and select the service type.
-
Click the service you have added.
-
Select the Agents tab and click Add Agent > Metadata.
For some services, the dropdown is not available and clicking Add Agent takes you directly to the agent configuration page.
-
On the Configure Ingestion page, do the following and click Next.
-
Name this Ingestion: Enter a unique recognizable name for this ingestion pipeline.
-
Agent Setup: Configure the core parameters for this agent. The following fields are available:
-
Filter Patterns: Apply include or exclude rules to scope which directories, files, spreadsheets, and worksheets this agent ingests. Use FQN for filtering to apply regex on fully qualified names (for example,
service_name.directory_name.file_name) instead of raw names. These follow the same filter options described in Step 5: Configure Ingestion Options.
-
Scope & Behaviour: Control what metadata to include and how to handle deletions. Toggle each option on or off based on your needs:
-
On the Schedule Interval page, set when the agent runs:
- Schedule: Choose a preset interval (Hourly, Daily, Weekly, Monthly) or enter a custom cron expression.
- On-Demand: No automatic schedule; trigger the agent manually when needed.
-
Click Add to deploy the agent.