airflow-core/docs/howto/usage-cli.rst
.. Licensed to the Apache Software Foundation (ASF) under one or more contributor license agreements. See the NOTICE file distributed with this work for additional information regarding copyright ownership. The ASF licenses this file to you under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at
.. http://www.apache.org/licenses/LICENSE-2.0
.. Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License.
This document is meant to give an overview of all common tasks while using the CLI.
.. note::
For more information on CLI commands, see :doc:/cli-and-env-variables-ref
.. _cli-remote:
When using bash (or zsh) as your shell, airflow can use
argcomplete <https://kislyuk.github.io/argcomplete>_ for auto-completion.
For global activation <https://github.com/kislyuk/argcomplete#activating-global-completion>_ of all argcomplete enabled python applications run:
.. code-block:: bash
sudo activate-global-python-argcomplete
For permanent (but not global) airflow activation, use:
.. code-block:: bash
register-python-argcomplete airflow >> ~/.bashrc
For one-time activation of argcomplete for Airflow only, use:
.. code-block:: bash
eval "$(register-python-argcomplete airflow)"
.. image:: /img/cli_completion.gif
If you're using zsh, add the following to your .zshrc:
.. code-block:: bash
autoload bashcompinit bashcompinit eval "$(register-python-argcomplete airflow)"
For information on creating connections using the CLI, see :ref:connection/cli
Airflow lets you print or save your Dag structure as an image. This is useful for documenting or sharing your Dag structure. You'll need to have Graphviz <https://graphviz.gitlab.io/download/>_ installed.
For example, to print the example_complex Dag to the terminal:
.. code-block:: bash
airflow dags show example_complex
This will print the rendered Dag structure to the screen in DOT format.
Multiple file formats are supported. To use them, add the argument --save [filename].[format].
To save the example_complex Dag as a PNG file:
.. code-block:: bash
airflow dags show example_complex --save example_complex.png
This will save the following image as a file:
.. figure:: /img/usage_cli_export.png :width: 100%
Example Dag representation
The following file formats are supported:
bmpcanon, dot, gv, xdot, xdot1.2, xdot1.4cgimagecmapepsexrfiggd, gd2gifgtkicoimap, cmapximap_np, cmapx_npismapjp2jpg, jpeg, jpejson, json0, dot_json, xdot_jsonpct, pictpdfpicplain, plain-extpngpovpsps2psdsgisvg, svgztgatif, tifftkvml, vmlzvrmlwbmpwebpxlibx11By default, Airflow looks for Dags in the directory specified by the dags_folder option in the
[core] section of the airflow.cfg file. You can select a new directory with the --subdir argument.
Sometimes you will work on Dags that contain complex dependencies. It is helpful then to preview the Dag to see if it is correct.
If you have macOS, you can use iTerm2 <https://iterm2.com/>__ together with
the imgcat <https://www.iterm2.com/documentation-images.html>__ script to display the Dag structure in the
console. You also need to have Graphviz <https://graphviz.gitlab.io/download/>_ installed.
Other terminals do not support the display of high-quality graphics. You can convert the image to a text form, but its resolution will prevent you from reading it.
To do this, you should use the --imgcat switch in the airflow dags show command. For example, if you
want to display example_bash_operator Dag then you can use the following command:
.. code-block:: bash
airflow dags show example_bash_operator --imgcat
You will see a similar result as in the screenshot below.
.. figure:: /img/usage_cli_imgcat.png
Preview of Dag in iTerm2
Some Airflow commands like airflow dags list or airflow tasks states-for-dag-run support --output flag
which allow users to change the formatting of command's output. Possible options:
table - renders the information as a plain text tablesimple - renders the information as simple table which can be parsed by standard linux utilitiesjson - renders the information in form of json stringyaml - render the information in form of valid yamlBoth json and yaml formats make it easier to manipulate the data using command line tools like
jq <https://stedolan.github.io/jq/>__ or yq <https://kislyuk.github.io/yq/>__. For example:
.. code-block:: bash
airflow tasks states-for-dag-run example_complex 2020-11-13T00:00:00+00:00 --output json | jq ".[] | {sd: .start_date, ed: .end_date}" { "sd": "2020-11-29T14:53:46.811030+00:00", "ed": "2020-11-29T14:53:46.974545+00:00" } { "sd": "2020-11-29T14:53:56.926441+00:00", "ed": "2020-11-29T14:53:57.118781+00:00" } { "sd": "2020-11-29T14:53:56.915802+00:00", "ed": "2020-11-29T14:53:57.125230+00:00" } { "sd": "2020-11-29T14:53:56.922131+00:00", "ed": "2020-11-29T14:53:57.129091+00:00" } { "sd": "2020-11-29T14:53:56.931243+00:00", "ed": "2020-11-29T14:53:57.126306+00:00" }
.. _cli-db-clean:
.. note::
It's strongly recommended that you backup the metadata database before running the db clean command.
The db clean command works by deleting from each table the records older than the provided --clean-before-timestamp.
You can optionally provide a list of tables to perform deletes on. If no list of tables is supplied, all tables will be included.
You can filter cleanup to specific DAGs using --dag-ids (comma-separated list), or exclude specific DAGs using --exclude-dag-ids (comma-separated list). These options allow you to target or avoid cleanup for particular DAGs.
You can use the --dry-run option to print the row counts in the primary tables to be cleaned.
By default, db clean will archive purged rows in tables of the form _airflow_deleted__<table>__<timestamp>. If you don't want the data preserved in this way, you may supply argument --skip-archive.
When you encounter an error without using --skip-archive, _airflow_deleted__<table>__<timestamp> would still exist in the DB. You can use db drop-archived command to manually drop these tables.
The db export-archived command exports the contents of the archived tables, created by the db clean command,
to a specified format, by default to a CSV file. The exported file will contain the records that were purged from the
primary tables during the db clean process.
You can specify the export format using --export-format option. The default format is csv and is also the only
supported format at the moment.
You must also specify the location of the path to which you want to export the data using --output-path option. This
location must exist.
Other options include: --tables to specify the tables to export, --drop-archives to drop the archive tables after
exporting.
If during the db clean process, you did not use the --skip-archive option which drops the archived table, you can
still drop the archive tables using the db drop-archived command. This operation is irreversible and you are encouraged
to use the db export-archived command to backup the tables to disk before dropping them.
You can specify the tables to drop using the --tables option. If no tables are specified, all archive tables will be
dropped.
Beware cascading deletes ^^^^^^^^^^^^^^^^^^^^^^^^
Keep in mind that some tables have foreign key relationships defined with ON DELETE CASCADE so deletes in one table may trigger deletes in others. For example, the task_instance table keys to the dag_run table, so if a DagRun record is deleted, all of its associated task instances will also be deleted.
Special handling for Dag runs ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
Commonly, Airflow determines which DagRun to run next by looking up the latest DagRun. If you delete all Dag runs, Airflow may schedule an old Dag run that was already completed, e.g. if you have set catchup=True. So the db clean command will preserve the latest non-manually-triggered Dag run to preserve continuity in scheduling.
Considerations for backfillable Dags ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
Not all Dags are designed for use with Airflow's backfill command. But for those which are, special care is warranted. If you delete Dag runs, and if you run backfill over a range of dates that includes the deleted Dag runs, those runs will be recreated and run again. For this reason, if you have Dags that fall into this category you may want to refrain from deleting Dag runs and only clean other large tables such as task instance and log etc.
.. _cli-db-migrate:
Run airflow db migrate --help for usage details.
Running migrations manually ^^^^^^^^^^^^^^^^^^^^^^^^^^^
If desired, you can generate the sql statements for an upgrade and apply each upgrade migration manually, one at a time. To do so you may use either the --range (for Airflow version) or --revision-range (for Alembic revision) option with db migrate. Do not skip running the Alembic revision id update commands; this is how Airflow will know where you are upgrading from the next time you need to. See :doc:/migrations-ref for a mapping between revision and version.
.. _cli-db-downgrade:
.. note::
It's recommended that you backup your database before running ``db downgrade`` or any other database operation.
You can downgrade to a particular Airflow version with the db downgrade command. Alternatively you may provide an Alembic revision id to downgrade to.
If you want to preview the commands but not execute them, use option --show-sql-only.
Options --from-revision and --from-version may only be used in conjunction with the --show-sql-only option, because when actually running migrations we should always downgrade from current revision.
For a mapping between Airflow version and Alembic revision see :doc:/migrations-ref.
.. note::
It's highly recommended that you reserialize your Dags with ``dags reserialize`` after you finish downgrading your Airflow environment (meaning, after you've downgraded the Airflow version installed in your Python environment, not immediately after you've downgraded the database).
This is to ensure that the serialized Dags are compatible with the downgraded version of Airflow.
.. _cli-export-connections:
You may export connections from the database using the CLI. The supported file formats are json, yaml and env.
You may specify the target file as the parameter:
.. code-block:: bash
airflow connections export connections.json
Alternatively you may specify file-format parameter for overriding the file format:
.. code-block:: bash
airflow connections export /tmp/connections --file-format yaml
You may also specify - for STDOUT:
.. code-block:: bash
airflow connections export -
The JSON format contains an object where the key contains the connection ID and the value contains the definition of the connection. In this format, the connection is defined as a JSON object. The following is a sample JSON file.
.. code-block:: json
{
"airflow_db": {
"conn_type": "mysql",
"host": "mysql",
"login": "root",
"password": "plainpassword",
"schema": "airflow",
"port": null,
"extra": null
},
"druid_broker_default": {
"conn_type": "druid",
"host": "druid-broker",
"login": null,
"password": null,
"schema": null,
"port": 8082,
"extra": "{\"endpoint\": \"druid/v2/sql\"}"
}
}
The YAML file structure is similar to that of a JSON. The key-value pair of connection ID and the definitions of one or more connections. In this format, the connection is defined as a YAML object. The following is a sample YAML file.
.. code-block:: yaml
airflow_db:
conn_type: mysql
extra: null
host: mysql
login: root
password: plainpassword
port: null
schema: airflow
druid_broker_default:
conn_type: druid
extra: '{"endpoint": "druid/v2/sql"}'
host: druid-broker
login: null
password: null
port: 8082
schema: null
You may also export connections in .env format. The key is the connection ID, and the value is the serialized representation of the connection, using either Airflow's Connection URI format or JSON. To use JSON provide option --serialization-format=json otherwise the Airflow Connection URI format will be used. The following are sample .env files using the two formats.
URI example:
.. code-block:: text
airflow_db=mysql://root:plainpassword@mysql/airflow
druid_broker_default=druid://druid-broker:8082?endpoint=druid%2Fv2%2Fsql
JSON example output:
.. code-block:: text
airflow_db={"conn_type": "mysql", "login": "root", "password": "plainpassword", "host": "mysql", "schema": "airflow"}
druid_broker_default={"conn_type": "druid", "host": "druid-broker", "port": 8082, "extra": "{\"endpoint\": \"druid/v2/sql\"}"}
The CLI can be used to check whether any discovered Dags have import errors via the list-import-errors subcommand. It is possible to create an automation step which fails if any Dags cannot be imported by checking the command output, particularly when used with --output to generate a standard file format.
For example, the default output when there are no errors is No data found, and the json output is []. The check can then be run in CI or as prek hook to speed up the review process and testing.
Example command that fails if there are any errors, using jq <https://jqlang.github.io/jq/>__ to parse the output:
.. code-block:: bash
airflow dags list-import-errors --output=json | jq -e 'select(type=="array" and length == 0)'
The line can be added to automation as-is, or if you want to print the output you can use tee:
.. code-block:: bash
airflow dags list-import-errors | tee import_errors.txt && jq -e 'select(type=="array" and length == 0)' import_errors.txt
Example in a Jenkins pipeline:
.. code-block:: groovy
stage('All Dags are loadable') {
steps {
sh 'airflow dags list-import-errors | tee import_errors.txt && jq -e \'select(type=="array" and length == 0)\' import_errors.txt'
}
}
.. note::
For this to work accurately, you must ensure Airflow does not log any additional text to stdout. For example, you may need to fix any deprecation warnings, add 2>/dev/null to your command, or set lazy_load_plugins = True in the Airflow config if you have a plugin that generates logs when loaded.