increase batch size; run interval (#702)

This commit is contained in:
tarikceric 2024-11-08 09:45:09 -08:00 committed by GitHub
parent 5f7d79fc3b
commit 7b139acfba
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 2 additions and 2 deletions

View File

@ -10,5 +10,5 @@ dbt_run_streamline_block_rewards,"*/15 * * * *"
dbt_run_streamline_blocks,"*/5 * * * *"
dbt_run_streamline_helius_cnft_metadata,"*/10 * * * *"
dbt_run_transactions_units_consumed_backfill,"2,7,12,17,22,27,32,37,42,47,52,57 * * * *"
dbt_run_nft_compressed_mints_backfill,"2,17,32,47 * * * *"
dbt_run_nft_compressed_mints_backfill,"2,10,17,25,32,40,47,55 * * * *"
dbt_run_streamline_solscan_blocks,"7,27,47 * * * *"

1 workflow_name workflow_schedule
10 dbt_run_streamline_blocks */5 * * * *
11 dbt_run_streamline_helius_cnft_metadata */10 * * * *
12 dbt_run_transactions_units_consumed_backfill 2,7,12,17,22,27,32,37,42,47,52,57 * * * *
13 dbt_run_nft_compressed_mints_backfill 2,17,32,47 * * * * 2,10,17,25,32,40,47,55 * * * *
14 dbt_run_streamline_solscan_blocks 7,27,47 * * * *

View File

@ -25,7 +25,7 @@
block_timestamp
FROM
bronze_api.nft_compressed_mints_backfill_requests
qualify(row_number() over (order by block_timestamp)) <= 1500;
qualify(row_number() over (order by block_timestamp)) <= 9000;
{% endset %}
{% do run_query(request_batch_setup) %}