You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@airflow.apache.org by ka...@apache.org on 2023/02/22 13:48:29 UTC

[airflow] branch main updated (8430d6014a -> 47ebe99972)

This is an automated email from the ASF dual-hosted git repository.

kaxilnaik pushed a change to branch main
in repository https://gitbox.apache.org/repos/asf/airflow.git


    from 8430d6014a Do not crash when a version fails to parse (#29685)
     add 47ebe99972 Add Livy Operator with deferrable mode (#29047)

No new revisions were added by this update.

Summary of changes:
 airflow/providers/apache/livy/hooks/livy.py        | 390 +++++++++++++++++++-
 airflow/providers/apache/livy/operators/livy.py    |  52 ++-
 airflow/providers/apache/livy/provider.yaml        |   2 +
 .../apache/livy/triggers}/__init__.py              |   0
 airflow/providers/apache/livy/triggers/livy.py     | 146 ++++++++
 generated/provider_dependencies.json               |   4 +-
 .../{google/cloud/utils => apache/livy}/compat.py  |   2 +-
 tests/providers/apache/livy/hooks/test_livy.py     | 392 ++++++++++++++++++++-
 tests/providers/apache/livy/operators/test_livy.py | 156 +++++++-
 .../providers/apache/livy/triggers}/__init__.py    |   0
 tests/providers/apache/livy/triggers/test_livy.py  | 202 +++++++++++
 11 files changed, 1334 insertions(+), 12 deletions(-)
 copy airflow/{api_connexion => providers/apache/livy/triggers}/__init__.py (100%)
 create mode 100644 airflow/providers/apache/livy/triggers/livy.py
 copy tests/providers/{google/cloud/utils => apache/livy}/compat.py (95%)
 copy {airflow/api_connexion => tests/providers/apache/livy/triggers}/__init__.py (100%)
 create mode 100644 tests/providers/apache/livy/triggers/test_livy.py