romanzdk commented on issue #33282:
URL: https://github.com/apache/airflow/issues/33282#issuecomment-1673148231
DAG default arguments:
```python
default_args = {
'owner': 'data-team',
'depends_on_past': False,
'start_date': datetime.datetime(2023, 3, 31),
'sla': datetime.timedelta(hours = 3, minutes = 30),
'execution_timeout': datetime.timedelta(hours = 3),
'email_on_failure': False,
'email_on_retry': False,
'retries': 3,
'retry_delay': datetime.timedelta(minutes = 1),
'retry_exponential_backoff': True,
'max_retry_delay': datetime.timedelta(minutes = 10),
'max_active_tis_per_dag': 8,
'pool': EXECUTION_POOL,
}
```
Using regular PythonOperator with function that uses `paramiko` to SSH into
EC2 and perform some operations there and that is it.
--
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]