This commit is contained in:
Eric Laurello 2025-11-18 17:05:08 -05:00
parent 860d6dbd58
commit 54f8672fcd
2 changed files with 6 additions and 6 deletions

View File

@ -1,6 +1,6 @@
workflow_name,workflow_schedule
dbt_run_streamline_blocks_realtime,"5,35 * * * *"
dbt_run_core,"20,50 * * * *"
dbt_test_tasks,"0,30 * * * *"
dbt_run_non_core,"25 */3 * * *"
dbt_test_recent,"20 */4 * * *"
dbt_run_core,"50 */3 * * *"
dbt_test_tasks,"0 * * * *"
dbt_run_non_core,"25 */6 * * *"
dbt_test_recent,"20 */12 * * *"
1 workflow_name workflow_schedule
2 dbt_run_streamline_blocks_realtime 5,35 * * * *
3 dbt_run_core 20,50 * * * * 50 */3 * * *
4 dbt_test_tasks 0,30 * * * * 0 * * * *
5 dbt_run_non_core 25 */3 * * * 25 */6 * * *
6 dbt_test_recent 20 */4 * * * 20 */12 * * *

View File

@ -1,12 +1,12 @@
{{ config(
materialized = 'incremental',
unique_key = "blocks_id",
unique_key = "block_id",
incremental_strategy = 'merge',
incremental_predicates = ["COALESCE(DBT_INTERNAL_DEST.block_timestamp::DATE,'2099-12-31') >= (select min(block_timestamp::DATE) from " ~ generate_tmp_view_name(this) ~ ")"],
merge_exclude_columns = ["inserted_timestamp"],
cluster_by = ['block_timestamp::DATE'],
tags = ['core','full_test']
) }}
-- incremental_predicates = ["COALESCE(DBT_INTERNAL_DEST.block_timestamp::DATE,'2099-12-31') >= (select min(block_timestamp::DATE) from " ~ generate_tmp_view_name(this) ~ ")"],
-- depends_on: {{ ref('bronze__blocks') }}
{% if execute %}