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: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]