mirror of
https://github.com/datahub-project/datahub.git
synced 2025-07-03 07:09:21 +00:00
31 lines
1.2 KiB
Python
31 lines
1.2 KiB
Python
![]() |
import datahub.emitter.mce_builder as builder
|
||
|
from datahub.emitter.mcp import MetadataChangeProposalWrapper
|
||
|
from datahub.emitter.rest_emitter import DatahubRestEmitter
|
||
|
from datahub.metadata.com.linkedin.pegasus2avro.datajob import DataJobInfoClass
|
||
|
from datahub.metadata.schema_classes import ChangeTypeClass
|
||
|
|
||
|
# Construct the DataJobInfo aspect with the job -> flow lineage.
|
||
|
dataflow_urn = builder.make_data_flow_urn(
|
||
|
orchestrator="airflow", flow_id="flow1", cluster="prod"
|
||
|
)
|
||
|
|
||
|
datajob_info = DataJobInfoClass(name="My Job 1", type="AIRFLOW", flowUrn=dataflow_urn)
|
||
|
|
||
|
# Construct a MetadataChangeProposalWrapper object with the DataJobInfo aspect.
|
||
|
# NOTE: This will overwrite all of the existing dataJobInfo aspect information associated with this job.
|
||
|
chart_info_mcp = MetadataChangeProposalWrapper(
|
||
|
entityType="dataJob",
|
||
|
changeType=ChangeTypeClass.UPSERT,
|
||
|
entityUrn=builder.make_data_job_urn(
|
||
|
orchestrator="airflow", flow_id="flow1", job_id="job1", cluster="prod"
|
||
|
),
|
||
|
aspectName="dataJobInfo",
|
||
|
aspect=datajob_info,
|
||
|
)
|
||
|
|
||
|
# Create an emitter to the GMS REST API.
|
||
|
emitter = DatahubRestEmitter("http://localhost:8080")
|
||
|
|
||
|
# Emit metadata!
|
||
|
emitter.emit_mcp(chart_info_mcp)
|