<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>article Getting Started with Databricks - Build a simple Lakehouse analytics pipeline in Get Started Guides</title>
    <link>https://community.databricks.com/t5/get-started-guides/getting-started-with-databricks-build-a-simple-lakehouse/ta-p/67404</link>
    <description>&lt;H1&gt;&lt;STRONG&gt;Getting started with Databricks - Build a simple Lakehouse analytics pipeline&lt;/STRONG&gt;&lt;/H1&gt;
&lt;P&gt;&lt;SPAN&gt;The demo example in this guide illustrates a lakehouse analytics pipeline using the well-known NYC taxi trip dataset. This public dataset is also available at Kaggle.&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;This guide provides a practical demonstration of how to structure a data pipeline using the medallion architecture, progressively refining and analyzing data as it moves through each layer. It also demonstrates the pipeline’s integration with Unity Catalog, showing how to set up data lineage and governance. Finally, it covers AI/BI dashboards for enhancing analytical decision-making and sharing insights with team members.&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;This is a beginner’s tutorial with hands-on instructions to execute in your own Databricks workspace. &lt;/SPAN&gt;&lt;A href="https://www.databricks.com/try-databricks#account" target="_blank" rel="noopener"&gt;&lt;SPAN&gt;You can request a free 14-day trial.&amp;nbsp;&lt;/SPAN&gt;&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;&lt;STRONG&gt;Understanding the medallion architecture&lt;/STRONG&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;The medallion architecture is a method for organizing and refining data in a lakehouse by moving it through three layers—Bronze (raw data), Silver (cleaned data), and Gold (final, ready-to-use data).&lt;/SPAN&gt;&lt;/P&gt;
&lt;P class="lia-align-center"&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="DatabricksGuide_0-1723742834161.png" style="width: 400px;"&gt;&lt;img src="https://community.databricks.com/t5/image/serverpage/image-id/10370i1686F6209E18FFFD/image-size/medium?v=v2&amp;amp;px=400" role="button" title="DatabricksGuide_0-1723742834161.png" alt="DatabricksGuide_0-1723742834161.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;H3&gt;&lt;STRONG&gt;Step 1: Create a notebook and add SQL pipeline code&lt;/STRONG&gt;&lt;/H3&gt;
&lt;OL&gt;
&lt;LI style="font-weight: 400;" aria-level="1"&gt;&lt;SPAN&gt;In your Databricks workspace, click "+New" in the left sidebar and select Notebook. Name the notebook “NYTaxi Pipeline SQL.”&lt;/SPAN&gt;&lt;/LI&gt;
&lt;LI style="font-weight: 400;" aria-level="1"&gt;&lt;SPAN&gt;Set the notebook’s default language to SQL next to its name. We want to code the pipeline in SQL for simplicity.&lt;/SPAN&gt;&lt;/LI&gt;
&lt;LI style="font-weight: 400;" aria-level="1"&gt;&lt;SPAN&gt;Copy and paste the following code into your new SQL notebook.&amp;nbsp;&lt;/SPAN&gt;&lt;/LI&gt;
&lt;/OL&gt;
&lt;H4&gt;&lt;STRONG&gt;&amp;nbsp;Bronze layer&lt;/STRONG&gt;&lt;/H4&gt;
&lt;P&gt;&lt;I&gt;&lt;SPAN&gt;Bronze Table: &lt;/SPAN&gt;&lt;/I&gt;&lt;I&gt;&lt;SPAN&gt;Raw data ingestion&lt;BR /&gt;&lt;/SPAN&gt;&lt;/I&gt;&lt;SPAN&gt;Here, raw taxi trip data is ingested, with a basic data quality check applied to ensure trip distances are positive.&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;LI-CODE lang="python"&gt;- Bronze layer: Raw data ingestion

CREATE OR REPLACE TABLE taxi_raw_records AS
SELECT *
FROM samples.nyctaxi.trips
WHERE trip_distance &amp;gt; 0.0;&lt;/LI-CODE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;STRONG&gt;-Silver layer&lt;/STRONG&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;The Silver layer creates two tables:&amp;nbsp;&lt;BR /&gt;&lt;/SPAN&gt;&lt;I&gt;&lt;SPAN&gt;Silver Table 1:&amp;nbsp; Flagged rides&lt;BR /&gt;&lt;/SPAN&gt;&lt;/I&gt;&lt;SPAN&gt;This table identifies potentially suspicious rides based on fare and distance criteria.&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;LI-CODE lang="python"&gt;-- Silver Table 1: Flagged rides

CREATE OR REPLACE TABLE flagged_rides AS
SELECT
  date_trunc("week", tpep_pickup_datetime) AS week,
  pickup_zip AS zip,
  fare_amount,
  trip_distance
FROM
  taxi_raw_records
WHERE ((pickup_zip = dropoff_zip AND fare_amount &amp;gt; 50) OR
       (trip_distance &amp;lt; 5 AND fare_amount &amp;gt; 50));&lt;/LI-CODE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;I&gt;&lt;SPAN&gt;Silver Table 2: Weekly statistics&lt;BR /&gt;&lt;/SPAN&gt;&lt;/I&gt;&lt;SPAN&gt;This silver table calculates weekly average fares and trip distances.&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;LI-CODE lang="python"&gt;- Silver layer 2: Weekly statistics

CREATE OR REPLACE TABLE weekly_stats AS
SELECT
  date_trunc("week", tpep_pickup_datetime) AS week,
  AVG(fare_amount) AS avg_amount,
  AVG(trip_distance) AS avg_distance
FROM
  taxi_raw_records
GROUP BY week
ORDER BY week ASC;&lt;/LI-CODE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;STRONG&gt;Gold layer&lt;BR /&gt;&lt;/STRONG&gt;&lt;EM&gt;Gold Table 1: Top N rides&lt;/EM&gt;&lt;BR /&gt;&lt;SPAN&gt;Here, these silver tables are integrated to provide a comprehensive view of the top three highest-fare rides.&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;LI-CODE lang="python"&gt;-- Gold layer: Top N rides to investigate

CREATE OR REPLACE TABLE top_n AS
SELECT
  ws.week,
  ROUND(ws.avg_amount, 2) AS avg_amount,
  ROUND(ws.avg_distance, 3) AS avg_distance,
  fr.fare_amount,
  fr.trip_distance,
  fr.zip
FROM
  flagged_rides fr
LEFT JOIN weekly_stats ws ON ws.week = fr.week
ORDER BY fr.fare_amount DESC
LIMIT 3;&lt;/LI-CODE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;H3&gt;&lt;STRONG&gt;Step 2: Schedule a notebook job&lt;/STRONG&gt;&lt;/H3&gt;
&lt;P&gt;&lt;SPAN&gt;To ensure that the Bronze, Silver, and Gold tables are regularly updated with fresh data, it’s recommended to schedule the notebook as a job to run periodically. This will keep the tables current with the latest information.&amp;nbsp;&lt;/SPAN&gt;&lt;SPAN&gt;To schedule a notebook job to run periodically:&lt;/SPAN&gt;&lt;/P&gt;
&lt;OL&gt;
&lt;LI style="font-weight: 400;" aria-level="1"&gt;&lt;SPAN&gt;In the notebook, click the &lt;/SPAN&gt;&lt;STRONG&gt;Schedule &lt;/STRONG&gt;&lt;SPAN&gt;button at the top right.&amp;nbsp;&lt;/SPAN&gt;&lt;/LI&gt;
&lt;LI style="font-weight: 400;" aria-level="1"&gt;&lt;SPAN&gt;In the Schedule dialog, optionally enter a name for the job. The default name is the name of the notebook.&lt;/SPAN&gt;&lt;/LI&gt;
&lt;LI style="font-weight: 400;" aria-level="1"&gt;&lt;SPAN&gt;Scheduled runs allow you to define a schedule for your job run. Adjust the frequency, time, and time zone for the job run.&amp;nbsp;&lt;/SPAN&gt;&lt;/LI&gt;
&lt;LI style="font-weight: 400;" aria-level="1"&gt;&lt;SPAN&gt;Leave everything else as is and click &lt;/SPAN&gt;&lt;STRONG&gt;Create&lt;/STRONG&gt;&lt;SPAN&gt;.&lt;/SPAN&gt;&lt;/LI&gt;
&lt;LI style="font-weight: 400;" aria-level="1"&gt;&lt;SPAN&gt;Once the schedule is successfully created, click &lt;/SPAN&gt;&lt;STRONG&gt;Run Now &lt;/STRONG&gt;&lt;SPAN&gt;to trigger a job run for the NYCTaxiSQL Pipeline.&lt;/SPAN&gt;&lt;/LI&gt;
&lt;/OL&gt;
&lt;H3&gt;&lt;STRONG&gt;Step 3: Discover data using Catalog Explorer&lt;/STRONG&gt;&lt;/H3&gt;
&lt;P&gt;&lt;SPAN&gt;Explore and manage your generated datasets through Unity Catalog using Catalog Explorer. Unity Catalog organizes data in a three-level namespace:&lt;/SPAN&gt;&lt;SPAN&gt; Catalog.Schema.Table.&lt;/SPAN&gt;&lt;SPAN&gt; Follow the steps below to examine the data produced by your pipeline and visualize its lineage. This allows you to inspect sample data, view table details, and explore the end-to-end data lineage of your pipeline objects.&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-center" image-alt="DatabricksGuide_1-1723742833943.png" style="width: 400px;"&gt;&lt;img src="https://community.databricks.com/t5/image/serverpage/image-id/10369iA5B60EF6A4DF52E9/image-size/medium?v=v2&amp;amp;px=400" role="button" title="DatabricksGuide_1-1723742833943.png" alt="DatabricksGuide_1-1723742833943.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;OL&gt;
&lt;LI style="font-weight: 400;" aria-level="1"&gt;&lt;SPAN&gt;Click &lt;/SPAN&gt;&lt;STRONG&gt;Catalog&lt;/STRONG&gt;&lt;SPAN&gt; in the sidebar to open the Catalog Explorer.&lt;/SPAN&gt;&lt;/LI&gt;
&lt;LI style="font-weight: 400;" aria-level="1"&gt;&lt;SPAN&gt;The newly created tables from our NYCTaxiSQLPipeline should be accessible by clicking the Recents top on the top of the page.&lt;/SPAN&gt;&lt;/LI&gt;
&lt;LI style="font-weight: 400;" aria-level="1"&gt;&lt;SPAN&gt;Click weekly_stats to load the table details.&lt;/SPAN&gt;&lt;/LI&gt;
&lt;LI style="font-weight: 400;" aria-level="1"&gt;&lt;SPAN&gt;Click &lt;/SPAN&gt;&lt;STRONG&gt;Lineage&lt;/STRONG&gt;&lt;SPAN&gt; and then &lt;/SPAN&gt;&lt;STRONG&gt;Lineage Graph&lt;/STRONG&gt;&lt;SPAN&gt; to view a graphical representation of all the upstream and downstream tables from weekly_stats.&amp;nbsp;&lt;/SPAN&gt;&lt;/LI&gt;
&lt;/OL&gt;
&lt;H3&gt;&lt;STRONG&gt;Step 4: Create a Dashboard&lt;/STRONG&gt;&lt;/H3&gt;
&lt;OL&gt;
&lt;LI style="font-weight: 400;" aria-level="1"&gt;&lt;SPAN&gt;Use the &lt;/SPAN&gt;&lt;STRONG&gt;Create&lt;/STRONG&gt;&lt;SPAN&gt; button on the right side to create a &lt;/SPAN&gt;&lt;STRONG&gt;Dashboard&lt;/STRONG&gt;&lt;SPAN&gt; from the weekly_stats table. This automatically creates a new dashboard for the weekly_stats table. Rename the dashboard on the top as NYCTaxiPipelineDash.&lt;/SPAN&gt;&lt;/LI&gt;
&lt;LI style="font-weight: 400;" aria-level="1"&gt;&lt;SPAN&gt;Start building out your dashboard by using the &lt;/SPAN&gt;&lt;STRONG&gt;Ask the Assistant&lt;/STRONG&gt;&lt;SPAN&gt; prompt at the top of the dashboard to create your first chart using AI. Click one of the auto-generated prompts to get started.&amp;nbsp;&lt;/SPAN&gt;&lt;/LI&gt;
&lt;LI style="font-weight: 400;" aria-level="1"&gt;&lt;SPAN&gt;Add more charts by using the “Add a Visualization” widget from the selector at the bottom and place the cursor on a space on the dashboard. Here are some additional prompts:&lt;/SPAN&gt;&lt;/LI&gt;
&lt;OL&gt;
&lt;LI style="font-weight: 400;" aria-level="2"&gt;&lt;I&gt;&lt;SPAN&gt;Show a scatter plot of the trip distance and average fare amount by day of the week.&lt;/SPAN&gt;&lt;/I&gt;&lt;/LI&gt;
&lt;LI style="font-weight: 400;" aria-level="2"&gt;&lt;I&gt;&lt;SPAN&gt;Visualize total trips across zip codes as a bar chart&lt;/SPAN&gt;&lt;/I&gt;&lt;/LI&gt;
&lt;/OL&gt;
&lt;LI style="font-weight: 400;" aria-level="1"&gt;&lt;SPAN&gt;Click &lt;/SPAN&gt;&lt;STRONG&gt;Accept &lt;/STRONG&gt;&lt;SPAN&gt;to save the AI-generated chart or use the widget on the right to regenerate the chart. Use the&lt;/SPAN&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="DatabricksGuide_2-1723742833913.png" style="width: 24px;"&gt;&lt;img src="https://community.databricks.com/t5/image/serverpage/image-id/10368i19F1AA0BD1A46FB5/image-dimensions/24x22?v=v2" width="24" height="22" role="button" title="DatabricksGuide_2-1723742833913.png" alt="DatabricksGuide_2-1723742833913.png" /&gt;&lt;/span&gt;&lt;SPAN&gt;button on the upper-right of each chart to provide a different prompt to update the chart.&lt;/SPAN&gt;&lt;/LI&gt;
&lt;LI style="font-weight: 400;" aria-level="1"&gt;&lt;SPAN&gt;Alternatively, use the chart builder on the right side to choose a chart type and then select values for the x-axis and y-axis.&lt;/SPAN&gt;&lt;/LI&gt;
&lt;/OL&gt;
&lt;H3&gt;&lt;STRONG&gt;Step 5: Publish and distribute your dashboard&lt;/STRONG&gt;&lt;/H3&gt;
&lt;P&gt;&lt;SPAN&gt;While you develop a dashboard, your progress is saved as a draft. To create a clean copy for easy consumption, publish your dashboard. After you publish a dashboard, the published version remains intact until you publish again, even if you make changes to the draft. You can make modifications and improvements to the draft version without affecting the published copy.&lt;/SPAN&gt;&lt;/P&gt;
&lt;OL&gt;
&lt;LI style="font-weight: 400;" aria-level="1"&gt;&lt;SPAN&gt;When you’re done adding charts to this dashboard, click &lt;/SPAN&gt;&lt;STRONG&gt;Publish&lt;/STRONG&gt;&lt;SPAN&gt; in the upper-right corner to create a clean copy of the current dashboard.&amp;nbsp;&lt;/SPAN&gt;&lt;/LI&gt;
&lt;LI style="font-weight: 400;" aria-level="1"&gt;&lt;SPAN&gt;Click &lt;/SPAN&gt;&lt;STRONG&gt;Publish.&lt;/STRONG&gt;&lt;SPAN&gt; Your dashboard is now ready to be shared with other team members.&lt;/SPAN&gt;&lt;/LI&gt;
&lt;/OL&gt;
&lt;P&gt;&lt;STRONG&gt;Add users to your Databricks Workspace&lt;/STRONG&gt;&lt;/P&gt;
&lt;OL&gt;
&lt;LI style="font-weight: 400;" aria-level="1"&gt;&lt;SPAN&gt;In the top bar of the Databricks workspace, click your username and then click Settings.&lt;/SPAN&gt;&lt;/LI&gt;
&lt;LI style="font-weight: 400;" aria-level="1"&gt;&lt;SPAN&gt;In the sidebar, click &lt;STRONG&gt;Identity and Access&lt;/STRONG&gt;.&lt;/SPAN&gt;&lt;/LI&gt;
&lt;LI style="font-weight: 400;" aria-level="1"&gt;&lt;SPAN&gt;Next to Users, click &lt;STRONG&gt;Manage&lt;/STRONG&gt;.&lt;/SPAN&gt;&lt;/LI&gt;
&lt;LI style="font-weight: 400;" aria-level="1"&gt;&lt;SPAN&gt;Click&lt;STRONG&gt; Add user&lt;/STRONG&gt;, and then click &lt;STRONG&gt;Add new&lt;/STRONG&gt;.&lt;/SPAN&gt;&lt;/LI&gt;
&lt;LI style="font-weight: 400;" aria-level="1"&gt;&lt;SPAN&gt;Enter the user’s email address, and then click &lt;STRONG&gt;Add&lt;/STRONG&gt;.&lt;/SPAN&gt;&lt;/LI&gt;
&lt;/OL&gt;
&lt;P&gt;&lt;SPAN&gt;Continue to add as many users to your account as you would like. New users receive an email prompting them to set up their account.&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;STRONG&gt;Share the dashboard with colleagues&lt;/STRONG&gt;&lt;/P&gt;
&lt;OL&gt;
&lt;LI style="font-weight: 400;" aria-level="1"&gt;&lt;SPAN&gt;To manage access to the dashboard, click &lt;/SPAN&gt;&lt;STRONG&gt;Share&lt;/STRONG&gt;&lt;SPAN&gt; at the top of the dashboard to open the permissions dialog.&amp;nbsp;&lt;/SPAN&gt;&lt;/LI&gt;
&lt;LI style="font-weight: 400;" aria-level="1"&gt;&lt;SPAN&gt;Enter the email address of the user you want to share the dashboard with and click "&lt;/SPAN&gt;&lt;STRONG&gt;Add&lt;/STRONG&gt;&lt;SPAN&gt;." They will receive an email notification and will be able to access the dashboard in Databricks.&lt;/SPAN&gt;&lt;/LI&gt;
&lt;LI style="font-weight: 400;" aria-level="1"&gt;&lt;SPAN&gt;[Optional] To share the dashboard with all colleagues, add the “All Users” group to the dashboard’s access list with “Can View” or “Can Run” permissions. You can also copy the dashboard’s URL to your clipboard using the “Copy link” button and send it directly to your colleagues. &lt;span class="lia-unicode-emoji" title=":party_popper:"&gt;🎉&lt;/span&gt;&lt;/SPAN&gt;&lt;/LI&gt;
&lt;/OL&gt;
&lt;H2&gt;&lt;STRONG&gt;Congratulations!&lt;/STRONG&gt;&lt;/H2&gt;
&lt;P&gt;&lt;SPAN&gt;You’ve now created, run, and analyzed an analytics pipeline demonstrating data processing, data quality checks, and the creation of analytics-ready tables and dashboards. Not only have you gained insights into the taxi trip data, but you’ve also likely learned how expensive a ride in the Big Apple can be if things go wrong — perhaps it’s time to consider the subway!&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;As you become more comfortable with ETL pipelines, you can expand this pipeline with more complex transformations, data streaming, and more comprehensive data quality checks.&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;
&lt;UL&gt;
&lt;LI style="font-weight: 400;" aria-level="1"&gt;&lt;SPAN&gt;To learn more about Databricks Jobs, see &lt;/SPAN&gt;&lt;A href="https://docs.databricks.com/en/workflows/index.html#what-is-jobs" target="_blank" rel="noopener"&gt;&lt;SPAN&gt;What is Databricks Jobs?&lt;/SPAN&gt;&lt;/A&gt;&lt;/LI&gt;
&lt;LI style="font-weight: 400;" aria-level="1"&gt;&lt;SPAN&gt;To learn more about Delta Lake, see &lt;/SPAN&gt;&lt;A href="https://docs.databricks.com/en/delta/index.html" target="_blank" rel="noopener"&gt;&lt;SPAN&gt;What is Delta Lake?&lt;/SPAN&gt;&lt;/A&gt;&lt;/LI&gt;
&lt;LI style="font-weight: 400;" aria-level="1"&gt;&lt;SPAN&gt;To learn more about data processing pipelines with Delta Live Tables, see &lt;/SPAN&gt;&lt;A href="https://docs.databricks.com/en/delta-live-tables/index.html" target="_blank" rel="noopener"&gt;&lt;SPAN&gt;What is Delta Live Tables?&lt;/SPAN&gt;&lt;/A&gt;&lt;/LI&gt;
&lt;/UL&gt;</description>
    <pubDate>Thu, 15 Aug 2024 18:09:35 GMT</pubDate>
    <dc:creator>DatabricksGuide</dc:creator>
    <dc:date>2024-08-15T18:09:35Z</dc:date>
    <item>
      <title>Getting Started with Databricks - Build a simple Lakehouse analytics pipeline</title>
      <link>https://community.databricks.com/t5/get-started-guides/getting-started-with-databricks-build-a-simple-lakehouse/ta-p/67404</link>
      <description>&lt;H1&gt;&lt;STRONG&gt;Getting started with Databricks - Build a simple Lakehouse analytics pipeline&lt;/STRONG&gt;&lt;/H1&gt;
&lt;P&gt;&lt;SPAN&gt;The demo example in this guide illustrates a lakehouse analytics pipeline using the well-known NYC taxi trip dataset. This public dataset is also available at Kaggle.&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;This guide provides a practical demonstration of how to structure a data pipeline using the medallion architecture, progressively refining and analyzing data as it moves through each layer. It also demonstrates the pipeline’s integration with Unity Catalog, showing how to set up data lineage and governance. Finally, it covers AI/BI dashboards for enhancing analytical decision-making and sharing insights with team members.&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;This is a beginner’s tutorial with hands-on instructions to execute in your own Databricks workspace. &lt;/SPAN&gt;&lt;A href="https://www.databricks.com/try-databricks#account" target="_blank" rel="noopener"&gt;&lt;SPAN&gt;You can request a free 14-day trial.&amp;nbsp;&lt;/SPAN&gt;&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;&lt;STRONG&gt;Understanding the medallion architecture&lt;/STRONG&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;The medallion architecture is a method for organizing and refining data in a lakehouse by moving it through three layers—Bronze (raw data), Silver (cleaned data), and Gold (final, ready-to-use data).&lt;/SPAN&gt;&lt;/P&gt;
&lt;P class="lia-align-center"&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="DatabricksGuide_0-1723742834161.png" style="width: 400px;"&gt;&lt;img src="https://community.databricks.com/t5/image/serverpage/image-id/10370i1686F6209E18FFFD/image-size/medium?v=v2&amp;amp;px=400" role="button" title="DatabricksGuide_0-1723742834161.png" alt="DatabricksGuide_0-1723742834161.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;H3&gt;&lt;STRONG&gt;Step 1: Create a notebook and add SQL pipeline code&lt;/STRONG&gt;&lt;/H3&gt;
&lt;OL&gt;
&lt;LI style="font-weight: 400;" aria-level="1"&gt;&lt;SPAN&gt;In your Databricks workspace, click "+New" in the left sidebar and select Notebook. Name the notebook “NYTaxi Pipeline SQL.”&lt;/SPAN&gt;&lt;/LI&gt;
&lt;LI style="font-weight: 400;" aria-level="1"&gt;&lt;SPAN&gt;Set the notebook’s default language to SQL next to its name. We want to code the pipeline in SQL for simplicity.&lt;/SPAN&gt;&lt;/LI&gt;
&lt;LI style="font-weight: 400;" aria-level="1"&gt;&lt;SPAN&gt;Copy and paste the following code into your new SQL notebook.&amp;nbsp;&lt;/SPAN&gt;&lt;/LI&gt;
&lt;/OL&gt;
&lt;H4&gt;&lt;STRONG&gt;&amp;nbsp;Bronze layer&lt;/STRONG&gt;&lt;/H4&gt;
&lt;P&gt;&lt;I&gt;&lt;SPAN&gt;Bronze Table: &lt;/SPAN&gt;&lt;/I&gt;&lt;I&gt;&lt;SPAN&gt;Raw data ingestion&lt;BR /&gt;&lt;/SPAN&gt;&lt;/I&gt;&lt;SPAN&gt;Here, raw taxi trip data is ingested, with a basic data quality check applied to ensure trip distances are positive.&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;LI-CODE lang="python"&gt;- Bronze layer: Raw data ingestion

