Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Task logs readability in Airflow 3 is not good as compared to Airflow 2 #46435

Open
1 of 2 tasks
atul-astronomer opened this issue Feb 4, 2025 · 1 comment
Open
1 of 2 tasks
Labels
affected_version:3.0.0alpha For all 3.0.0 alpha releases area:UI Related to UI/UX. For Frontend Developers. kind:bug This is a clearly a bug

Comments

@atul-astronomer
Copy link

Apache Airflow version

3.0.0a1

If "Other Airflow 2 version" selected, which one?

No response

What happened?

Task logs are much more readable in Airflow 2 as compared to Airflow 3

What you think should happen instead?

No response

How to reproduce

Run the below DAG and compare the logs in Airflow 2 and Airflow 3

from airflow import DAG
from airflow.providers.standard.operators.bash import BashOperator

dag = DAG(
    'hello_world_dag',
    schedule=None,
    catchup=False,
)

hello_task = BashOperator(
    task_id='say_hello',
    bash_command='echo "Hello World from Airflow!"',
    do_xcom_push = True,
    dag=dag,
)

hello_task

Screenshots:

Airflow 2.10

Image

Airflow 3 (Tag 3.0.0a1)

Image

Operating System

Linux

Versions of Apache Airflow Providers

No response

Deployment

Other

Deployment details

No response

Anything else?

No response

Are you willing to submit PR?

  • Yes I am willing to submit a PR!

Code of Conduct

@atul-astronomer atul-astronomer added area:core kind:bug This is a clearly a bug needs-triage label for new issues that we didn't triage yet labels Feb 4, 2025
@dosubot dosubot bot added the area:logging label Feb 4, 2025
@vatsrahul1001 vatsrahul1001 added affected_version:3.0.0alpha For all 3.0.0 alpha releases and removed needs-triage label for new issues that we didn't triage yet labels Feb 4, 2025
@tirkarthi
Copy link
Contributor

cc: @ashb @kaxil @amoghrajesh

@ashb ashb added area:UI Related to UI/UX. For Frontend Developers. and removed area:logging area:core labels Feb 7, 2025
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
affected_version:3.0.0alpha For all 3.0.0 alpha releases area:UI Related to UI/UX. For Frontend Developers. kind:bug This is a clearly a bug
Projects
None yet
Development

No branches or pull requests

4 participants