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

[ETL-701] run JSON to Parquet workflow every sunday at 2am #156

Merged
merged 4 commits into from
Dec 13, 2024
Merged
Show file tree
Hide file tree
Changes from 3 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
3 changes: 2 additions & 1 deletion .github/workflows/upload-and-deploy.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -183,7 +183,7 @@ jobs:
environment: develop
steps:
- name: Assume AWS role
uses: aws-actions/configure-aws-credentials@v2
uses: aws-actions/configure-aws-credentials@v4
with:
role-to-assume: ${{ vars.AWS_CREDENTIALS_IAM_ROLE }}
aws-region: "us-east-1"
Expand Down Expand Up @@ -240,6 +240,7 @@ jobs:
password: ${{ needs.pytest-docker.outputs.ecr-password }}
env:
DISABLE_SSL: true
ACTIONS_ALLOW_USE_UNSECURE_NODE_VERSION: true
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Feel free to remove these modifications, I don't think these will work anymore

options: "--user root"
steps:
- name: Assume AWS role
Expand Down
2 changes: 1 addition & 1 deletion templates/glue-workflow.j2
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ Parameters:
When `IsMainNamespace`, the respective trigger is active from the moment
of deployment. Otherwise, the trigger is disabled so that we don't waste
resources running our development pipelines every day.
Default: cron(0 2 * * ? *)
Default: cron(0 2 * * 0 *)

CompareParquetStagingNamespace:
Type: String
Expand Down
Loading