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

Add DAG to remove old entries from metadata database #245

Merged
merged 8 commits into from
Nov 8, 2023
Merged
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
1 change: 1 addition & 0 deletions airflow_variables_dev.json
Original file line number Diff line number Diff line change
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"
}
1 change: 1 addition & 0 deletions airflow_variables_prod.json
Original file line number Diff line number Diff line change
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