SlideShare a Scribd company logo
enable
people
We build
technology
solutions that
and verticals
www.confiz.com
Introduction to
Azure Data Lake Analytics
Presenter: Waqas Idrees
Principal Software Engineer
https://www.linkedin.com/in/mdwaqas/
Agenda
1. What is Big Data?
2. Azure Data Lake History / Origin
3. Azure Data Lake Overview
o Azure Data Lake Store
o Azure Data Lake Analytics
4. Azure Data Factory
5. Azure Data Lake Analytics (U-SQL)
6. Q & A
There’s data, and then there’s Big data.
So, what’s the difference?
Presenter: Waqas Idrees
What is Big Data?
• Big Data = All Data
• Big data is the collection and analysis
of information from various sources.
What is Big Data?
• Big Data sets can include
o Structured
o Semi Structured
o Unstructured
What is Big Data? 3Vs
Big data is characterized by the three Vs
1. An extreme volume of data.
2. A broad variety of types of data.
3. The velocity at which the data need
needs to processed and analyzed.
Who Uses Big Data?
Companies considering big data as an integral part of their
strategy because
• It gives businesses the power to pinpoint the cause of their
problems.
• Customers’ buying habits.
Who Uses Big Data?
• They can optimize offerings
• They can reduce cost and time
It helps them to make sound decisions
Azure Data Lake
Presenter: Waqas Idrees
Azure Data Lake Origin
Bing needed to . . .
Understand user behaviors
And do it . . .
At massive scale
With agility and speed
So they built
Cosmos
Azure Data Lake Overview
Azure Data Lake is a scalable data storage
and analytics service.
Azure Data Lake Overview
It was released on Novembers 16th, 2016
Azure Data Lake Overview
Feature of Azure Data Lake
• The ability to store and analyze data of any kind and
size.
• Multiple access methods including U-SQL, Spark,
Hive, and Storm.
• Dynamic scaling to match your business priorities.
• Enterprise-grade security with Azure Active Directory.
Azure Data Lake Store
Presenter: Waqas Idrees
Azure Data Lake Store
• Users can store structured, semi-
structured or unstructured data.
Azure Data Lake Store
• A single Azure Data Lake Store account can
store trillions of files.
• A single file can be greater than a petabyte
in size.
Populating the Data Lake
Azure Data Factory
Presenter: Waqas Idrees
Azure Data Factory
Azure Data Factory
Azure Data Lake and Azure Data Lake Analytics
Azure Data Lake Analytics
Presenter: Waqas Idrees
Azure Data Lake Analytics
• On-demand job service
• Deploy on Azure and schedule using
Azure Data Factory
• Affordable and cost effective (Pay as
you use)
U-SQL
• Familiar syntax to millions of SQL and .Net
Developers
• Unifies declarative nature of SQL with the
imperative power of C#
• Unifies structured, semi structured and
unstructured data.
• Distributed Query Support over all data.
U-SQL
A new language for Big Data
U-SQL Language Overview
U-SQL Fundamentals
• All the familiar SQL Clauses
SELECT | FROM | WHERE | GROUP BY | OVER
• Operate on Structure and Unstructured Data
.NET Integration and Extensibility
• U-SQL Expressions are full C# expressions
• Reuse .NET code in other assemblies
• Use C# to define your own
Types | Functions | Aggregations | IO
ADLA Executions
U-SQL Cloud Execution
• The data read or written by the script will also be in Azure -
typically in an Azure Data Lake Store account
• You pay for any compute and storage used by the script.
ADLA Executions
U-SQL Local Execution
• The data read and written by this script will be on you own
machine.
• There is no additional cost
System Requirements
• x64 CPU
• Minimum of 16 GB RAM
• Windows 10 is recommended
• Visual Studio 2015 or +
• Azure Data Lake Tools for Visual Studio
First U-SQL Script
• Create new Azure Data Lake > U-SQL Project.
• An empty U-SQL script and its code behind file will be there called "Script.usql"
First U-SQL Script
@searchlog =
EXTRACT UserId int,
Start DateTime,
Region string,
Query string,
Duration int?,
Urls string,
ClickedUrls string
FROM "/Samples/Data/SearchLog.tsv"
USING Extractors.Tsv();
OUTPUT @searchlog
TO "/output/SearchLog-first-u-sql.csv"
USING Outputters.Csv();
Row set
Apply schema on
read
File Path
Write out
Easy delimited
text handling
ADLA Local Account Configurations
Location of inputs and Outputs
Azure Data Lake and Azure Data Lake Analytics
Job Details
Job Properties
Job Life Cycle
When does a job get Queued?
Local Cause
• Queue is already at max concurrency
Cloud Clause
• Shortage of Azure Data Lake Analytics Units
(ADLAUs)
• Queue is already at max concurrency
Azure Data Lake
Account Configurations
Presenter: Waqas Idrees
ADLA Cloud Account Configurations
• Maximum number of ADLA accounts per subscription per region: 5
• Maximum number of concurrent U-SQL jobs per account: 20
• Maximum number of Analytics Units (AUs) per account: 32
• Maximum number of Analytics Units (AUs) per job: 32
What is an Azure Data Lake Analytics Unit?
An Azure Data Lake Analytics Unit (AU) is a unit of compute resources with
Azure Data Lake.
AU is the equivalent of 2 CPU cores and 6 GB of RAM
How AUs are used during U-SQL Query Execution?
When we submit a U-SQL job, e specify three things
1. U-SQL Script
2. Input and Output Files
3. Reserved AUs
How AUs are used during U-SQL Query Execution?
U-SQL Compiler and Optimizer Vertex/Vertices
Each Task in a Plan is called Vertex.
Plan
How AUs are used during U-SQL Query Execution?
• We need an AU to run a Vertex.
• When the vertex is finished the AU will be assigned to another
vertex.
How AUs are used during U-SQL Query Execution?
Job Details
Job Properties
What is an AU Second?
An AU Second is the unit used to measure the compute
resources used for a job.
What is an AU Second?
• 1 AU for a job that executes for 1 second = 1 AU Second.
• 1 AU for a job that executes for 1 minute (60 seconds) = 60 AU Seconds.
• 2 AUs for a job that executes for 100 seconds = 200 AU Seconds.
• 10s AUs for a job that executes for 5 minutes (300 seconds) = 3000 AU
Seconds.
Pricing Details
USAGE PRICE
Analytics Unit $2/hour
Pay-as-You-Go
Pricing Details
INCLUDED ANALYTICS UNIT HOURS PRICE/MONTH SAVINGS OVER PAY-AS-YOU-GO
100 $100 50%
500 $450 55%
1,000 $800 60%
5,000 $3,600 64%
10,000 $6,500 68%
50,000 $29,000 71%
100,000 $52,000 74%
> 100,000 Contact Us
Monthly commitment packages
Monthly commitment packages provide you with a significant discount (up to 74%) compared to Pay-as-You-Go pricing.
What can I do with Azure Data Lake Analytics?
• Prepping large amounts of data for insertion into a Data Warehouse
• Processing scraped web data for science and analysis
• Using image processing intelligence to quickly process unstructured
image data
• Replacing long-running monthly batch processing with shorter running
distributed processes
What makes it different?
• Only one language to learn
• Only offered as a platform service
• Pricing per job; not per hour
ADLA on Azure Portal
Presenter: Waqas Idrees
Refrences
Big Data
https://www.infoworld.com/article/3220044/big-data/what-is-big-data-everything-you-need-to-know.html
https://dzone.com/articles/a-beginners-guide-to-big-data
Data Lake
https://dzone.com/articles/introduction-to-azure-data-lake
Data Lake Analytics
https://blogs.msdn.microsoft.com/azuredatalake/2016/10/12/understanding-adl-analytics-unit/
https://docs.microsoft.com/en-us/azure/data-lake-analytics/data-lake-analytics-quota-limits
https://social.msdn.microsoft.com/Forums/azure/en-US/ec10b28d-b824-4aa8-b2dc-5b7d9de3056f/azure-batch-vs-hdinsightdata-
vs-lake-analytics?forum=azurebatch
https://www.blue-granite.com/blog/azure-data-lake-analytics-holds-a-unique-spot-in-the-modern-data-architecture
Question and Answer
Presenter: Waqas Idrees

