This is an automated email from the ASF dual-hosted git repository.
potiuk pushed a change to branch move-prepare-providers-packages-to-breeze
in repository https://gitbox.apache.org/repos/asf/airflow.git
omit 9410c204e1 Move prepare-provider-packages to be run entirely in Breeze
Python
add 9103ea1702 Add support for Spark Connect to pyspark decorator (#35665)
add a9ce7135ff Add "NON_PREEMPTIBLE" as a valid preemptibility type for
Dataproc workers (#35669)
add 5983506df3 Add operator to invoke Azure-Synapse pipeline (#35091)
add 08d15d06ba Add support for driver pool, instance flexibility policy,
and min_num_instances for Dataproc (#34172)
add 9877f36cc0 Fix generated depdendencies and breeze readme (#35680)
new 829916cbd6 Move prepare-provider-packages to be run entirely in Breeze
Python
This update added new revisions after undoing existing revisions.
That is to say, some revisions that were in the old version of the
branch are not in the new version. This situation occurs
when a user --force pushes a change and generates a repository
containing something like this:
* -- * -- B -- O -- O -- O (9410c204e1)
\
N -- N -- N refs/heads/move-prepare-providers-packages-to-breeze
(829916cbd6)
You should already have received notification emails for all of the O
revisions, and so the following emails describe only the N revisions
from the common base, B.
Any revisions marked "omit" are not gone; other references still
refer to them. Any revisions marked "discard" are gone forever.
The 1 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails. The revisions
listed as "add" were already present in the repository and have only
been added to this reference.
Summary of changes:
.../providers/apache/spark/decorators/pyspark.py | 27 ++-
.../providers/apache/spark/hooks/spark_connect.py | 99 ++++++++++
airflow/providers/apache/spark/provider.yaml | 4 +
.../providers/google/cloud/operators/dataproc.py | 86 ++++++++
airflow/providers/google/provider.yaml | 2 +-
airflow/providers/microsoft/azure/hooks/synapse.py | 191 +++++++++++++++++-
.../providers/microsoft/azure/operators/synapse.py | 187 +++++++++++++++++-
airflow/providers/microsoft/azure/provider.yaml | 8 +-
dev/breeze/README.md | 2 +-
dev/breeze/pyproject.toml | 2 +-
.../connections/spark.rst | 11 +-
.../decorators/pyspark.rst | 23 ++-
docs/spelling_wordlist.txt | 4 +
generated/provider_dependencies.json | 4 +-
.../apache/spark/decorators/test_pyspark.py | 117 ++++++++++-
.../apache/spark/hooks/test_spark_connect.py | 72 +++++++
.../google/cloud/operators/test_dataproc.py | 140 +++++++++++++
.../microsoft/azure/hooks/test_synapse_pipeline.py | 159 +++++++++++++++
.../microsoft/azure/operators/test_synapse.py | 218 ++++++++++++++++++++-
...ileshare.py => example_synapse_run_pipeline.py} | 48 ++---
20 files changed, 1345 insertions(+), 59 deletions(-)
create mode 100644 airflow/providers/apache/spark/hooks/spark_connect.py
create mode 100644 tests/providers/apache/spark/hooks/test_spark_connect.py
create mode 100644
tests/providers/microsoft/azure/hooks/test_synapse_pipeline.py
copy tests/system/providers/microsoft/azure/{example_fileshare.py =>
example_synapse_run_pipeline.py} (64%)