Define an operator extra link

../_images/operator_extra_link.png

The following code shows how to add extra links to an operator via Plugins:

  1. from airflow.models.baseoperator import BaseOperator, BaseOperatorLink
  2. from airflow.plugins_manager import AirflowPlugin
  3. class GoogleLink(BaseOperatorLink):
  4. name = "Google"
  5. def get_link(self, operator: BaseOperator, *, ti_key: TaskInstanceKey):
  6. return "https://www.google.com"
  7. class MyFirstOperator(BaseOperator):
  8. operator_extra_links = (GoogleLink(),)
  9. def __init__(self, **kwargs):
  10. super().__init__(**kwargs)
  11. def execute(self, context):
  12. self.log.info("Hello World!")
  13. # Defining the plugin class
  14. class AirflowExtraLinkPlugin(AirflowPlugin):
  15. name = "extra_link_plugin"
  16. operator_extra_links = [
  17. GoogleLink(),
  18. ]

Note

Operator Extra Links should be registered via Airflow Plugins or custom Airflow Provider to work.

You can also add a global operator extra link that will be available to all the operators through an Airflow plugin or through Airflow providers. You can learn more about it in the plugin interface and in Provider packages.

You can see all the extra links available via community-managed providers in Extra Links.

You can also add (or override) an extra link to an existing operators through an Airflow plugin or custom provider.

For example, the following Airflow plugin will add an Operator Link on all tasks using GCSToS3Operator operator.

Adding Operator Links to Existing Operators plugins/extra_link.py:

  1. from airflow.plugins_manager import AirflowPlugin
  2. from airflow.models.baseoperator import BaseOperatorLink
  3. from airflow.providers.amazon.aws.transfers.gcs_to_s3 import GCSToS3Operator
  4. class S3LogLink(BaseOperatorLink):
  5. name = "S3"
  6. # Add list of all the operators to which you want to add this OperatorLinks
  7. # Example: operators = [GCSToS3Operator, GCSToBigQueryOperator]
  8. operators = [GCSToS3Operator]
  9. def get_link(self, operator: BaseOperator, *, ti_key: TaskInstanceKey):
  10. return "https://s3.amazonaws.com/airflow-logs/{dag_id}/{task_id}/{run_id}".format(
  11. dag_id=operator.dag_id,
  12. task_id=operator.task_id,
  13. run_id=ti_key.run_id,
  14. )
  15. # Defining the plugin class
  16. class AirflowExtraLinkPlugin(AirflowPlugin):
  17. name = "extra_link_plugin"
  18. operator_extra_links = [
  19. S3LogLink(),
  20. ]

Overriding Operator Links of Existing Operators:

It is also possible to replace a built in link on an operator via a Plugin. For example BigQueryExecuteQueryOperator includes a link to the Google Cloud Console, but if we wanted to change that link we could:

  1. from airflow.plugins_manager import AirflowPlugin
  2. from airflow.models.baseoperator import BaseOperatorLink
  3. from airflow.models.xcom import XCom
  4. from airflow.providers.google.cloud.operators.bigquery import BigQueryOperator
  5. # Change from https to http just to display the override
  6. BIGQUERY_JOB_DETAILS_LINK_FMT = "http://console.cloud.google.com/bigquery?j={job_id}"
  7. class BigQueryConsoleLink(BaseOperatorLink):
  8. """
  9. Helper class for constructing BigQuery link.
  10. """
  11. name = "BigQuery Console"
  12. operators = [BigQueryOperator]
  13. def get_link(self, operator: BaseOperator, *, ti_key: TaskInstanceKey):
  14. job_id = XCom.get_one(ti_key=ti_key, key="job_id")
  15. return BIGQUERY_JOB_DETAILS_LINK_FMT.format(job_id=job_id) if job_id else ""
  16. # Defining the plugin class
  17. class AirflowExtraLinkPlugin(AirflowPlugin):
  18. name = "extra_link_plugin"
  19. operator_extra_links = [
  20. BigQueryConsoleLink(),
  21. ]

Adding Operator Links via Providers

As explained in Provider packages, when you create your own Airflow Provider, you can specify the list of operators that provide extra link capability. This happens by including the operator class name in the provider-info information stored in your Provider’s package meta-data:

Example meta-data required in your provider-info dictionary (this is part of the meta-data returned by apache-airflow-providers-google provider currently:

  1. extra-links:
  2. - airflow.providers.google.cloud.operators.bigquery.BigQueryConsoleLink
  3. - airflow.providers.google.cloud.operators.bigquery.BigQueryConsoleIndexableLink
  4. - airflow.providers.google.cloud.operators.mlengine.AIPlatformConsoleLink

You can include as many operators with extra links as you want.