Dl/Models: Difference between revisions

From stonehomewiki
Jump to navigationJump to search
Tag: Reverted
No edit summary
Tag: Manual revert
 
(One intermediate revision by the same user not shown)
Line 6: Line 6:
</div>
</div>
<p></p>
<p></p>
= Overview =
{| class="wikitable grid mono section"
|-
! Diagram
! Description
|-
|
{{#mermaid:
graph TD
    BornzeTier[Bronze Tier]
    SilverTier[Silver Tier]
    GoldTier[Gold Tier]
    PlatniumTier[Platnium Tier]
    ExternalData[External Data]
    ExternalData --ingestion--> BornzeTier --ingestion--> SilverTier --ETL--> GoldTier --ETL--> PlatniumTier
}}
|
<big><b>Bronze Tier</b></big>:<br /><br />
<b>The purpose for bronze tier is to store data downloaded from external world into data lake so we can use all sort of tools inside data lake to further process it</b>
* raw data
* no uniformed format, could be csv, JSON, AVRO, parquet, binary, anything
* could even be unstructured
* no data quality assurance
<hr /><br />
<big><b>Silver Tier</b></big>:<br /><br />
<b>The purpose for bronze tier is to allow data ingestion application to sanitize data, verify the quality of the data</b>
* Data quality is assurred
* Data may not be normalized. One table may use UTC for a timestamp column while aother table may use timestamp without timezone. No stadnardlization for column name.
* Data format is uniformed, usually it is stored as a format that is best fits the further ETL process, for example parquet.
|}


= Models =
= Models =

Latest revision as of 03:15, 25 November 2025