forked from MicrosoftDocs/architecture-center
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add data lake topic to Data Guide (MicrosoftDocs#435)
* Create Data Lake topic
- Loading branch information
Mike Wasson
authored
Feb 27, 2018
1 parent
29fbcb1
commit 023d88e
Showing
3 changed files
with
38 additions
and
13 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,36 @@ | ||
# Data lakes | ||
|
||
A data lake is a storage repository that holds a large amount of data in its native, raw format. Data lake stores are optimized for scaling to terabytes and petabytes of data. The data typically comes from multiple heterogeneous sources, and may be structured, semi-structured, or unstructured. The idea with a data lake is to store everything in its original, untransformed state. This approach differs from a traditional [data warehouse](../scenarios/data-warehousing.md), which transforms and processes the data at the time of ingestion. | ||
|
||
Advantages of a data lake: | ||
|
||
- Data is never thrown away, because the data is stored in its raw format. This is especially useful in a big data environment, when you may not know in advance what insights are available from the data. | ||
- Users can explore the data and create their own queries. | ||
- May be faster than traditional ETL tools. | ||
- More flexible than a data warehouse, because it can store unstructured and semi-structured data. | ||
|
||
A complete data lake solution consists of both storage and processing. Data lake storage is designed for fault-tolerance, infinite scalability, and high-throughput ingestion of data with varying shapes and sizes. Data lake processing involves one or more processing engines built with these goals in mind, and can operate on data stored in a data lake at scale. | ||
|
||
## When to use a data lake | ||
|
||
Typical uses for a data lake include [data exploration](../scenarios/interactive-data-exploration.md), data analytics, and machine learning. | ||
|
||
A data lake can also act as the data source for a data warehouse. With this approach, the raw data is ingested into the data lake and then transformed into a structured queryable format. Typically this transformation uses an [ELT](../scenarios/etl.md#extract-load-and-transform-elt) (extract-load-transform) pipeline, where the data is ingested and transformed in place. Source data that is already relational may go directly into the data warehouse, using an ETL process, skipping the data lake. | ||
|
||
Data lake stores are often used in event streaming or IoT scenarios, because they can persist large amounts of relational and nonrelational data without transformation or schema definition. They are built to handle high volumes of small writes at low latency, and are optimized for massive throughput. | ||
|
||
## Challenges | ||
|
||
- Lack of a schema or descriptive metadata can make the data hard to consume or query. | ||
- Lack of semantic consistency across the data can make it challenging to perform analysis on the data, unless users are highly skilled at data analytics. | ||
- It can be hard to guarantee the quality of the data going into the data lake. | ||
- Without proper governance, access control and privacy issues can be problems. What information is going into the data lake, who can access that data, and for what uses? | ||
- A data lake may not be the best way to integrate data that is already relational. | ||
- By itself, a data lake does not provide integrated or holistic views across the organization. | ||
- A data lake may become a dumping ground for data that is never actually analyzed or mined for insights. | ||
|
||
## Relevant Azure services | ||
|
||
- [Data Lake Store](/azure/data-lake-store/) is a hyper-scale, Hadoop-compatible repository. | ||
- [Data Lake Analytics](/azure/data-lake-analytics/) is an on-demand analytics job service to simplify big data analytics. | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters