mirror of
https://github.com/FlipsideCrypto/avalanche-models.git
synced 2026-02-06 16:06:51 +00:00
* delete workflow and comment out fix * add * add avalanche * add dexalot * add tests * delete old * tests * avax * tests --------- Co-authored-by: Austin <austin@flipsidecrypto.com>
15 lines
481 B
SQL
15 lines
481 B
SQL
-- depends_on: {{ ref('bronze__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",
|
|
full_refresh = false,
|
|
tags = ['non_realtime']
|
|
) }}
|
|
{{ silver_traces_v1(
|
|
full_reload_start_block = 5000000,
|
|
full_reload_blocks = 3000000,
|
|
use_partition_key = true
|
|
) }} |