CREATE OR REPLACE TABLE taxi_raw_records AS
SELECT *
FROM samples.nyctaxi.trips
WHERE trip_distance &amp;gt; 0.0;&lt;/LI-CODE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;STRONG&gt;-Silver layer&lt;/STRONG&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;The Silver layer creates two tables:&amp;nbsp;&lt;BR /&gt;&lt;/SPAN&gt;&lt;I&gt;&lt;SPAN&gt;Silver Table 1:&amp;nbsp; Flagged rides&lt;BR /&gt;&lt;/SPAN&gt;&lt;/I&gt;&lt;SPAN&gt;This table identifies potentially suspicious rides based on fare and distance criteria.&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;LI-CODE lang="python"&gt;-- Silver Table 1: Flagged rides

CREATE OR REPLACE TABLE flagged_rides AS
SELECT
  date_trunc("week", tpep_pickup_datetime) AS week,
  pickup_zip AS zip,
  fare_amount,
  trip_distance
FROM
  taxi_raw_records
WHERE ((pickup_zip = dropoff_zip AND fare_amount &amp;gt; 50) OR
       (trip_distance &amp;lt; 5 AND fare_amount &amp;gt; 50));&lt;/LI-CODE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;I&gt;&lt;SPAN&gt;Silver Table 2: Weekly statistics&lt;BR /&gt;&lt;/SPAN&gt;&lt;/I&gt;&lt;SPAN&gt;This silver table calculates weekly average fares and trip distances.&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;LI-CODE lang="python"&gt;- Silver layer 2: Weekly statistics

