diff --git a/.github/workflows/dbt_run_streamline_history.yml b/.github/workflows/dbt_run_streamline_history.yml index 47c33f3..593591a 100644 --- a/.github/workflows/dbt_run_streamline_history.yml +++ b/.github/workflows/dbt_run_streamline_history.yml @@ -4,8 +4,8 @@ run-name: dbt_run_streamline_history on: workflow_dispatch: schedule: - # Runs at minute 22 every 4 hours - - cron: '22 */4 * * *' + # Runs at minute 22 every hour + - cron: '22 * * * *' env: DBT_PROFILES_DIR: ./ diff --git a/dbt_project.yml b/dbt_project.yml index 41f6e16..623bdb5 100644 --- a/dbt_project.yml +++ b/dbt_project.yml @@ -139,13 +139,13 @@ vars: CONFIRM_BLOCKS_REALTIME_NEW_BUILD: True BLOCKS_TRANSACTIONS_HISTORY_NEW_BUILD: True - BLOCKS_TRANSACTIONS_HISTORY_SQL_LIMIT: 200000 + BLOCKS_TRANSACTIONS_HISTORY_SQL_LIMIT: 250000 BLOCKS_TRANSACTIONS_HISTORY_PRODUCER_BATCH_SIZE: 100000 BLOCKS_TRANSACTIONS_HISTORY_WORKER_BATCH_SIZE: 7000 BLOCKS_TRANSACTIONS_HISTORY_ORDER_BY_CLAUSE: 'ORDER BY partition_key DESC, block_number DESC' RECEIPTS_BY_HASH_HISTORY_NEW_BUILD: True - RECEIPTS_BY_HASH_HISTORY_SQL_LIMIT: 2000000 + RECEIPTS_BY_HASH_HISTORY_SQL_LIMIT: 2500000 RECEIPTS_BY_HASH_HISTORY_PRODUCER_BATCH_SIZE: 750000 RECEIPTS_BY_HASH_HISTORY_WORKER_BATCH_SIZE: 60000 RECEIPTS_BY_HASH_HISTORY_ORDER_BY_CLAUSE: 'ORDER BY partition_key DESC, block_number DESC'