Is it possible to disable datahub from airflow ? M...
# all-things-deployment
c
Is it possible to disable datahub from airflow ? Means I don't want my datahub changes affect the airflow runs ?
d
You can remove the plugin anytime or what do you want to achieve exactly?
l
If datahub.graceful_exceptions is set to true (the default) your production dag runs should not be impacted
c
The use case is if we are moving airflow in another environment but the datahub remains still in old environment. the changes we have done in airflow for datahub integration will also move into another environment But when we run airflow in that environment is there is a possibility that airflow will run successfully and datahub changes does affect there ?
Is it possible to disable datahub plugin from airflow UI?
d
If the airflow plugin is unable to connect to Datahub it should fail gracefully (log the failure but doesn’t fail actually) if the
graceful_exceptions
property is set as @loud-island-88694 mentioned above.
c
If we don't want to enable the graceful exceptions then how we can manage in this case ?