You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@airflow.apache.org by GitBox <gi...@apache.org> on 2021/08/06 15:31:03 UTC

[GitHub] [airflow] JavierLopezT opened a new issue #17473: New view "Operator arguments" between "Task Instance Details" and "Rendered"

JavierLopezT opened a new issue #17473:
URL: https://github.com/apache/airflow/issues/17473


   Hello. A lot of times, when I click on a task, I just want to see the operator arguments that can be manually passed, so Rendered view lacks information, because there are not non-renderable arguments, and Task Instance Details has way too much information, because I don't care about most of the things that are there.
   
   I think it would be useful to add a feature to accomplish this. It could be a new button/view called Task Operator arguments or something like that


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: commits-unsubscribe@airflow.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org



[GitHub] [airflow] JavierLopezT edited a comment on issue #17473: New view "Operator arguments" between "Task Instance Details" and "Rendered"

Posted by GitBox <gi...@apache.org>.
JavierLopezT edited a comment on issue #17473:
URL: https://github.com/apache/airflow/issues/17473#issuecomment-927861831


   Let's say you have a DAG with the following default_args:
   
   ```
   default_args = {
       'email': globals_variables['email_data'],
       'file_format': globals_variables['file_format_csv']['es'],
       'schema': 'schema',
       'database': 'dwh'
       }
   ```
   And the following custom SnowflakeOperator:
   ```
   dw_ext_ba_campaign_costs = SnowflakeOperator(
           task_id='dw_ext_ba_campaign_costs',
           warehouse='warehouse',
           incr_table='ba_campaign_costs'
   )
   ```
   Basically I would like to have a button somewhere like this:
   <img width="703" alt="Captura de pantalla 2021-09-27 a las 15 08 12" src="https://user-images.githubusercontent.com/11339132/134914580-bdb0fd74-c27d-4251-bca0-ac9f4471da55.png">
   
   It would show me the following information:
   
   <img width="714" alt="Captura de pantalla 2021-09-27 a las 15 09 57" src="https://user-images.githubusercontent.com/11339132/134915205-2bf4426c-843a-44b2-9c29-2148653b8f2e.png">
   
   
   


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: commits-unsubscribe@airflow.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org



[GitHub] [airflow] JavierLopezT commented on issue #17473: New view "Operator arguments" between "Task Instance Details" and "Rendered"

