From cb510e0d4a80ea4bd9c7f5e43883b25fc219edeb Mon Sep 17 00:00:00 2001 From: "Leona B. Campbell" <3880403+runleonarun@users.noreply.github.com> Date: Thu, 28 Sep 2023 15:20:24 -0700 Subject: [PATCH 1/5] Update 2020-07-01-how-to-create-near-real-time-models-with-just-dbt-sql.md --- ...how-to-create-near-real-time-models-with-just-dbt-sql.md | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/website/blog/2020-07-01-how-to-create-near-real-time-models-with-just-dbt-sql.md b/website/blog/2020-07-01-how-to-create-near-real-time-models-with-just-dbt-sql.md index 944d6fdd3f9..445bfeec73b 100644 --- a/website/blog/2020-07-01-how-to-create-near-real-time-models-with-just-dbt-sql.md +++ b/website/blog/2020-07-01-how-to-create-near-real-time-models-with-just-dbt-sql.md @@ -13,6 +13,12 @@ date: 2020-07-01 is_featured: false --- +:::Caution More up-to-date information available + +The information contained in this blog post is outdated! You should now refer to the most recent blog post [about materialized views](/blog/announcing-materialized-views). + +::: + Before I dive into how to create this, I have to say this. **You probably don’t need this**. I, along with my other Fishtown colleagues, have spent countless hours working with clients that ask for near-real-time streaming data. However, when we start digging into the project, it is often realized that the use case is not there. There are a variety of reasons why near real-time streaming is not a good fit. Two key ones are: 1. The source data isn’t updating frequently enough. From 793b3ba3bc76ad40a171293525cfb3dba634dca8 Mon Sep 17 00:00:00 2001 From: "Leona B. Campbell" <3880403+runleonarun@users.noreply.github.com> Date: Thu, 28 Sep 2023 15:32:49 -0700 Subject: [PATCH 2/5] Update website/blog/2020-07-01-how-to-create-near-real-time-models-with-just-dbt-sql.md --- ...1-how-to-create-near-real-time-models-with-just-dbt-sql.md | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/website/blog/2020-07-01-how-to-create-near-real-time-models-with-just-dbt-sql.md b/website/blog/2020-07-01-how-to-create-near-real-time-models-with-just-dbt-sql.md index 445bfeec73b..79b84121d13 100644 --- a/website/blog/2020-07-01-how-to-create-near-real-time-models-with-just-dbt-sql.md +++ b/website/blog/2020-07-01-how-to-create-near-real-time-models-with-just-dbt-sql.md @@ -15,7 +15,9 @@ is_featured: false :::Caution More up-to-date information available -The information contained in this blog post is outdated! You should now refer to the most recent blog post [about materialized views](/blog/announcing-materialized-views). +The information contained in this blog post is outdated! You should now refer to the most recent blog post [about materialized views](/blog/announcing-materialized-views). + +You can also see our official documentation about [materializations](/docs/build/materializations). ::: From 16469ad7ec964a685248b3f46116ec9c66bc9854 Mon Sep 17 00:00:00 2001 From: "Leona B. Campbell" <3880403+runleonarun@users.noreply.github.com> Date: Thu, 28 Sep 2023 15:34:42 -0700 Subject: [PATCH 3/5] Update website/blog/2020-07-01-how-to-create-near-real-time-models-with-just-dbt-sql.md --- ...-01-how-to-create-near-real-time-models-with-just-dbt-sql.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/website/blog/2020-07-01-how-to-create-near-real-time-models-with-just-dbt-sql.md b/website/blog/2020-07-01-how-to-create-near-real-time-models-with-just-dbt-sql.md index 79b84121d13..ad1e2e5cae2 100644 --- a/website/blog/2020-07-01-how-to-create-near-real-time-models-with-just-dbt-sql.md +++ b/website/blog/2020-07-01-how-to-create-near-real-time-models-with-just-dbt-sql.md @@ -13,7 +13,7 @@ date: 2020-07-01 is_featured: false --- -:::Caution More up-to-date information available +:::caution More up-to-date information available The information contained in this blog post is outdated! You should now refer to the most recent blog post [about materialized views](/blog/announcing-materialized-views). From 4cce16d4647103b18655ebece56caeda00af65f7 Mon Sep 17 00:00:00 2001 From: "Leona B. Campbell" <3880403+runleonarun@users.noreply.github.com> Date: Thu, 28 Sep 2023 15:57:33 -0700 Subject: [PATCH 4/5] Apply suggestions from code review --- ...01-how-to-create-near-real-time-models-with-just-dbt-sql.md | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/website/blog/2020-07-01-how-to-create-near-real-time-models-with-just-dbt-sql.md b/website/blog/2020-07-01-how-to-create-near-real-time-models-with-just-dbt-sql.md index ad1e2e5cae2..84a504ae8c7 100644 --- a/website/blog/2020-07-01-how-to-create-near-real-time-models-with-just-dbt-sql.md +++ b/website/blog/2020-07-01-how-to-create-near-real-time-models-with-just-dbt-sql.md @@ -15,9 +15,8 @@ is_featured: false :::caution More up-to-date information available -The information contained in this blog post is outdated! You should now refer to the most recent blog post [about materialized views](/blog/announcing-materialized-views). +The information contained in this blog post is outdated! You should now refer to the most recent blog post [about materialized views](/blog/announcing-materialized-views) or our official documentation about [materializations](/docs/build/materializations). -You can also see our official documentation about [materializations](/docs/build/materializations). ::: From 09811b503829b73b7eaa3b27affe6414049870c5 Mon Sep 17 00:00:00 2001 From: "Leona B. Campbell" <3880403+runleonarun@users.noreply.github.com> Date: Mon, 2 Oct 2023 11:18:16 -0700 Subject: [PATCH 5/5] Apply suggestions from code review Co-authored-by: Joel Labes --- ...-01-how-to-create-near-real-time-models-with-just-dbt-sql.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/website/blog/2020-07-01-how-to-create-near-real-time-models-with-just-dbt-sql.md b/website/blog/2020-07-01-how-to-create-near-real-time-models-with-just-dbt-sql.md index 84a504ae8c7..cdfd4da5f5d 100644 --- a/website/blog/2020-07-01-how-to-create-near-real-time-models-with-just-dbt-sql.md +++ b/website/blog/2020-07-01-how-to-create-near-real-time-models-with-just-dbt-sql.md @@ -15,7 +15,7 @@ is_featured: false :::caution More up-to-date information available -The information contained in this blog post is outdated! You should now refer to the most recent blog post [about materialized views](/blog/announcing-materialized-views) or our official documentation about [materializations](/docs/build/materializations). +Since this blog post was first published, many data platforms have added support for [materialized views](/blog/announcing-materialized-views), which are a superior way to achieve the goals outlined here. We recommend them over the below approach. :::