-
When trying to run the Profiler workflow I am getting the following error when running via the CLI:
My workflow looks good as per the docs:
What am I missing? |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment
-
While the workflow YAML is correct, we need to take into account which CLI command are we using. While the metadata ingestion workflow is executed as Link to the docs. Running this via an Airflow DAG (or with any approach related to importing the
|
Beta Was this translation helpful? Give feedback.
While the workflow YAML is correct, we need to take into account which CLI command are we using. While the metadata ingestion workflow is executed as
metadata ingest
, the Profiler workflow needs to be run asmetadata profile
.Link to the docs.
Running this via an Airflow DAG (or with any approach related to importing the
Workflow
class from Python), the difference is in the type of Workflow class being used.from metadata.ingestion.api.workflow import Workflow
from metadata.orm_profiler.api.workflow import ProfilerWorkflow