Posted by GitBox <gi...@apache.org>.
JavierLopezT commented on issue #17473:
URL: https://github.com/apache/airflow/issues/17473#issuecomment-937851831


   > Do you want `file_format` to show `globals_variables['file_format_csv']['es']` literally? I don't think it's possible.
   
   Well, the "final" value (let's say `dw.example_file_format`) would be fine


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: commits-unsubscribe@airflow.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org



[GitHub] [airflow] github-actions[bot] commented on issue #17473: New view "Operator arguments" between "Task Instance Details" and "Rendered"

Posted by GitBox <gi...@apache.org>.
github-actions[bot] commented on issue #17473:
URL: https://github.com/apache/airflow/issues/17473#issuecomment-968178514


   This issue has been closed because it has not received response from the issue author.


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: commits-unsubscribe@airflow.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org



[GitHub] [airflow] github-actions[bot] commented on issue #17473: New view "Operator arguments" between "Task Instance Details" and "Rendered"

Posted by GitBox <gi...@apache.org>.
github-actions[bot] commented on issue #17473:
URL: https://github.com/apache/airflow/issues/17473#issuecomment-962526978


   This issue has been automatically marked as stale because it has been open for 30 days with no response from the author. It will be closed in next 7 days if no further activity occurs from the issue author.


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: commits-unsubscribe@airflow.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org



[GitHub] [airflow] JavierLopezT commented on issue #17473: New view "Operator arguments" between "Task Instance Details" and "Rendered"

Posted by GitBox <gi...@apache.org>.
JavierLopezT commented on issue #17473:
URL: https://github.com/apache/airflow/issues/17473#issuecomment-927861831


   Let's say you have the following default_args:
   
   ```
   default_args = {
       'email': globals_variables['email_data'],
       'file_format': globals_variables['file_format_csv']['es'],
       'schema': 'schema',
       'database': 'dwh'
       }
   ```
   And the following custom SnowflakeOperator:
   ```
   dw_ext_ba_campaign_costs = SnowflakeOperator(
           task_id='dw_ext_ba_campaign_costs',
           warehouse='warehouse',
           incr_table='ba_campaign_costs'
   )
   ```
   Basically I would like to have a button somewhere like this:
   <img width="703" alt="Captura de pantalla 2021-09-27 a las 15 08 12" src="https://user-images.githubusercontent.com/11339132/134914580-bdb0fd74-c27d-4251-bca0-ac9f4471da55.png">
   
   It would show me the following information:
   
   <img width="714" alt="Captura de pantalla 2021-09-27 a las 15 09 57" src="https://user-images.githubusercontent.com/11339132/134915205-2bf4426c-843a-44b2-9c29-2148653b8f2e.png">
   
   
   


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: commits-unsubscribe@airflow.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org



[GitHub] [airflow] potiuk commented on issue #17473: New view "Operator arguments" between "Task Instance Details" and "Rendered"

Posted by GitBox <gi...@apache.org>.
potiuk commented on issue #17473:
URL: https://github.com/apache/airflow/issues/17473#issuecomment-899102977


   Feel free to propose PR. I think seeing some screenshots here would be useful here before to asses how big of a problem it is


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: commits-unsubscribe@airflow.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org



[GitHub] [airflow] uranusjr commented on issue #17473: New view "Operator arguments" between "Task Instance Details" and "Rendered"

Posted by GitBox <gi...@apache.org>.
uranusjr commented on issue #17473:
URL: https://github.com/apache/airflow/issues/17473#issuecomment-937398844


   Do you want `file_format` to show `globals_variables['file_format_csv']['es']` literally? I don't think it's possible.


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: commits-unsubscribe@airflow.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org



[GitHub] [airflow] uranusjr commented on issue #17473: New view "Operator arguments" between "Task Instance Details" and "Rendered"

Posted by GitBox <gi...@apache.org>.
uranusjr commented on issue #17473:
URL: https://github.com/apache/airflow/issues/17473#issuecomment-937398844


   Do you want `file_format` to show `globals_variables['file_format_csv']['es']` literally? I don't think it's possible.


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: commits-unsubscribe@airflow.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org



[GitHub] [airflow] github-actions[bot] commented on issue #17473: New view "Operator arguments" between "Task Instance Details" and "Rendered"

Posted by GitBox <gi...@apache.org>.
github-actions[bot] commented on issue #17473:
URL: https://github.com/apache/airflow/issues/17473#issuecomment-926249655


   This issue has been automatically marked as stale because it has been open for 30 days with no response from the author. It will be closed in next 7 days if no further activity occurs from the issue author.


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: commits-unsubscribe@airflow.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org



[GitHub] [airflow] github-actions[bot] closed issue #17473: New view "Operator arguments" between "Task Instance Details" and "Rendered"

Posted by GitBox <gi...@apache.org>.
github-actions[bot] closed issue #17473:
URL: https://github.com/apache/airflow/issues/17473


   


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: commits-unsubscribe@airflow.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org



[GitHub] [airflow] JavierLopezT commented on issue #17473: New view "Operator arguments" between "Task Instance Details" and "Rendered"

Posted by GitBox <gi...@apache.org>.
JavierLopezT commented on issue #17473:
URL: https://github.com/apache/airflow/issues/17473#issuecomment-937851831


   > Do you want `file_format` to show `globals_variables['file_format_csv']['es']` literally? I don't think it's possible.
   
   Well, the "final" value (let's say `dw.example_file_format`) would be fine


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: commits-unsubscribe@airflow.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org