decrease latency

This commit is contained in:
Austin 2023-08-30 13:39:59 -04:00
parent 3b7242f187
commit 1afcae06b6
3 changed files with 7 additions and 7 deletions

View File

@ -4,8 +4,8 @@ run-name: dbt_run_scheduled_non_realtime
on:
workflow_dispatch:
schedule:
# Runs "At minute 40, every hour" (see https://crontab.guru)
- cron: '40 * * * *'
# Runs at minutes 4,16,28,40,52 (see https://crontab.guru)
- cron: '4,16,28,40,52 * * * *'
env:
DBT_PROFILES_DIR: ./
@ -42,4 +42,4 @@ jobs:
dbt deps
- name: Run DBT Jobs
run: |
dbt run --vars '{"STREAMLINE_INVOKE_STREAMS":True}' -m tag:non_realtime tag:streamline_decoded_logs_complete tag:streamline_decoded_logs_realtime
dbt run --threads 8 --vars '{"STREAMLINE_INVOKE_STREAMS":True}' -m tag:non_realtime tag:streamline_decoded_logs_complete tag:streamline_decoded_logs_realtime

View File

@ -4,8 +4,8 @@ run-name: dbt_run_streamline_chainhead
on:
workflow_dispatch:
schedule:
# Runs "at minute 25 and 55, every hour" (see https://crontab.guru)
- cron: '25,55 * * * *'
# Runs at minutes 9,21,33,45,57 (see https://crontab.guru)
- cron: '9,21,33,45,57 * * * *'
env:
DBT_PROFILES_DIR: ./

View File

@ -4,8 +4,8 @@ run-name: dbt_run_streamline_decoder
on:
workflow_dispatch:
schedule:
# Runs “At minute 55, every hour.” (see https://crontab.guru)
- cron: '55 * * * *'
# Runs at minutes 10,22,34,46,58 (see https://crontab.guru)
- cron: '10,22,34,46,58 * * * *'
env:
DBT_PROFILES_DIR: ./