Airflow: Log file isn't local, Unsupported remote log location

前端 未结 3 1566
别跟我提以往
别跟我提以往 2021-01-01 23:47

I am not able see the logs attached to the tasks from the Airflow UI:

Log related settings in airflow.cfg file are:

  • remote_base_log_folder =
相关标签:
3条回答
  • 2021-01-02 00:01

    I also faced the same problem.

    Setting below variables in airflow.cfg worked for me. Use {hostname} as machine's FQDN {hostname} instead of localhost.

    endpoint_url = http://{hostname}:8080
    
    base_url = http://{hostname}:8080
    

    Best of luck!

    0 讨论(0)
  • 2021-01-02 00:13

    I ran into this as well, and had to unpause the tasks.

    dags_are_paused_at_creation = False
    

    I also set new dags to default to unpaused in my airflow.cfg

    dags_are_paused_at_creation = False
    
    0 讨论(0)
  • 2021-01-02 00:26

    As you can see in the image-1 there is a timestamp , make sure in your logs you have the folder/file with that timestamp as name ..

    You are looking at UI, so first make sure you have log files created in the directory, in my case my log folder looks like

    (AIRFLOW-ENV) [cloudera@quickstart dags]$ ll /home/cloudera/workspace/python/airflow_home/logs/my_test_dag/my_sensor_task 
    total 8
    -rw-rw-rw- 1 cloudera cloudera 3215 Nov 14 08:45 2017-11-12T12:00:00
    -rw-rw-rw- 1 cloudera cloudera 2694 Nov 14 08:45 2017-11-14T08:36:06.920727
    (AIRFLOW-ENV) [cloudera@quickstart dags]$ 
    

    So my log URL is

    http://localhost:8080/admin/airflow/log?task_id=my_sensor_task&dag_id=my_test_dag&execution_date=2017-11-14T08:36:06.920727
    

    When you go to your DAG, and select the GRAPH-VIEW, you can see a dropdown next to "RUN", select the appropriate run, and then in the graph-view below , select the appropriate task/operator and select view-log

    0 讨论(0)
提交回复
热议问题