From f7419aafb6819697f41cc74ed8cca5438eef4a98 Mon Sep 17 00:00:00 2001 From: desmond-hui <97470747+desmond-hui@users.noreply.github.com> Date: Fri, 2 Dec 2022 10:32:21 -0800 Subject: [PATCH] switch task warehouse to use medium (#171) --- .../task_bulk_get_block_rewards_historical.sql | 2 +- .../task_bulk_get_block_rewards_real_time.sql | 2 +- .../bulk_get_block_txs/task_bulk_get_block_txs_historical.sql | 2 +- .../bulk_get_block_txs/task_bulk_get_block_txs_real_time.sql | 2 +- .../bulk_get_blocks/task_bulk_get_blocks_historical.sql | 2 +- .../bulk_get_blocks/task_bulk_get_blocks_real_time.sql | 2 +- 6 files changed, 6 insertions(+), 6 deletions(-) diff --git a/macros/streamline/bulk_get_block_rewards/task_bulk_get_block_rewards_historical.sql b/macros/streamline/bulk_get_block_rewards/task_bulk_get_block_rewards_historical.sql index 5d1b77c4..3c24bf9f 100644 --- a/macros/streamline/bulk_get_block_rewards/task_bulk_get_block_rewards_historical.sql +++ b/macros/streamline/bulk_get_block_rewards/task_bulk_get_block_rewards_historical.sql @@ -1,7 +1,7 @@ {% macro task_bulk_get_block_rewards_historical() %} {% set sql %} execute immediate 'create or replace task streamline.bulk_get_block_rewards_historical - warehouse = dbt_cloud_solana + warehouse = dbt_cloud allow_overlapping_execution = false schedule = \'USING CRON */15 * * * * UTC\' as diff --git a/macros/streamline/bulk_get_block_rewards/task_bulk_get_block_rewards_real_time.sql b/macros/streamline/bulk_get_block_rewards/task_bulk_get_block_rewards_real_time.sql index 66cf9d3d..9ac6ae59 100644 --- a/macros/streamline/bulk_get_block_rewards/task_bulk_get_block_rewards_real_time.sql +++ b/macros/streamline/bulk_get_block_rewards/task_bulk_get_block_rewards_real_time.sql @@ -1,7 +1,7 @@ {% macro task_bulk_get_block_rewards_real_time() %} {% set sql %} execute immediate 'create or replace task streamline.bulk_get_block_rewards_real_time - warehouse = dbt_cloud_solana + warehouse = dbt_cloud allow_overlapping_execution = false schedule = \'USING CRON */15 * * * * UTC\' as diff --git a/macros/streamline/bulk_get_block_txs/task_bulk_get_block_txs_historical.sql b/macros/streamline/bulk_get_block_txs/task_bulk_get_block_txs_historical.sql index 4a86a429..95f97260 100644 --- a/macros/streamline/bulk_get_block_txs/task_bulk_get_block_txs_historical.sql +++ b/macros/streamline/bulk_get_block_txs/task_bulk_get_block_txs_historical.sql @@ -1,7 +1,7 @@ {% macro task_bulk_get_block_txs_historical() %} {% set sql %} execute immediate 'create or replace task streamline.bulk_get_block_txs_historical - warehouse = dbt_cloud_solana + warehouse = dbt_cloud allow_overlapping_execution = false schedule = \'USING CRON */20 * * * * UTC\' as diff --git a/macros/streamline/bulk_get_block_txs/task_bulk_get_block_txs_real_time.sql b/macros/streamline/bulk_get_block_txs/task_bulk_get_block_txs_real_time.sql index 5a82af44..cfa68eb6 100644 --- a/macros/streamline/bulk_get_block_txs/task_bulk_get_block_txs_real_time.sql +++ b/macros/streamline/bulk_get_block_txs/task_bulk_get_block_txs_real_time.sql @@ -1,7 +1,7 @@ {% macro task_bulk_get_block_txs_real_time() %} {% set sql %} execute immediate 'create or replace task streamline.bulk_get_block_txs_real_time - warehouse = dbt_cloud_solana + warehouse = dbt_cloud allow_overlapping_execution = false schedule = \'USING CRON */20 * * * * UTC\' as diff --git a/macros/streamline/bulk_get_blocks/task_bulk_get_blocks_historical.sql b/macros/streamline/bulk_get_blocks/task_bulk_get_blocks_historical.sql index 1f2dc1f2..77849747 100644 --- a/macros/streamline/bulk_get_blocks/task_bulk_get_blocks_historical.sql +++ b/macros/streamline/bulk_get_blocks/task_bulk_get_blocks_historical.sql @@ -1,7 +1,7 @@ {% macro task_bulk_get_blocks_historical() %} {% set sql %} execute immediate 'create or replace task streamline.bulk_get_blocks_historical - warehouse = dbt_cloud_solana + warehouse = dbt_cloud allow_overlapping_execution = false schedule = \'USING CRON */15 * * * * UTC\' as diff --git a/macros/streamline/bulk_get_blocks/task_bulk_get_blocks_real_time.sql b/macros/streamline/bulk_get_blocks/task_bulk_get_blocks_real_time.sql index 6174c9f3..f5515294 100644 --- a/macros/streamline/bulk_get_blocks/task_bulk_get_blocks_real_time.sql +++ b/macros/streamline/bulk_get_blocks/task_bulk_get_blocks_real_time.sql @@ -1,7 +1,7 @@ {% macro task_bulk_get_blocks_real_time() %} {% set sql %} execute immediate 'create or replace task streamline.bulk_get_blocks_real_time - warehouse = dbt_cloud_solana + warehouse = dbt_cloud allow_overlapping_execution = false schedule = \'USING CRON */15 * * * * UTC\' as