WE have implemented the Synapse with delta lake mechanism till silver i want to implement gold layer now dont understand how to do it we are using Azure server less sql
how the gold layer model and how i can automate the process
WE have implemented the Synapse with delta lake mechanism till silver i want to implement gold layer now dont understand how to do it we are using Azure server less sql
how the gold layer model and how i can automate the process
Medallion Architecture (or Milti hop architecture) in Data Lakehouse recommends multi-layered approach to building a single source of truth for enterprise data products. Below are the 3 layers describing the quality of the data in each of these layers.
BRONZE layer contains raw data. This layer contains just raw data located on csv subfolder.
SILVER layer contains refined data (Example: adding good column names, data types, etc.). This holds the cleansed and transformed data in Delta format.
GOLD layer contains business-level aggregates. Gold layer contains a model in star schema, in Facts and Dimensions.
Since you have the Silver layer already implemented, below are the next steps you can think of implementing using Azure Synapse Analytics notebooks for your Gold layer. Create a Synapse notebook and implement Steps 1 to 4.
Step 1: Create a dataframe on the silver table
Step 2: Keep only the related columns
Step 3: create a temporary view on the dedublicated data set
Step 4: Create your dimension and facts tables
Step 5: Create a Synapse pipeline and import the notebook.
Step 7: Run your pipeline to load the data to Gold layer Dimension and Fact tables.
Step 8: Validate the data load in Gold layer
Hope the below steps will help to implement your Gold layer in Synapse Delta lake.