mirror of
https://github.com/FlipsideCrypto/blast-models.git
synced 2026-02-06 13:46:43 +00:00
16 lines
501 B
SQL
16 lines
501 B
SQL
-- depends_on: {{ ref('bronze__streamline_traces') }}
|
|
{{ config (
|
|
materialized = "incremental",
|
|
incremental_strategy = 'delete+insert',
|
|
unique_key = "block_number",
|
|
cluster_by = ['modified_timestamp::DATE','partition_key'],
|
|
post_hook = "ALTER TABLE {{ this }} ADD SEARCH OPTIMIZATION",
|
|
tags = ['non_realtime'],
|
|
full_refresh = false
|
|
) }}
|
|
{{ fsc_evm.silver_traces_v1(
|
|
full_reload_start_block = 3000000,
|
|
full_reload_blocks = 1000000,
|
|
use_partition_key = true
|
|
) }}
|