CREATE OR REPLACE TABLE weekly_stats AS
SELECT
  date_trunc("week", tpep_pickup_datetime) AS week,
  AVG(fare_amount) AS avg_amount,
  AVG(trip_distance) AS avg_distance
FROM
  taxi_raw_records
GROUP BY week
ORDER BY week ASC;&lt;/LI-CODE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;STRONG&gt;Gold layer&lt;BR /&gt;&lt;/STRONG&gt;&lt;EM&gt;Gold Table 1: Top N rides&lt;/EM&gt;&lt;BR /&gt;&lt;SPAN&gt;Here, these silver tables are integrated to provide a comprehensive view of the top three highest-fare rides.&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;LI-CODE lang="python"&gt;-- Gold layer: Top N rides to investigate

CREATE OR REPLACE TABLE top_n AS
SELECT
  ws.week,
  ROUND(ws.avg_amount, 2) AS avg_amount,
  ROUND(ws.avg_distance, 3) AS avg_distance,
  fr.fare_amount,
  fr.trip_distance,
  fr.zip
FROM
  flagged_rides fr
LEFT JOIN weekly_stats ws ON ws.week = fr.week
ORDER BY fr.fare_amount DESC
LIMIT 3;&lt;/LI-CODE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;H3&gt;&lt;STRONG&gt;Step 2: Schedule a notebook job&lt;/STRONG&gt;&lt;/H3&gt;
&lt;P&gt;&lt;SPAN&gt;To ensure that the Bronze, Silver, and Gold tables are regularly updated with fresh data, it’s recommended to schedule the notebook as a job to run periodically. This will keep the tables current with the latest information.&amp;nbsp;&lt;/SPAN&gt;&lt;SPAN&gt;To schedule a notebook job to run periodically:&lt;/SPAN&gt;&lt;/P&gt;
&lt;OL&gt;
&lt;LI style="font-weight: 400;" aria-level="1"&gt;&lt;SPAN&gt;In the notebook, click the &lt;/SPAN&gt;&lt;STRONG&gt;Schedule &lt;/STRONG&gt;&lt;SPAN&gt;button at the top right.&amp;nbsp;&lt;/SPAN&gt;&lt;/LI&gt;
&lt;LI style="font-weight: 400;" aria-level="1"&gt;&lt;SPAN&gt;In the Schedule dialog, optionally enter a name for the job. The default name is the name of the notebook.&lt;/SPAN&gt;&lt;/LI&gt;
&lt;LI style="font-weight: 400;" aria-level="1"&gt;&lt;SPAN&gt;Scheduled runs allow you to define a schedule for your job run. Adjust the frequency, time, and time zone for the job run.&amp;nbsp;&lt;/SPAN&gt;&lt;/LI&gt;
&lt;LI style="font-weight: 400;" aria-level="1"&gt;&lt;SPAN&gt;Leave everything else as is and click &lt;/SPAN&gt;&lt;STRONG&gt;Create&lt;/STRONG&gt;&lt;SPAN&gt;.&lt;/SPAN&gt;&lt;/LI&gt;
&lt;LI style="font-weight: 400;" aria-level="1"&gt;&lt;SPAN&gt;Once the schedule is successfully created, click &lt;/SPAN&gt;&lt;STRONG&gt;Run Now &lt;/STRONG&gt;&lt;SPAN&gt;to trigger a job run for the NYCTaxiSQL Pipeline.&lt;/SPAN&gt;&lt;/LI&gt;
&lt;/OL&gt;
&lt;H3&gt;&lt;STRONG&gt;Step 3: Discover data using Catalog Explorer&lt;/STRONG&gt;&lt;/H3&gt;
&lt;P&gt;&lt;SPAN&gt;Explore and manage your generated datasets through Unity Catalog using Catalog Explorer. Unity Catalog organizes data in a three-level namespace:&lt;/SPAN&gt;&lt;SPAN&gt; Catalog.Schema.Table.&lt;/SPAN&gt;&lt;SPAN&gt; Follow the steps below to examine the data produced by your pipeline and visualize its lineage. This allows you to inspect sample data, view table details, and explore the end-to-end data lineage of your pipeline objects.&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-center" image-alt="DatabricksGuide_1-1723742833943.png" style="width: 400px;"&gt;&lt;img src="https://community.databricks.com/t5/image/serverpage/image-id/10369iA5B60EF6A4DF52E9/image-size/medium?v=v2&amp;amp;px=400" role="button" title="DatabricksGuide_1-1723742833943.png" alt="DatabricksGuide_1-1723742833943.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;OL&gt;
&lt;LI style="font-weight: 400;" aria-level="1"&gt;&lt;SPAN&gt;Click &lt;/SPAN&gt;&lt;STRONG&gt;Catalog&lt;/STRONG&gt;&lt;SPAN&gt; in the sidebar to open the Catalog Explorer.&lt;/SPAN&gt;&lt;/LI&gt;
&lt;LI style="font-weight: 400;" aria-level="1"&gt;&lt;SPAN&gt;The newly created tables from our NYCTaxiSQLPipeline should be accessible by clicking the Recents top on the top of the page.&lt;/SPAN&gt;&lt;/LI&gt;
&lt;LI style="font-weight: 400;" aria-level="1"&gt;&lt;SPAN&gt;Click weekly_stats to load the table details.&lt;/SPAN&gt;&lt;/LI&gt;
&lt;LI style="font-weight: 400;" aria-level="1"&gt;&lt;SPAN&gt;Click &lt;/SPAN&gt;&lt;STRONG&gt;Lineage&lt;/STRONG&gt;&lt;SPAN&gt; and then &lt;/SPAN&gt;&lt;STRONG&gt;Lineage Graph&lt;/STRONG&gt;&lt;SPAN&gt; to view a graphical representation of all the upstream and downstream tables from weekly_stats.&amp;nbsp;&lt;/SPAN&gt;&lt;/LI&gt;
&lt;/OL&gt;
&lt;H3&gt;&lt;STRONG&gt;Step 4: Create a Dashboard&lt;/STRONG&gt;&lt;/H3&gt;
&lt;OL&gt;
&lt;LI style="font-weight: 400;" aria-level="1"&gt;&lt;SPAN&gt;Use the &lt;/SPAN&gt;&lt;STRONG&gt;Create&lt;/STRONG&gt;&lt;SPAN&gt; button on the right side to create a &lt;/SPAN&gt;&lt;STRONG&gt;Dashboard&lt;/STRONG&gt;&lt;SPAN&gt; from the weekly_stats table. This automatically creates a new dashboard for the weekly_stats table. Rename the dashboard on the top as NYCTaxiPipelineDash.&lt;/SPAN&gt;&lt;/LI&gt;
&lt;LI style="font-weight: 400;" aria-level="1"&gt;&lt;SPAN&gt;Start building out your dashboard by using the &lt;/SPAN&gt;&lt;STRONG&gt;Ask the Assistant&lt;/STRONG&gt;&lt;SPAN&gt; prompt at the top of the dashboard to create your first chart using AI. Click one of the auto-generated prompts to get started.&amp;nbsp;&lt;/SPAN&gt;&lt;/LI&gt;
&lt;LI style="font-weight: 400;" aria-level="1"&gt;&lt;SPAN&gt;Add more charts by using the “Add a Visualization” widget from the selector at the bottom and place the cursor on a space on the dashboard. Here are some additional prompts:&lt;/SPAN&gt;&lt;/LI&gt;
&lt;OL&gt;
&lt;LI style="font-weight: 400;" aria-level="2"&gt;&lt;I&gt;&lt;SPAN&gt;Show a scatter plot of the trip distance and average fare amount by day of the week.&lt;/SPAN&gt;&lt;/I&gt;&lt;/LI&gt;
&lt;LI style="font-weight: 400;" aria-level="2"&gt;&lt;I&gt;&lt;SPAN&gt;Visualize total trips across zip codes as a bar chart&lt;/SPAN&gt;&lt;/I&gt;&lt;/LI&gt;
&lt;/OL&gt;
&lt;LI style="font-weight: 400;" aria-level="1"&gt;&lt;SPAN&gt;Click &lt;/SPAN&gt;&lt;STRONG&gt;Accept &lt;/STRONG&gt;&lt;SPAN&gt;to save the AI-generated chart or use the widget on the right to regenerate the chart. Use the&lt;/SPAN&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="DatabricksGuide_2-1723742833913.png" style="width: 24px;"&gt;&lt;img src="https://community.databricks.com/t5/image/serverpage/image-id/10368i19F1AA0BD1A46FB5/image-dimensions/24x22?v=v2" width="24" height="22" role="button" title="DatabricksGuide_2-1723742833913.png" alt="DatabricksGuide_2-1723742833913.png" /&gt;&lt;/span&gt;&lt;SPAN&gt;button on the upper-right of each chart to provide a different prompt to update the chart.&lt;/SPAN&gt;&lt;/LI&gt;
&lt;LI style="font-weight: 400;" aria-level="1"&gt;&lt;SPAN&gt;Alternatively, use the chart builder on the right side to choose a chart type and then select values for the x-axis and y-axis.&lt;/SPAN&gt;&lt;/LI&gt;
&lt;/OL&gt;
&lt;H3&gt;&lt;STRONG&gt;Step 5: Publish and distribute your dashboard&lt;/STRONG&gt;&lt;/H3&gt;
&lt;P&gt;&lt;SPAN&gt;While you develop a dashboard, your progress is saved as a draft. To create a clean copy for easy consumption, publish your dashboard. After you publish a dashboard, the published version remains intact until you publish again, even if you make changes to the draft. You can make modifications and improvements to the draft version without affecting the published copy.&lt;/SPAN&gt;&lt;/P&gt;
&lt;OL&gt;
&lt;LI style="font-weight: 400;" aria-level="1"&gt;&lt;SPAN&gt;When you’re done adding charts to this dashboard, click &lt;/SPAN&gt;&lt;STRONG&gt;Publish&lt;/STRONG&gt;&lt;SPAN&gt; in the upper-right corner to create a clean copy of the current dashboard.&amp;nbsp;&lt;/SPAN&gt;&lt;/LI&gt;
&lt;LI style="font-weight: 400;" aria-level="1"&gt;&lt;SPAN&gt;Click &lt;/SPAN&gt;&lt;STRONG&gt;Publish.&lt;/STRONG&gt;&lt;SPAN&gt; Your dashboard is now ready to be shared with other team members.&lt;/SPAN&gt;&lt;/LI&gt;
&lt;/OL&gt;
&lt;P&gt;&lt;STRONG&gt;Add users to your Databricks Workspace&lt;/STRONG&gt;&lt;/P&gt;
&lt;OL&gt;
&lt;LI style="font-weight: 400;" aria-level="1"&gt;&lt;SPAN&gt;In the top bar of the Databricks workspace, click your username and then click Settings.&lt;/SPAN&gt;&lt;/LI&gt;
&lt;LI style="font-weight: 400;" aria-level="1"&gt;&lt;SPAN&gt;In the sidebar, click &lt;STRONG&gt;Identity and Access&lt;/STRONG&gt;.&lt;/SPAN&gt;&lt;/LI&gt;
&lt;LI style="font-weight: 400;" aria-level="1"&gt;&lt;SPAN&gt;Next to Users, click &lt;STRONG&gt;Manage&lt;/STRONG&gt;.&lt;/SPAN&gt;&lt;/LI&gt;
&lt;LI style="font-weight: 400;" aria-level="1"&gt;&lt;SPAN&gt;Click&lt;STRONG&gt; Add user&lt;/STRONG&gt;, and then click &lt;STRONG&gt;Add new&lt;/STRONG&gt;.&lt;/SPAN&gt;&lt;/LI&gt;
&lt;LI style="font-weight: 400;" aria-level="1"&gt;&lt;SPAN&gt;Enter the user’s email address, and then click &lt;STRONG&gt;Add&lt;/STRONG&gt;.&lt;/SPAN&gt;&lt;/LI&gt;
&lt;/OL&gt;
&lt;P&gt;&lt;SPAN&gt;Continue to add as many users to your account as you would like. New users receive an email prompting them to set up their account.&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;STRONG&gt;Share the dashboard with colleagues&lt;/STRONG&gt;&lt;/P&gt;
&lt;OL&gt;
&lt;LI style="font-weight: 400;" aria-level="1"&gt;&lt;SPAN&gt;To manage access to the dashboard, click &lt;/SPAN&gt;&lt;STRONG&gt;Share&lt;/STRONG&gt;&lt;SPAN&gt; at the top of the dashboard to open the permissions dialog.&amp;nbsp;&lt;/SPAN&gt;&lt;/LI&gt;
&lt;LI style="font-weight: 400;" aria-level="1"&gt;&lt;SPAN&gt;Enter the email address of the user you want to share the dashboard with and click "&lt;/SPAN&gt;&lt;STRONG&gt;Add&lt;/STRONG&gt;&lt;SPAN&gt;." They will receive an email notification and will be able to access the dashboard in Databricks.&lt;/SPAN&gt;&lt;/LI&gt;
&lt;LI style="font-weight: 400;" aria-level="1"&gt;&lt;SPAN&gt;[Optional] To share the dashboard with all colleagues, add the “All Users” group to the dashboard’s access list with “Can View” or “Can Run” permissions. You can also copy the dashboard’s URL to your clipboard using the “Copy link” button and send it directly to your colleagues. &lt;span class="lia-unicode-emoji" title=":party_popper:"&gt;🎉&lt;/span&gt;&lt;/SPAN&gt;&lt;/LI&gt;
&lt;/OL&gt;
&lt;H2&gt;&lt;STRONG&gt;Congratulations!&lt;/STRONG&gt;&lt;/H2&gt;
&lt;P&gt;&lt;SPAN&gt;You’ve now created, run, and analyzed an analytics pipeline demonstrating data processing, data quality checks, and the creation of analytics-ready tables and dashboards. Not only have you gained insights into the taxi trip data, but you’ve also likely learned how expensive a ride in the Big Apple can be if things go wrong — perhaps it’s time to consider the subway!&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;As you become more comfortable with ETL pipelines, you can expand this pipeline with more complex transformations, data streaming, and more comprehensive data quality checks.&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;
&lt;UL&gt;
&lt;LI style="font-weight: 400;" aria-level="1"&gt;&lt;SPAN&gt;To learn more about Databricks Jobs, see &lt;/SPAN&gt;&lt;A href="https://docs.databricks.com/en/workflows/index.html#what-is-jobs" target="_blank" rel="noopener"&gt;&lt;SPAN&gt;What is Databricks Jobs?&lt;/SPAN&gt;&lt;/A&gt;&lt;/LI&gt;
&lt;LI style="font-weight: 400;" aria-level="1"&gt;&lt;SPAN&gt;To learn more about Delta Lake, see &lt;/SPAN&gt;&lt;A href="https://docs.databricks.com/en/delta/index.html" target="_blank" rel="noopener"&gt;&lt;SPAN&gt;What is Delta Lake?&lt;/SPAN&gt;&lt;/A&gt;&lt;/LI&gt;
&lt;LI style="font-weight: 400;" aria-level="1"&gt;&lt;SPAN&gt;To learn more about data processing pipelines with Delta Live Tables, see &lt;/SPAN&gt;&lt;A href="https://docs.databricks.com/en/delta-live-tables/index.html" target="_blank" rel="noopener"&gt;&lt;SPAN&gt;What is Delta Live Tables?&lt;/SPAN&gt;&lt;/A&gt;&lt;/LI&gt;
&lt;/UL&gt;</description>
      <pubDate>Thu, 15 Aug 2024 18:09:35 GMT</pubDate>
      <guid>https://community.databricks.com/t5/get-started-guides/getting-started-with-databricks-build-a-simple-lakehouse/ta-p/67404</guid>
      <dc:creator>DatabricksGuide</dc:creator>
      <dc:date>2024-08-15T18:09:35Z</dc:date>
    </item>
    <item>
      <title>Re: Getting Started with Databricks - Build a simple Lakehouse analytics pipeline</title>
      <link>https://community.databricks.com/t5/get-started-guides/getting-started-with-databricks-build-a-simple-lakehouse/tac-p/89855#M11</link>
      <description>&lt;P&gt;"Excellent exercise! The most challenging part was setting up the environment using the Azure free account. However, now that I have access to all the functionalities, I am well-equipped to continue training and building my skills with Databricks. Looking forward to diving deeper into the platform!"&lt;/P&gt;</description>
      <pubDate>Fri, 13 Sep 2024 16:16:41 GMT</pubDate>
      <guid>https://community.databricks.com/t5/get-started-guides/getting-started-with-databricks-build-a-simple-lakehouse/tac-p/89855#M11</guid>
      <dc:creator>Ali_B</dc:creator>
      <dc:date>2024-09-13T16:16:41Z</dc:date>
    </item>
    <item>
      <title>Re: Getting Started with Databricks - Build a simple Lakehouse analytics pipeline</title>
      <link>https://community.databricks.com/t5/get-started-guides/getting-started-with-databricks-build-a-simple-lakehouse/tac-p/94991#M12</link>
      <description>&lt;P&gt;Really well explained with Demo&lt;/P&gt;</description>
      <pubDate>Sat, 19 Oct 2024 08:38:07 GMT</pubDate>
      <guid>https://community.databricks.com/t5/get-started-guides/getting-started-with-databricks-build-a-simple-lakehouse/tac-p/94991#M12</guid>
      <dc:creator>bhanu_gautam</dc:creator>
      <dc:date>2024-10-19T08:38:07Z</dc:date>
    </item>
    <item>
      <title>Re: Getting Started with Databricks - Build a simple Lakehouse analytics pipeline</title>
      <link>https://community.databricks.com/t5/get-started-guides/getting-started-with-databricks-build-a-simple-lakehouse/tac-p/136452#M27</link>
      <description>&lt;P&gt;Very clear and practical! Truly enjoyed it&lt;/P&gt;</description>
      <pubDate>Tue, 28 Oct 2025 18:01:53 GMT</pubDate>
      <guid>https://community.databricks.com/t5/get-started-guides/getting-started-with-databricks-build-a-simple-lakehouse/tac-p/136452#M27</guid>
      <dc:creator>DanielGranja</dc:creator>
      <dc:date>2025-10-28T18:01:53Z</dc:date>
    </item>
    <item>
      <title>Re: Getting Started with Databricks - Build a simple Lakehouse analytics pipeline</title>
      <link>https://community.databricks.com/t5/get-started-guides/getting-started-with-databricks-build-a-simple-lakehouse/tac-p/139416#M28</link>
      <description>&lt;P&gt;sharp&lt;/P&gt;</description>
      <pubDate>Mon, 17 Nov 2025 17:47:15 GMT</pubDate>
      <guid>https://community.databricks.com/t5/get-started-guides/getting-started-with-databricks-build-a-simple-lakehouse/tac-p/139416#M28</guid>
      <dc:creator>bevben</dc:creator>
      <dc:date>2025-11-17T17:47:15Z</dc:date>
    </item>
    <item>
      <title>Re: Getting Started with Databricks - Build a simple Lakehouse analytics pipeline</title>
      <link>https://community.databricks.com/t5/get-started-guides/getting-started-with-databricks-build-a-simple-lakehouse/tac-p/139492#M29</link>
      <description>&lt;P&gt;Well explained.&lt;/P&gt;</description>
      <pubDate>Tue, 18 Nov 2025 09:30:41 GMT</pubDate>
      <guid>https://community.databricks.com/t5/get-started-guides/getting-started-with-databricks-build-a-simple-lakehouse/tac-p/139492#M29</guid>
      <dc:creator>Raman_Unifeye</dc:creator>
      <dc:date>2025-11-18T09:30:41Z</dc:date>
    </item>
    <item>
      <title>Re: Getting Started with Databricks - Build a simple Lakehouse analytics pipeline</title>
      <link>https://community.databricks.com/t5/get-started-guides/getting-started-with-databricks-build-a-simple-lakehouse/tac-p/143676#M31</link>
      <description>&lt;P&gt;Excellent!!&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 12 Jan 2026 06:53:24 GMT</pubDate>
      <guid>https://community.databricks.com/t5/get-started-guides/getting-started-with-databricks-build-a-simple-lakehouse/tac-p/143676#M31</guid>
      <dc:creator>YuvrajBJadhav</dc:creator>
      <dc:date>2026-01-12T06:53:24Z</dc:date>
    </item>
    <item>
      <title>Re: Getting Started with Databricks - Build a simple Lakehouse analytics pipeline</title>
      <link>https://community.databricks.com/t5/get-started-guides/getting-started-with-databricks-build-a-simple-lakehouse/tac-p/151858#M32</link>
      <description>&lt;P&gt;Really helpful course thank you&lt;/P&gt;</description>
      <pubDate>Tue, 24 Mar 2026 15:05:55 GMT</pubDate>
      <guid>https://community.databricks.com/t5/get-started-guides/getting-started-with-databricks-build-a-simple-lakehouse/tac-p/151858#M32</guid>
      <dc:creator>ikim</dc:creator>
      <dc:date>2026-03-24T15:05:55Z</dc:date>
    </item>
    <item>
      <title>Re: Getting Started with Databricks - Build a simple Lakehouse analytics pipeline</title>
      <link>https://community.databricks.com/t5/get-started-guides/getting-started-with-databricks-build-a-simple-lakehouse/tac-p/152719#M33</link>
      <description>&lt;P&gt;Simple, Effective and covers all basic findamentals for Data Analysis Exploration.&lt;/P&gt;</description>
      <pubDate>Tue, 31 Mar 2026 12:55:17 GMT</pubDate>
      <guid>https://community.databricks.com/t5/get-started-guides/getting-started-with-databricks-build-a-simple-lakehouse/tac-p/152719#M33</guid>
      <dc:creator>Naveed</dc:creator>
      <dc:date>2026-03-31T12:55:17Z</dc:date>
    </item>
  </channel>
</rss>