More Related Content

What's hot (20)

PPTX
Data Analytics Meetup: Introduction to Azure Data Lake Storage
CCG
 
PDF
Azure Data Factory v2
Sergio Zenatti Filho
 
PPTX
Modern data warehouse
Rakesh Jayaram
 
PPTX
Azure Data Factory
HARIHARAN R
 
PPTX
Azure Lowlands: An intro to Azure Data Lake
Rick van den Bosch
 
PPTX
Introduction to Azure Databricks
James Serra
 
PDF
Dipping Your Toes: Azure Data Lake for DBAs
Bob Pusateri
 
PDF
Azure Databricks—Apache Spark as a Service with Sascha Dittmann
Databricks
 
PPTX
Streaming Real-time Data to Azure Data Lake Storage Gen 2
Carole Gunst
 
PDF
Introduction to Azure Data Lake
Antonios Chatzipavlis
 
PDF
201905 Azure Databricks for Machine Learning
Mark Tabladillo
 
PPTX
Integration Monday - Analysing StackExchange data with Azure Data Lake
Tom Kerkhove
 
PDF
Data Lakes with Azure Databricks
Data Con LA
 
PPTX
Develop scalable analytical solutions with Azure Data Factory & Azure SQL Dat...
Microsoft Tech Community
 
PPTX
Big Data and Data Warehousing Together with Azure Synapse Analytics (SQLBits ...
Michael Rys
 
PDF
Azure Data Factory V2; The Data Flows
Thomas Sykes
 
PPTX
Azure Data Lake Analytics Deep Dive
Ilyas F ☁☁☁
 
PPTX
Analyzing StackExchange data with Azure Data Lake
BizTalk360
 
PPTX
Azure Data Lake Intro (SQLBits 2016)
Michael Rys
 
PPTX
Microsoft cloud big data strategy
James Serra
 
Data Analytics Meetup: Introduction to Azure Data Lake Storage
CCG
 
Azure Data Factory v2
Sergio Zenatti Filho
 
Modern data warehouse
Rakesh Jayaram
 
Azure Data Factory
HARIHARAN R
 
Azure Lowlands: An intro to Azure Data Lake
Rick van den Bosch
 
Introduction to Azure Databricks
James Serra
 
Dipping Your Toes: Azure Data Lake for DBAs
Bob Pusateri
 
Azure Databricks—Apache Spark as a Service with Sascha Dittmann
Databricks
 
Streaming Real-time Data to Azure Data Lake Storage Gen 2
Carole Gunst
 
Introduction to Azure Data Lake
Antonios Chatzipavlis
 
201905 Azure Databricks for Machine Learning
Mark Tabladillo
 
Integration Monday - Analysing StackExchange data with Azure Data Lake
Tom Kerkhove
 
Data Lakes with Azure Databricks
Data Con LA
 
Develop scalable analytical solutions with Azure Data Factory & Azure SQL Dat...
Microsoft Tech Community
 
Big Data and Data Warehousing Together with Azure Synapse Analytics (SQLBits ...
Michael Rys
 
Azure Data Factory V2; The Data Flows
Thomas Sykes
 
Azure Data Lake Analytics Deep Dive
Ilyas F ☁☁☁
 
Analyzing StackExchange data with Azure Data Lake
BizTalk360
 
Azure Data Lake Intro (SQLBits 2016)
Michael Rys
 
Microsoft cloud big data strategy
James Serra
 

Similar to Azure Data Lake and Azure Data Lake Analytics (20)

PDF
Talavant Data Lake Analytics
Sean Forgatch
 
PPTX
Analytics in the Cloud
Ross McNeely
 
PDF
1 Introduction to Microsoft data platform analytics for release
Jen Stirrup
 
PPTX
Azure satpn19 time series analytics with azure adx
Riccardo Zamana
 
PDF
Azure Data Engineering.pdf
akhilamadupativibhin
 
PPTX
Azure PaaS (WebApp & SQL Database) workshop solution
Gelis Wu
 
PPTX
CC -Unit4.pptx
Revathiparamanathan
 
PPTX
Microsoft Azure News - Dec 2016
Daniel Toomey
 
PPTX
Scalable relational database with SQL Azure
Shy Engelberg
 
PPTX
Your-Complete-Guide-to-Azure-Data-Engineering (1).pptx
giridharkbkbusiness
 
PDF
Adf and ala design c sharp corner toronto chapter feb 2019 meetup nik shahriar
Nilesh Shah
 
PPTX
AZURE Data Related Services
Ruslan Drahomeretskyy
 
PPTX
Modern ETL: Azure Data Factory, Data Lake, and SQL Database
Eric Bragas
 
PDF
Azure Data Engineering Course in Hyderabad
nagendrastoitech
 
PPTX
Azure Data Engineering course in hyderabad.pptx
shaikmadarbi3zen
 
PPTX
Azure Data Engineering Course in Hyderabad
sowmyavibhin
 
PPTX
"Azure Data Engineering Course in Hyderabad "
madhupriya3zen
 
PDF
Azure Data Engineer Interview Questions By ScholarHat
Scholarhat
 
PPTX
ADL/U-SQL Introduction (SQLBits 2016)
Michael Rys
 
PDF
KoprowskiT_SQLRelay2014#5_Newcastle_FromPlanToBackupToCloud
Tobias Koprowski
 
Talavant Data Lake Analytics
Sean Forgatch
 
Analytics in the Cloud
Ross McNeely
 
1 Introduction to Microsoft data platform analytics for release
Jen Stirrup
 
Azure satpn19 time series analytics with azure adx
Riccardo Zamana
 
Azure Data Engineering.pdf
akhilamadupativibhin
 
Azure PaaS (WebApp & SQL Database) workshop solution
Gelis Wu
 
CC -Unit4.pptx
Revathiparamanathan
 
Microsoft Azure News - Dec 2016
Daniel Toomey
 
Scalable relational database with SQL Azure
Shy Engelberg
 
Your-Complete-Guide-to-Azure-Data-Engineering (1).pptx
giridharkbkbusiness
 
Adf and ala design c sharp corner toronto chapter feb 2019 meetup nik shahriar
Nilesh Shah
 
AZURE Data Related Services
Ruslan Drahomeretskyy
 
Modern ETL: Azure Data Factory, Data Lake, and SQL Database
Eric Bragas
 
Azure Data Engineering Course in Hyderabad
nagendrastoitech
 
Azure Data Engineering course in hyderabad.pptx
shaikmadarbi3zen
 
Azure Data Engineering Course in Hyderabad
sowmyavibhin
 
"Azure Data Engineering Course in Hyderabad "
madhupriya3zen
 
Azure Data Engineer Interview Questions By ScholarHat
Scholarhat
 
ADL/U-SQL Introduction (SQLBits 2016)
Michael Rys
 
KoprowskiT_SQLRelay2014#5_Newcastle_FromPlanToBackupToCloud
Tobias Koprowski
 
Ad

Recently uploaded (20)

PDF
Top Agile Project Management Tools for Teams in 2025
Orangescrum
 
PPTX
In From the Cold: Open Source as Part of Mainstream Software Asset Management
Shane Coughlan
 
PDF
4K Video Downloader Plus Pro Crack for MacOS New Download 2025
bashirkhan333g
 
PDF
SAP Firmaya İade ABAB Kodları - ABAB ile yazılmıl hazır kod örneği
Salih Küçük
 
PPTX
Milwaukee Marketo User Group - Summer Road Trip: Mapping and Personalizing Yo...
bbedford2
 
PDF
Generic or Specific? Making sensible software design decisions
Bert Jan Schrijver
 
PPTX
Home Care Tools: Benefits, features and more
Third Rock Techkno
 
PPTX
Finding Your License Details in IBM SPSS Statistics Version 31.pptx
Version 1 Analytics
 
PDF
Download Canva Pro 2025 PC Crack Full Latest Version
bashirkhan333g
 
PPTX
Change Common Properties in IBM SPSS Statistics Version 31.pptx
Version 1 Analytics
 
PPTX
Transforming Mining & Engineering Operations with Odoo ERP | Streamline Proje...
SatishKumar2651
 
PPTX
Hardware(Central Processing Unit ) CU and ALU
RizwanaKalsoom2
 
PDF
Alexander Marshalov - How to use AI Assistants with your Monitoring system Q2...
VictoriaMetrics
 
PDF
MiniTool Partition Wizard 12.8 Crack License Key LATEST
hashhshs786
 
PDF
Driver Easy Pro 6.1.1 Crack Licensce key 2025 FREE
utfefguu
 
PDF
HiHelloHR – Simplify HR Operations for Modern Workplaces
HiHelloHR
 
PDF
Empower Your Tech Vision- Why Businesses Prefer to Hire Remote Developers fro...
logixshapers59
 
PDF
MiniTool Partition Wizard Free Crack + Full Free Download 2025
bashirkhan333g
 
PDF
How to Hire AI Developers_ Step-by-Step Guide in 2025.pdf
DianApps Technologies
 
PDF
The 5 Reasons for IT Maintenance - Arna Softech
Arna Softech
 
Top Agile Project Management Tools for Teams in 2025
Orangescrum
 
In From the Cold: Open Source as Part of Mainstream Software Asset Management
Shane Coughlan
 
4K Video Downloader Plus Pro Crack for MacOS New Download 2025
bashirkhan333g
 
SAP Firmaya İade ABAB Kodları - ABAB ile yazılmıl hazır kod örneği
Salih Küçük
 
Milwaukee Marketo User Group - Summer Road Trip: Mapping and Personalizing Yo...
bbedford2
 
Generic or Specific? Making sensible software design decisions
Bert Jan Schrijver
 
Home Care Tools: Benefits, features and more
Third Rock Techkno
 
Finding Your License Details in IBM SPSS Statistics Version 31.pptx
Version 1 Analytics
 
Download Canva Pro 2025 PC Crack Full Latest Version
bashirkhan333g
 
Change Common Properties in IBM SPSS Statistics Version 31.pptx
Version 1 Analytics
 
Transforming Mining & Engineering Operations with Odoo ERP | Streamline Proje...
SatishKumar2651
 
Hardware(Central Processing Unit ) CU and ALU
RizwanaKalsoom2
 
Alexander Marshalov - How to use AI Assistants with your Monitoring system Q2...
VictoriaMetrics
 
MiniTool Partition Wizard 12.8 Crack License Key LATEST
hashhshs786
 
Driver Easy Pro 6.1.1 Crack Licensce key 2025 FREE
utfefguu
 
HiHelloHR – Simplify HR Operations for Modern Workplaces
HiHelloHR
 
Empower Your Tech Vision- Why Businesses Prefer to Hire Remote Developers fro...
logixshapers59
 
MiniTool Partition Wizard Free Crack + Full Free Download 2025
bashirkhan333g
 
How to Hire AI Developers_ Step-by-Step Guide in 2025.pdf
DianApps Technologies
 
The 5 Reasons for IT Maintenance - Arna Softech
Arna Softech
 
Ad

Azure Data Lake and Azure Data Lake Analytics

  • 2. Introduction to Azure Data Lake Analytics Presenter: Waqas Idrees Principal Software Engineer https://www.linkedin.com/in/mdwaqas/
  • 3. Agenda 1. What is Big Data? 2. Azure Data Lake History / Origin 3. Azure Data Lake Overview o Azure Data Lake Store o Azure Data Lake Analytics 4. Azure Data Factory 5. Azure Data Lake Analytics (U-SQL) 6. Q & A
  • 4. There’s data, and then there’s Big data. So, what’s the difference? Presenter: Waqas Idrees
  • 5. What is Big Data? • Big Data = All Data • Big data is the collection and analysis of information from various sources.
  • 6. What is Big Data? • Big Data sets can include o Structured o Semi Structured o Unstructured
  • 7. What is Big Data? 3Vs Big data is characterized by the three Vs 1. An extreme volume of data. 2. A broad variety of types of data. 3. The velocity at which the data need needs to processed and analyzed.
  • 8. Who Uses Big Data? Companies considering big data as an integral part of their strategy because • It gives businesses the power to pinpoint the cause of their problems. • Customers’ buying habits.
  • 9. Who Uses Big Data? • They can optimize offerings • They can reduce cost and time It helps them to make sound decisions
  • 11. Azure Data Lake Origin Bing needed to . . . Understand user behaviors And do it . . . At massive scale With agility and speed So they built Cosmos
  • 12. Azure Data Lake Overview Azure Data Lake is a scalable data storage and analytics service.
  • 13. Azure Data Lake Overview It was released on Novembers 16th, 2016
  • 14. Azure Data Lake Overview
  • 15. Feature of Azure Data Lake • The ability to store and analyze data of any kind and size. • Multiple access methods including U-SQL, Spark, Hive, and Storm. • Dynamic scaling to match your business priorities. • Enterprise-grade security with Azure Active Directory.
  • 16. Azure Data Lake Store Presenter: Waqas Idrees
  • 17. Azure Data Lake Store • Users can store structured, semi- structured or unstructured data.
  • 18. Azure Data Lake Store • A single Azure Data Lake Store account can store trillions of files. • A single file can be greater than a petabyte in size.
  • 19. Populating the Data Lake Azure Data Factory Presenter: Waqas Idrees
  • 23. Azure Data Lake Analytics Presenter: Waqas Idrees
  • 24. Azure Data Lake Analytics • On-demand job service • Deploy on Azure and schedule using Azure Data Factory • Affordable and cost effective (Pay as you use)
  • 25. U-SQL • Familiar syntax to millions of SQL and .Net Developers • Unifies declarative nature of SQL with the imperative power of C# • Unifies structured, semi structured and unstructured data. • Distributed Query Support over all data. U-SQL A new language for Big Data
  • 26. U-SQL Language Overview U-SQL Fundamentals • All the familiar SQL Clauses SELECT | FROM | WHERE | GROUP BY | OVER • Operate on Structure and Unstructured Data .NET Integration and Extensibility • U-SQL Expressions are full C# expressions • Reuse .NET code in other assemblies • Use C# to define your own Types | Functions | Aggregations | IO
  • 27. ADLA Executions U-SQL Cloud Execution • The data read or written by the script will also be in Azure - typically in an Azure Data Lake Store account • You pay for any compute and storage used by the script.
  • 28. ADLA Executions U-SQL Local Execution • The data read and written by this script will be on you own machine. • There is no additional cost
  • 29. System Requirements • x64 CPU • Minimum of 16 GB RAM • Windows 10 is recommended • Visual Studio 2015 or + • Azure Data Lake Tools for Visual Studio
  • 30. First U-SQL Script • Create new Azure Data Lake > U-SQL Project. • An empty U-SQL script and its code behind file will be there called "Script.usql"
  • 31. First U-SQL Script @searchlog = EXTRACT UserId int, Start DateTime, Region string, Query string, Duration int?, Urls string, ClickedUrls string FROM "/Samples/Data/SearchLog.tsv" USING Extractors.Tsv(); OUTPUT @searchlog TO "/output/SearchLog-first-u-sql.csv" USING Outputters.Csv(); Row set Apply schema on read File Path Write out Easy delimited text handling
  • 32. ADLA Local Account Configurations Location of inputs and Outputs
  • 36. When does a job get Queued? Local Cause • Queue is already at max concurrency Cloud Clause • Shortage of Azure Data Lake Analytics Units (ADLAUs) • Queue is already at max concurrency
  • 37. Azure Data Lake Account Configurations Presenter: Waqas Idrees
  • 38. ADLA Cloud Account Configurations • Maximum number of ADLA accounts per subscription per region: 5 • Maximum number of concurrent U-SQL jobs per account: 20 • Maximum number of Analytics Units (AUs) per account: 32 • Maximum number of Analytics Units (AUs) per job: 32
  • 39. What is an Azure Data Lake Analytics Unit? An Azure Data Lake Analytics Unit (AU) is a unit of compute resources with Azure Data Lake. AU is the equivalent of 2 CPU cores and 6 GB of RAM
  • 40. How AUs are used during U-SQL Query Execution? When we submit a U-SQL job, e specify three things 1. U-SQL Script 2. Input and Output Files 3. Reserved AUs
  • 41. How AUs are used during U-SQL Query Execution? U-SQL Compiler and Optimizer Vertex/Vertices Each Task in a Plan is called Vertex. Plan
  • 42. How AUs are used during U-SQL Query Execution? • We need an AU to run a Vertex. • When the vertex is finished the AU will be assigned to another vertex.
  • 43. How AUs are used during U-SQL Query Execution?
  • 45. What is an AU Second? An AU Second is the unit used to measure the compute resources used for a job.
  • 46. What is an AU Second? • 1 AU for a job that executes for 1 second = 1 AU Second. • 1 AU for a job that executes for 1 minute (60 seconds) = 60 AU Seconds. • 2 AUs for a job that executes for 100 seconds = 200 AU Seconds. • 10s AUs for a job that executes for 5 minutes (300 seconds) = 3000 AU Seconds.
  • 47. Pricing Details USAGE PRICE Analytics Unit $2/hour Pay-as-You-Go
  • 48. Pricing Details INCLUDED ANALYTICS UNIT HOURS PRICE/MONTH SAVINGS OVER PAY-AS-YOU-GO 100 $100 50% 500 $450 55% 1,000 $800 60% 5,000 $3,600 64% 10,000 $6,500 68% 50,000 $29,000 71% 100,000 $52,000 74% > 100,000 Contact Us Monthly commitment packages Monthly commitment packages provide you with a significant discount (up to 74%) compared to Pay-as-You-Go pricing.
  • 49. What can I do with Azure Data Lake Analytics? • Prepping large amounts of data for insertion into a Data Warehouse • Processing scraped web data for science and analysis • Using image processing intelligence to quickly process unstructured image data • Replacing long-running monthly batch processing with shorter running distributed processes
  • 50. What makes it different? • Only one language to learn • Only offered as a platform service • Pricing per job; not per hour
  • 51. ADLA on Azure Portal Presenter: Waqas Idrees
  • 52. Refrences Big Data https://www.infoworld.com/article/3220044/big-data/what-is-big-data-everything-you-need-to-know.html https://dzone.com/articles/a-beginners-guide-to-big-data Data Lake https://dzone.com/articles/introduction-to-azure-data-lake Data Lake Analytics https://blogs.msdn.microsoft.com/azuredatalake/2016/10/12/understanding-adl-analytics-unit/ https://docs.microsoft.com/en-us/azure/data-lake-analytics/data-lake-analytics-quota-limits https://social.msdn.microsoft.com/Forums/azure/en-US/ec10b28d-b824-4aa8-b2dc-5b7d9de3056f/azure-batch-vs-hdinsightdata- vs-lake-analytics?forum=azurebatch https://www.blue-granite.com/blog/azure-data-lake-analytics-holds-a-unique-spot-in-the-modern-data-architecture

Editor's Notes

  • #4: - Multiple definitions of Big Data are available on internet. - In general Big Data refers to set of data that are so large in volume and so complex that current data processing products are not capable of managing, capturing or processing of that data within a reasonable amount of time.
  • #6: - Big Data is all data which can be mined for insights. - Big Data is collection and analysis of data from various sources such as websites, social media, mobile apps, sensors internet of things or data collected from the scientific experiment.
  • #9: Companies find big data as an integral part of their strategy because it can reduce cost and time, develop new products, optimize offerings, and help you make sound decisions.
  • #10: It gives businesses the power to pinpoint the cause of their problems and other behaviors such as customers’ buying habits and risk portfolios. I'll represent more advance topics on this.
  • #13: 1- Azure Data Lake was built on the learning and technologies of cosmos. 2- Cosmos is Microsoft's internal BigData analysis platform. 2.1 There's not a lot of public information available about cosmons. 3- Cosmos is used within Microsoft extensively, across a huge number of servers.
  • #14: 4- It is used to store and process data for applications such as Azure, AdCenter, Bing, MSN, Skype and Windows Live. 5- They are collecting information on our every click, visual search for improving their services, adds expreiences after performing analysis on that data.
  • #15: Yarn allows different data processing engines like graph processing, interactive processing, stream processing as well as batch processing to run and process data stored in HDFS
  • #51: Hadoop comes in many different flavors, some running on-premises, others running in the cloud. Some are managed BY you, others are managed FOR you Most Big Data cloud offerings that are available are priced per hour based on how long you keep your cluster up and running. ADLA takes a different approach to pricing.