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

[PRODUCTION] Update production Airflow environment #247

Merged
merged 6 commits into from
Nov 9, 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
10 changes: 5 additions & 5 deletions .pre-commit-config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@

repos:
- repo: https://github.com/pre-commit/pre-commit-hooks
rev: v4.4.0
rev: v4.5.0
hooks:
- id: check-added-large-files # prevents giant files from being committed.
- id: check-case-conflict # checks for files that would conflict in case-insensitive filesystems.
Expand All @@ -22,26 +22,26 @@ repos:
- id: trailing-whitespace # trims trailing whitespace.

- repo: https://github.com/pre-commit/mirrors-prettier
rev: v3.0.0-alpha.6
rev: v3.0.3
hooks:
- id: prettier
files: \.(json|markdown|md|yaml|yml)$

- repo: https://github.com/hadialqattan/pycln
rev: v2.1.3
rev: v2.3.0
hooks:
- id: pycln

- repo: https://github.com/psf/black
rev: 23.3.0
rev: 23.11.0
hooks:
- id: black

- repo: https://github.com/pycqa/isort
rev: 5.12.0
hooks:
- id: isort
args: [--profile=black]
args: ["--profile=black", "--magic-placement"]

- repo: https://github.com/sqlfluff/sqlfluff
rev: 2.0.3
Expand Down
3 changes: 2 additions & 1 deletion airflow_variables_dev.json
Original file line number Diff line number Diff line change
Expand Up @@ -94,7 +94,7 @@
"partnership_assets__account_holders_activity_fact": true,
"partnership_assets__asset_activity_fact": true
},
"dbt_image_name": "stellar/stellar-dbt:011d897",
"dbt_image_name": "stellar/stellar-dbt:2ef9be7",
"dbt_job_execution_timeout_seconds": 300,
"dbt_job_retries": 1,
"dbt_keyfile_profile": "",
Expand Down Expand Up @@ -307,5 +307,6 @@
"columns_ohlc_currency": ["time", "open", "high", "low", "close"]
},
"currency_bucket": "currencies_ohlc",
"max_db_entry_age_in_days": 90,
"public_dbt_image_name": "stellar/stellar-dbt:671afb6"
}
3 changes: 2 additions & 1 deletion airflow_variables_prod.json
Original file line number Diff line number Diff line change
Expand Up @@ -116,7 +116,7 @@
"partnership_assets__asset_activity_fact": false,
"trade_agg": false
},
"dbt_image_name": "stellar/stellar-dbt:011d897",
"dbt_image_name": "stellar/stellar-dbt:2ef9be7",
"dbt_job_execution_timeout_seconds": 6000,
"dbt_job_retries": 1,
"dbt_keyfile_profile": "",
Expand Down Expand Up @@ -327,5 +327,6 @@
"columns_ohlc_currency": ["time", "open", "high", "low", "close"]
},
"currency_bucket": "ext-asset-pricing",
"max_db_entry_age_in_days": 180,
"public_dbt_image_name": "stellar/stellar-dbt:671afb6"
}
Loading