You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@airflow.apache.org by po...@apache.org on 2021/04/06 17:20:24 UTC

[airflow] branch master updated (bc5ced3 -> eae22ce)

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

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


    from bc5ced3  Task Instance model: allow pool names >50 chars (#15203)
     add eae22ce  Adds 'Trino' provider (with lower memory footprint for tests) (#15187)

No new revisions were added by this update.

Summary of changes:
 BREEZE.rst                                         |   2 +-
 CONTRIBUTING.rst                                   |   8 +--
 IMAGES.rst                                         |   4 +-
 INSTALL                                            |   2 +-
 TESTING.rst                                        |   4 +-
 airflow/providers/dependencies.json                |   4 +-
 ...le_presto_to_gcs.py => example_trino_to_gcs.py} |  58 ++++++++---------
 .../{presto_to_gcs.py => trino_to_gcs.py}          |  46 ++++++-------
 airflow/providers/google/provider.yaml             |   4 ++
 airflow/providers/mysql/provider.yaml              |   5 +-
 .../{presto_to_mysql.py => trino_to_mysql.py}      |  22 +++----
 airflow/providers/{tableau => trino}/CHANGELOG.rst |   0
 .../providers/trino}/__init__.py                   |   0
 .../providers/trino/hooks}/__init__.py             |   0
 .../hooks/presto.py => trino/hooks/trino.py}       |  54 ++++++++--------
 .../providers/{openfaas => trino}/provider.yaml    |  21 +++---
 airflow/sensors/sql.py                             |   1 +
 airflow/utils/db.py                                |  10 +++
 breeze                                             |   2 +-
 breeze-complete                                    |   2 +-
 .../{presto_to_gcs.rst => trino_to_gcs.rst}        |  40 ++++++------
 .../apache-airflow-providers-trino/commits.rst     |  16 ++---
 .../index.rst                                      |  25 +++++--
 docs/apache-airflow/extra-packages-ref.rst         |   4 +-
 docs/exts/docs_build/errors.py                     |   2 +-
 docs/exts/docs_build/spelling_checks.py            |   2 +-
 docs/integration-logos/trino/trino-og.png          | Bin 0 -> 34219 bytes
 docs/spelling_wordlist.txt                         |   1 +
 scripts/ci/docker-compose/integration-kerberos.yml |   2 +-
 scripts/ci/docker-compose/integration-redis.yml    |   2 +-
 ...ntegration-presto.yml => integration-trino.yml} |  20 +++---
 .../krb5-kdc-server/utils/create_service.sh        |   2 +-
 .../ci/dockerfiles/{presto => trino}/Dockerfile    |  14 ++--
 .../{presto => trino}/build_and_push.sh            |  14 ++--
 .../ci/dockerfiles/{presto => trino}/entrypoint.sh |  43 +++++++-----
 scripts/ci/libraries/_initialization.sh            |   2 +-
 scripts/in_container/check_environment.sh          |  14 ++--
 .../run_install_and_test_provider_packages.sh      |   4 +-
 setup.py                                           |   7 +-
 tests/cli/commands/test_connection_command.py      |   4 ++
 tests/conftest.py                                  |   2 +-
 tests/core/test_providers_manager.py               |   2 +
 ...{test_presto_to_gcs.py => test_trino_to_gcs.py} |  72 ++++++++++-----------
 ...o_gcs_system.py => test_trino_to_gcs_system.py} |  24 +++----
 ...t_presto_to_mysql.py => test_trino_to_mysql.py} |  36 +++++------
 tests/providers/presto/hooks/test_presto.py        |  25 -------
 .../experimental => providers/trino}/__init__.py   |   0
 .../trino/hooks}/__init__.py                       |   0
 .../test_presto.py => trino/hooks/test_trino.py}   |  54 ++++++++--------
 49 files changed, 356 insertions(+), 326 deletions(-)
 copy airflow/providers/google/cloud/example_dags/{example_presto_to_gcs.py => example_trino_to_gcs.py} (73%)
 copy airflow/providers/google/cloud/transfers/{presto_to_gcs.py => trino_to_gcs.py} (82%)
 copy airflow/providers/mysql/transfers/{presto_to_mysql.py => trino_to_mysql.py} (81%)
 copy airflow/providers/{tableau => trino}/CHANGELOG.rst (100%)
 copy {tests/www/api/experimental => airflow/providers/trino}/__init__.py (100%)
 copy {tests/www/api/experimental => airflow/providers/trino/hooks}/__init__.py (100%)
 copy airflow/providers/{presto/hooks/presto.py => trino/hooks/trino.py} (81%)
 copy airflow/providers/{openfaas => trino}/provider.yaml (71%)
 copy docs/apache-airflow-providers-google/operators/transfer/{presto_to_gcs.rst => trino_to_gcs.rst} (81%)
 copy airflow/providers/apache/livy/CHANGELOG.rst => docs/apache-airflow-providers-trino/commits.rst (73%)
 copy docs/{apache-airflow-providers-google/operators/marketing_platform => apache-airflow-providers-trino}/index.rst (66%)
 create mode 100644 docs/integration-logos/trino/trino-og.png
 rename scripts/ci/docker-compose/{integration-presto.yml => integration-trino.yml} (81%)
 rename scripts/ci/dockerfiles/{presto => trino}/Dockerfile (78%)
 rename scripts/ci/dockerfiles/{presto => trino}/build_and_push.sh (79%)
 rename scripts/ci/dockerfiles/{presto => trino}/entrypoint.sh (73%)
 copy tests/providers/google/cloud/transfers/{test_presto_to_gcs.py => test_trino_to_gcs.py} (83%)
 copy tests/providers/google/cloud/transfers/{test_presto_to_gcs_system.py => test_trino_to_gcs_system.py} (88%)
 copy tests/providers/mysql/transfers/{test_presto_to_mysql.py => test_trino_to_mysql.py} (60%)
 copy tests/{www/api/experimental => providers/trino}/__init__.py (100%)
 copy tests/{www/api/experimental => providers/trino/hooks}/__init__.py (100%)
 copy tests/providers/{presto/hooks/test_presto.py => trino/hooks/test_trino.py} (82%)