Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat(build): expand matrix to include building for spark 3.4.1 #98

Merged
merged 3 commits into from
Oct 12, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
56 changes: 56 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -923,6 +923,62 @@ jobs:
java: "11"
python: "3.9"
sqlalchemy: "1.4"
- airflow: "2.3"
spark: "3.4.1"
hadoop: "3.3.4"
scala: "2.12"
java: "8"
python: "3.8"
sqlalchemy: "1.4"
- airflow: "2.3"
spark: "3.4.1"
hadoop: "3.3.4"
scala: "2.12"
java: "8"
python: "3.9"
sqlalchemy: "1.4"
- airflow: "2.3"
spark: "3.4.1"
hadoop: "3.3.4"
scala: "2.12"
java: "11"
python: "3.8"
sqlalchemy: "1.4"
- airflow: "2.3"
spark: "3.4.1"
hadoop: "3.3.4"
scala: "2.12"
java: "11"
python: "3.9"
sqlalchemy: "1.4"
- airflow: "2.3"
spark: "3.4.1"
hadoop: "3.3.4"
scala: "2.13"
java: "8"
python: "3.8"
sqlalchemy: "1.4"
- airflow: "2.3"
spark: "3.4.1"
hadoop: "3.3.4"
scala: "2.13"
java: "8"
python: "3.9"
sqlalchemy: "1.4"
- airflow: "2.3"
spark: "3.4.1"
hadoop: "3.3.4"
scala: "2.13"
java: "11"
python: "3.8"
sqlalchemy: "1.4"
- airflow: "2.3"
spark: "3.4.1"
hadoop: "3.3.4"
scala: "2.13"
java: "11"
python: "3.9"
sqlalchemy: "1.4"
runs-on: ubuntu-latest
env:
IMAGE_NAME: airflow-pipeline
Expand Down
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,8 @@

## v8

Add support for Spark v3.4.1 and Hadoop 3.3.4

Add Airflow builds for v2.1, v2.2 and v2.3.

Remove support for builds with Airflow v1.9 and Spark v2.
Expand Down
8 changes: 8 additions & 0 deletions templates/vars.yml
Original file line number Diff line number Diff line change
Expand Up @@ -74,6 +74,14 @@ versions:
python: ["3.7", "3.8", "3.9"]
sqlalchemy: ["1.4"]

- airflow: ["2.3"]
spark: ["3.4.1"]
hadoop: ["3.3.4"]
scala: ["2.12", "2.13"]
java: ["8", "11"]
python: ["3.8", "3.9"]
sqlalchemy: ["1.4"]

# Somehow when Airflow 2.1 is paired with Python 3.7, poetry cannot resolve the dependencies
# So we drop 3.7 for this above combination
# Also, apache-airflow (2.3.0) depends on sqlalchemy (>=1.4,<1.4.10)
Loading