SlideShare a Scribd company logo
Introduction to Azure Data Lake
Introduction to
Azure Data Lake
Athens May 26, 2017
PresenterInfo
1982 I started working with computers
1988 I started my professional career in computers industry
1996 I started working with SQL Server 6.0
1998 I earned my first certification at Microsoft as
Microsoft Certified Solution Developer (3rd in Greece)
1999 I started my career as Microsoft Certified Trainer (MCT) with
more than 30.000 hours of training until now!
2010 I became for first time Microsoft MVP on Data Platform
I created the SQL School Greece www.sqlschool.gr
2012 I became MCT Regional Lead by Microsoft Learning Program.
2013 I was certified as MCSE : Data Platform
I was certified as MCSE : Business Intelligence
2016 I was certified as MCSE: Data Management & Analytics
Antonios
Chatzipavlis
SQL Server Expert and Evangelist
Data Platform MVP
MCT, MCSE, MCITP, MCPD, MCSD, MCDBA,
MCSA, MCTS, MCAD, MCP, OCA, ITIL-F
SQLschool.gr
Μια πηγή ενημέρωσης για τον Microsoft SQL Server προς τους Έλληνες
IT Professionals, DBAs, Developers, Information Workers αλλά και
απλούς χομπίστες που απλά τους αρέσει ο SQL Server.
Help line : help@sqlschool.gr
• Articles about SQL Server
• SQL Server News
• SQL Nights
• Webcasts
• Downloads
• Resources
What we are doing here Follow us in socials
fb/sqlschoolgr
fb/groups/sqlschool
@antoniosch
@sqlschool
yt/c/SqlschoolGr
SQL School Greece group
SELECT KNOWLEDGE
FROM SQL SERVER
▪ Sign up for a free membership today at sqlpass.org.
▪ Linked In: http://www.sqlpass.org/linkedin
▪ Facebook: http://www.sqlpass.org/facebook
▪ Twitter: @SQLPASS
▪ PASS: http://www.sqlpass.org
PASSVirtualChapters
Data Lake Overview
What is Azure Data Lake?
“A single store of all data… ranging from
raw data (which implies exact copy of
source system data) to transformed data
which is used for various forms including
reporting, visualization, analytics, and
machine learning”
Built on Open-Source
Azure Ecosystem Integration
Azure Data Lake
• Data Lake Analytics
• HDInsight
• Data Lake Store
• Develop, debug, and optimize big data programs with ease
• Integrates seamlessly with your existing IT investments
• Store and analyze petabyte-size files and trillions of objects
• Affordable and cost effective
• Enterprise grade security, auditing, and support
What Azure Data Lake Offers?
Data Lakes vs Data Warehouses
DATA WAREHOUSE vs. DATA LAKE
Structured
Processed
DATA
Structured
Semi-structured
Unstructured
Raw
Schema-on-Write PROCESSING Schema-on-Read
Expensive for large data volumes STORAGE Designed for low-cost storage
Less Agile
Fixed configuration
AGILITY
Highly Agile
Configure and Reconfigure as needed
Mature SECURITY Maturing
Business Professionals USERS Data Scientists et. al.
Data Lake Store
• Enterprise-wide hyper-scale repository for big data analytic workloads.
- Azure Data Lake enables you to capture data of any size, type, and ingestion speed in one single
place for operational and exploratory analytics.
• Can be accessed from Hadoop (available with HDInsight cluster) using
the WebHDFS-compatible REST APIs.
• Specifically designed to enable analytics on the stored data and is tuned
for performance for data analytics scenarios.
• It includes, out of the box, all the enterprise-grade capabilities
- security, manageability, scalability, reliability, and availability
• Essential for real-world enterprise use cases.
What is Azure Data Lake Store?
Azure Data Lake Store vs Azure Blob Storage
AZURE DATA LAKE STORE vs. AZURE BLOB STORAGE
Optimized storage for big data
analytics workloads
PURPOSE
General purpose object store for a wide variety
of storage scenarios
Batch, interactive, streaming analytics
and machine learning data such as
log files, IoT data, click streams, large
datasets
USE CASES
Any type of text or binary data, such as
application back end, backup data, media
storage for streaming and general purpose
data
Data Lake Store account contains
folders, which in turn contains data
stored as files
KEY CONCEPTS
Storage account has containers, which in turn
has data in the form of blobs
Hierarchical file system STRUCTURE Object store with flat namespace
Based on Azure Active Directory
Identities
SECURITY
Based on shared secrets - Account Access
Keys and Shared Access Signature Keys.
Data Lake Analytics
• Is an on-demand analytics job service to simplify big data analytics.
• Focus on writing, running, and managing jobs rather than on
operating distributed infrastructure.
• Can handle jobs of any scale instantly by setting the dial for how much
power you need.
• You only pay for your job when it is running, making it cost-effective.
• The analytics service supports Azure Active Directory letting you
manage access and roles, integrated with your on-premises identity
system.
What is Azure Data Lake Analytics?
• Dynamic scaling
• Develop faster, debug, and optimize smarter using
familiar tools
• U-SQL: simple and familiar, powerful, and extensible
• Integrates seamlessly with your IT investments
• Affordable and cost effective
• Works with all your Azure Data
Azure Data Lake Analytics Key Capabilities
HDInsight
- A only fully-managed cloud Apache Hadoop offering
- Provides optimized open-source analytic clusters for
- Spark,
- Hive,
- MapReduce,
- HBase,
- Storm,
- Kafka,
- Microsoft R Server
- Provides a 99.9% SLA
- Deploy these big data technologies and ISV applications
as managed clusters with enterprise-level security and
monitoring.
What is Azure
HDInsight?
U-SQL
Is the new big data query language of
the Azure Data Lake Analytics service
It evolved out of Microsoft's internal Big
Data language called
SCOPE : Easy and Efficient Parallel
Processing of Massive Data Sets
by Ronnie Chaiken, Bob Jenkins, Per-Åke Larson, Bill Ramsey, Darren
Shakib, Simon Weaver, Jingren Zhou
http://www.vldb.org/pvldb/1/1454166.pdf
What is U-SQL?
– a familiar SQL-like declarative
language
– with the extensibility and
programmability provided by C# types
and the C# expression language
– and big data processing concepts such
as “schema on reads”, custom
processors and reducers.
U-SQL
combines
– Azure Data Lake Storage,
– Azure Blob Storage,
– Azure SQL DB, Azure SQL Data
Warehouse,
– SQL Server instances running in
Azure VMs.
Provides the
ability to query
and combine
data from a
variety of data
sources
– Its keywords such as SELECT have to be
in UPPERCASE.
– Its expression language inside SELECT
clauses, WHERE predicates etc is C#.
– This for example means, that the
comparison operations inside a predicate
follow C# syntax (e.g., a == "foo"),
– and that the language uses C# null
semantics which is 2-valued and not 3-
valued as in ANSI SQL.
It’s NOT
ANSI SQL
• Azure Data Lake Analytics provides U-SQL for batch processing.
• U-SQL is written and executed in form of a batch script.
• U-SQL also supports data definition statements such as CREATE
TABLE to create metadata artifacts either in separate scripts or
sometimes even in combination with the transformation scripts.
• U-SQL Scripts can be submitted in a variety of ways.
- Directly from within the Azure Data Lake Tools for Visual Studio,
- From the Azure Portal
- Programmatically via the Azure Data Lake SDK job submission API
- Azure Powershell extension's job submission command
How does a U-SQL Script process Data?
It follows the following general processing pattern:
• Retrieve data from stored locations in rowset format
- Stored locations can be files that will be schematized on read with EXTRACT expressions
- Stored locations can be U-SQL tables that are stored in a schematized format
- Or can be tables provided by other data sources such as an Azure SQL database.
• Transform the rowset(s)
- Several transformations over the rowsets can be composed in a data flow format
• Store the transformed rowset data
- Store it in a file with an OUTPUT statement, or
- Store it in a U-SQL table with an INSERT statement
How does a U-SQL Script process Data?
DECLARE @in string = "/Samples/Data/SearchLog.tsv";
DECLARE @out string = "/output/result.tsv";
@searchlog = EXTRACT UserId int, Start DateTime, Region string, Query string,
Duration int?, Urls string, ClickedUrls string
FROM @in USING Extractors.Tsv();
@rs1 = SELECT Start, Region, Duration FROM @searchlog WHERE Region == "en-gb";
@rs1 = SELECT Start, Region, Duration FROM @rs1
WHERE Start >= DateTime.Parse("2012/02/16");
OUTPUT @rs1
TO @out
USING Outputters.Tsv();
U-SQL Scripts
DEMO
– Create Data Lake Stores
– Create Data Lake Analytics accounts and
connect them to Data Lake Stores
– Import data into Azure Data Lake Stores
– Run U-SQL jobs in Azure Data Lake
Analytics
Ask your
Questions
☺
Thank you
SELECT KNOWLEDGE FROM SQL SERVER
Copyright © 2017 SQLschool.gr. All right reserved.
PRESENTER MAKES NO WARRANTIES, EXPRESS, IMPLIED OR STATUTORY, AS TO THE INFORMATION IN THIS PRESENTATION

More Related Content

What's hot (20)

PDF
Modernizing to a Cloud Data Architecture
Databricks
 
PDF
Building Lakehouses on Delta Lake with SQL Analytics Primer
Databricks
 
PDF
Moving to Databricks & Delta
Databricks
 
PPTX
Azure data platform overview
James Serra
 
PPTX
Azure Synapse Analytics Overview (r2)
James Serra
 
PPTX
Building a modern data warehouse
James Serra
 
PDF
Learn to Use Databricks for Data Science
Databricks
 
PDF
Azure Data Factory V2; The Data Flows
Thomas Sykes
 
PDF
Databricks Delta Lake and Its Benefits
Databricks
 
PPTX
Intro to Azure Data Factory v1
Eric Bragas
 
PPTX
1- Introduction of Azure data factory.pptx
BRIJESH KUMAR
 
PPTX
Data Lakehouse, Data Mesh, and Data Fabric (r1)
James Serra
 
PPTX
Databricks on AWS.pptx
Wasm1953
 
PDF
Lakehouse in Azure
Sergio Zenatti Filho
 
PDF
Enabling a Data Mesh Architecture with Data Virtualization
Denodo
 
PDF
Azure Synapse Analytics
WinWire Technologies Inc
 
PDF
Data Mesh Part 4 Monolith to Mesh
Jeffrey T. Pollock
 
PPTX
Azure Data Factory Data Flow
Mark Kromer
 
PDF
Data Warehouse or Data Lake, Which Do I Choose?
DATAVERSITY
 
PPTX
Free Training: How to Build a Lakehouse
Databricks
 
Modernizing to a Cloud Data Architecture
Databricks
 
Building Lakehouses on Delta Lake with SQL Analytics Primer
Databricks
 
Moving to Databricks & Delta
Databricks
 
Azure data platform overview
James Serra
 
Azure Synapse Analytics Overview (r2)
James Serra
 
Building a modern data warehouse
James Serra
 
Learn to Use Databricks for Data Science
Databricks
 
Azure Data Factory V2; The Data Flows
Thomas Sykes
 
Databricks Delta Lake and Its Benefits
Databricks
 
Intro to Azure Data Factory v1
Eric Bragas
 
1- Introduction of Azure data factory.pptx
BRIJESH KUMAR
 
Data Lakehouse, Data Mesh, and Data Fabric (r1)
James Serra
 
Databricks on AWS.pptx
Wasm1953
 
Lakehouse in Azure
Sergio Zenatti Filho
 
Enabling a Data Mesh Architecture with Data Virtualization
Denodo
 
Azure Synapse Analytics
WinWire Technologies Inc
 
Data Mesh Part 4 Monolith to Mesh
Jeffrey T. Pollock
 
Azure Data Factory Data Flow
Mark Kromer
 
Data Warehouse or Data Lake, Which Do I Choose?
DATAVERSITY
 
Free Training: How to Build a Lakehouse
Databricks
 

Viewers also liked (10)

PDF
Exploring sql server 2016
Antonios Chatzipavlis
 
PDF
Introduction to azure document db
Antonios Chatzipavlis
 
PDF
Introduction to Machine Learning on Azure
Antonios Chatzipavlis
 
PDF
Row level security
Antonios Chatzipavlis
 
PDF
Exploring sql server 2016 bi
Antonios Chatzipavlis
 
PDF
Microsoft SQL Family and GDPR
Antonios Chatzipavlis
 
PDF
Dynamic data masking sql server 2016
Antonios Chatzipavlis
 
PDF
Live Query Statistics & Query Store in SQL Server 2016
Antonios Chatzipavlis
 
PDF
Introduction to sql database on azure
Antonios Chatzipavlis
 
PDF
Azure SQL Data Warehouse
Antonios Chatzipavlis
 
Exploring sql server 2016
Antonios Chatzipavlis
 
Introduction to azure document db
Antonios Chatzipavlis
 
Introduction to Machine Learning on Azure
Antonios Chatzipavlis
 
Row level security
Antonios Chatzipavlis
 
Exploring sql server 2016 bi
Antonios Chatzipavlis
 
Microsoft SQL Family and GDPR
Antonios Chatzipavlis
 
Dynamic data masking sql server 2016
Antonios Chatzipavlis
 
Live Query Statistics & Query Store in SQL Server 2016
Antonios Chatzipavlis
 
Introduction to sql database on azure
Antonios Chatzipavlis
 
Azure SQL Data Warehouse
Antonios Chatzipavlis
 
Ad

Similar to Introduction to Azure Data Lake (20)

PPTX
Azure Synapse Analytics Overview (r1)
James Serra
 
PDF
J1 T1 3 - Azure Data Lake store & analytics 101 - Kenneth M. Nielsen
MS Cloud Summit
 
PPTX
What’s new in SQL Server 2017
James Serra
 
PDF
Prague data management meetup 2018-03-27
Martin Bém
 
PDF
Azure Days 2019: Business Intelligence auf Azure (Marco Amhof & Yves Mauron)
Trivadis
 
PPTX
Azure Data Lake and U-SQL
Michael Rys
 
PDF
Azure Data Engineer Interview Questions By ScholarHat
Scholarhat
 
PPTX
Microsoft Data Platform - What's included
James Serra
 
PPTX
Eugene Polonichko "Azure Data Lake: what is it? why is it? where is it?"
DataConf
 
PPTX
Ai big dataconference_eugene_polonichko_azure data lake
Olga Zinkevych
 
PPTX
Azure Data Lake Intro (SQLBits 2016)
Michael Rys
 
PPTX
Scalable relational database with SQL Azure
Shy Engelberg
 
PPTX
Day 1 - Technical Bootcamp azure synapse analytics
Armand272
 
PPTX
AZURE Data Related Services
Ruslan Drahomeretskyy
 
PPTX
Differentiate Big Data vs Data Warehouse use cases for a cloud solution
James Serra
 
PPTX
Your-Complete-Guide-to-Azure-Data-Engineering (1).pptx
giridharkbkbusiness
 
PPTX
Azure Databricks - An Introduction 2019 Roadshow.pptx
pascalsegoul
 
PPTX
Exploring Microsoft Azure Infrastructures
CCG
 
PDF
USQL Trivadis Azure Data Lake Event
Trivadis
 
PPTX
Azure Data.pptx
FedoRam1
 
Azure Synapse Analytics Overview (r1)
James Serra
 
J1 T1 3 - Azure Data Lake store & analytics 101 - Kenneth M. Nielsen
MS Cloud Summit
 
What’s new in SQL Server 2017
James Serra
 
Prague data management meetup 2018-03-27
Martin Bém
 
Azure Days 2019: Business Intelligence auf Azure (Marco Amhof & Yves Mauron)
Trivadis
 
Azure Data Lake and U-SQL
Michael Rys
 
Azure Data Engineer Interview Questions By ScholarHat
Scholarhat
 
Microsoft Data Platform - What's included
James Serra
 
Eugene Polonichko "Azure Data Lake: what is it? why is it? where is it?"
DataConf
 
Ai big dataconference_eugene_polonichko_azure data lake
Olga Zinkevych
 
Azure Data Lake Intro (SQLBits 2016)
Michael Rys
 
Scalable relational database with SQL Azure
Shy Engelberg
 
Day 1 - Technical Bootcamp azure synapse analytics
Armand272
 
AZURE Data Related Services
Ruslan Drahomeretskyy
 
Differentiate Big Data vs Data Warehouse use cases for a cloud solution
James Serra
 
Your-Complete-Guide-to-Azure-Data-Engineering (1).pptx
giridharkbkbusiness
 
Azure Databricks - An Introduction 2019 Roadshow.pptx
pascalsegoul
 
Exploring Microsoft Azure Infrastructures
CCG
 
USQL Trivadis Azure Data Lake Event
Trivadis
 
Azure Data.pptx
FedoRam1
 
Ad

More from Antonios Chatzipavlis (20)

PPTX
Data virtualization using polybase
Antonios Chatzipavlis
 
PDF
SQL server Backup Restore Revealed
Antonios Chatzipavlis
 
PDF
Migrate SQL Workloads to Azure
Antonios Chatzipavlis
 
PDF
Machine Learning in SQL Server 2019
Antonios Chatzipavlis
 
PDF
Workload Management in SQL Server 2019
Antonios Chatzipavlis
 
PDF
Loading Data into Azure SQL DW (Synapse Analytics)
Antonios Chatzipavlis
 
PDF
Introduction to DAX Language
Antonios Chatzipavlis
 
PDF
Building diagnostic queries using DMVs and DMFs
Antonios Chatzipavlis
 
PDF
Exploring T-SQL Anti-Patterns
Antonios Chatzipavlis
 
PDF
Designing a modern data warehouse in azure
Antonios Chatzipavlis
 
PDF
Modernizing your database with SQL Server 2019
Antonios Chatzipavlis
 
PDF
Designing a modern data warehouse in azure
Antonios Chatzipavlis
 
PDF
SQLServer Database Structures
Antonios Chatzipavlis
 
PDF
Sqlschool 2017 recap - 2018 plans
Antonios Chatzipavlis
 
PDF
Azure SQL Database for the SQL Server DBA - Azure Bootcamp Athens 2018
Antonios Chatzipavlis
 
PDF
Statistics and Indexes Internals
Antonios Chatzipavlis
 
PDF
Implementing Mobile Reports in SQL Sserver 2016 Reporting Services
Antonios Chatzipavlis
 
PDF
Auditing Data Access in SQL Server
Antonios Chatzipavlis
 
PDF
Stretch db sql server 2016 (sn0028)
Antonios Chatzipavlis
 
PDF
Troubleshooting sql server
Antonios Chatzipavlis
 
Data virtualization using polybase
Antonios Chatzipavlis
 
SQL server Backup Restore Revealed
Antonios Chatzipavlis
 
Migrate SQL Workloads to Azure
Antonios Chatzipavlis
 
Machine Learning in SQL Server 2019
Antonios Chatzipavlis
 
Workload Management in SQL Server 2019
Antonios Chatzipavlis
 
Loading Data into Azure SQL DW (Synapse Analytics)
Antonios Chatzipavlis
 
Introduction to DAX Language
Antonios Chatzipavlis
 
Building diagnostic queries using DMVs and DMFs
Antonios Chatzipavlis
 
Exploring T-SQL Anti-Patterns
Antonios Chatzipavlis
 
Designing a modern data warehouse in azure
Antonios Chatzipavlis
 
Modernizing your database with SQL Server 2019
Antonios Chatzipavlis
 
Designing a modern data warehouse in azure
Antonios Chatzipavlis
 
SQLServer Database Structures
Antonios Chatzipavlis
 
Sqlschool 2017 recap - 2018 plans
Antonios Chatzipavlis
 
Azure SQL Database for the SQL Server DBA - Azure Bootcamp Athens 2018
Antonios Chatzipavlis
 
Statistics and Indexes Internals
Antonios Chatzipavlis
 
Implementing Mobile Reports in SQL Sserver 2016 Reporting Services
Antonios Chatzipavlis
 
Auditing Data Access in SQL Server
Antonios Chatzipavlis
 
Stretch db sql server 2016 (sn0028)
Antonios Chatzipavlis
 
Troubleshooting sql server
Antonios Chatzipavlis
 

Recently uploaded (20)

PDF
"AI Transformation: Directions and Challenges", Pavlo Shaternik
Fwdays
 
PPTX
COMPARISON OF RASTER ANALYSIS TOOLS OF QGIS AND ARCGIS
Sharanya Sarkar
 
PPTX
AUTOMATION AND ROBOTICS IN PHARMA INDUSTRY.pptx
sameeraaabegumm
 
PDF
Blockchain Transactions Explained For Everyone
CIFDAQ
 
PPTX
"Autonomy of LLM Agents: Current State and Future Prospects", Oles` Petriv
Fwdays
 
PDF
Reverse Engineering of Security Products: Developing an Advanced Microsoft De...
nwbxhhcyjv
 
PDF
From Code to Challenge: Crafting Skill-Based Games That Engage and Reward
aiyshauae
 
PDF
Log-Based Anomaly Detection: Enhancing System Reliability with Machine Learning
Mohammed BEKKOUCHE
 
PPTX
UiPath Academic Alliance Educator Panels: Session 2 - Business Analyst Content
DianaGray10
 
PPTX
Building Search Using OpenSearch: Limitations and Workarounds
Sease
 
PPTX
OpenID AuthZEN - Analyst Briefing July 2025
David Brossard
 
PDF
Presentation - Vibe Coding The Future of Tech
yanuarsinggih1
 
PPTX
Q2 FY26 Tableau User Group Leader Quarterly Call
lward7
 
PDF
NewMind AI - Journal 100 Insights After The 100th Issue
NewMind AI
 
PDF
Transcript: New from BookNet Canada for 2025: BNC BiblioShare - Tech Forum 2025
BookNet Canada
 
PDF
New from BookNet Canada for 2025: BNC BiblioShare - Tech Forum 2025
BookNet Canada
 
PDF
Building Real-Time Digital Twins with IBM Maximo & ArcGIS Indoors
Safe Software
 
PDF
The Builder’s Playbook - 2025 State of AI Report.pdf
jeroen339954
 
PDF
"Beyond English: Navigating the Challenges of Building a Ukrainian-language R...
Fwdays
 
PDF
Exolore The Essential AI Tools in 2025.pdf
Srinivasan M
 
"AI Transformation: Directions and Challenges", Pavlo Shaternik
Fwdays
 
COMPARISON OF RASTER ANALYSIS TOOLS OF QGIS AND ARCGIS
Sharanya Sarkar
 
AUTOMATION AND ROBOTICS IN PHARMA INDUSTRY.pptx
sameeraaabegumm
 
Blockchain Transactions Explained For Everyone
CIFDAQ
 
"Autonomy of LLM Agents: Current State and Future Prospects", Oles` Petriv
Fwdays
 
Reverse Engineering of Security Products: Developing an Advanced Microsoft De...
nwbxhhcyjv
 
From Code to Challenge: Crafting Skill-Based Games That Engage and Reward
aiyshauae
 
Log-Based Anomaly Detection: Enhancing System Reliability with Machine Learning
Mohammed BEKKOUCHE
 
UiPath Academic Alliance Educator Panels: Session 2 - Business Analyst Content
DianaGray10
 
Building Search Using OpenSearch: Limitations and Workarounds
Sease
 
OpenID AuthZEN - Analyst Briefing July 2025
David Brossard
 
Presentation - Vibe Coding The Future of Tech
yanuarsinggih1
 
Q2 FY26 Tableau User Group Leader Quarterly Call
lward7
 
NewMind AI - Journal 100 Insights After The 100th Issue
NewMind AI
 
Transcript: New from BookNet Canada for 2025: BNC BiblioShare - Tech Forum 2025
BookNet Canada
 
New from BookNet Canada for 2025: BNC BiblioShare - Tech Forum 2025
BookNet Canada
 
Building Real-Time Digital Twins with IBM Maximo & ArcGIS Indoors
Safe Software
 
The Builder’s Playbook - 2025 State of AI Report.pdf
jeroen339954
 
"Beyond English: Navigating the Challenges of Building a Ukrainian-language R...
Fwdays
 
Exolore The Essential AI Tools in 2025.pdf
Srinivasan M
 

Introduction to Azure Data Lake

  • 2. Introduction to Azure Data Lake Athens May 26, 2017
  • 3. PresenterInfo 1982 I started working with computers 1988 I started my professional career in computers industry 1996 I started working with SQL Server 6.0 1998 I earned my first certification at Microsoft as Microsoft Certified Solution Developer (3rd in Greece) 1999 I started my career as Microsoft Certified Trainer (MCT) with more than 30.000 hours of training until now! 2010 I became for first time Microsoft MVP on Data Platform I created the SQL School Greece www.sqlschool.gr 2012 I became MCT Regional Lead by Microsoft Learning Program. 2013 I was certified as MCSE : Data Platform I was certified as MCSE : Business Intelligence 2016 I was certified as MCSE: Data Management & Analytics Antonios Chatzipavlis SQL Server Expert and Evangelist Data Platform MVP MCT, MCSE, MCITP, MCPD, MCSD, MCDBA, MCSA, MCTS, MCAD, MCP, OCA, ITIL-F
  • 4. SQLschool.gr Μια πηγή ενημέρωσης για τον Microsoft SQL Server προς τους Έλληνες IT Professionals, DBAs, Developers, Information Workers αλλά και απλούς χομπίστες που απλά τους αρέσει ο SQL Server. Help line : [email protected] • Articles about SQL Server • SQL Server News • SQL Nights • Webcasts • Downloads • Resources What we are doing here Follow us in socials fb/sqlschoolgr fb/groups/sqlschool @antoniosch @sqlschool yt/c/SqlschoolGr SQL School Greece group SELECT KNOWLEDGE FROM SQL SERVER
  • 5. ▪ Sign up for a free membership today at sqlpass.org. ▪ Linked In: http://www.sqlpass.org/linkedin ▪ Facebook: http://www.sqlpass.org/facebook ▪ Twitter: @SQLPASS ▪ PASS: http://www.sqlpass.org
  • 8. What is Azure Data Lake? “A single store of all data… ranging from raw data (which implies exact copy of source system data) to transformed data which is used for various forms including reporting, visualization, analytics, and machine learning”
  • 11. • Data Lake Analytics • HDInsight • Data Lake Store • Develop, debug, and optimize big data programs with ease • Integrates seamlessly with your existing IT investments • Store and analyze petabyte-size files and trillions of objects • Affordable and cost effective • Enterprise grade security, auditing, and support What Azure Data Lake Offers?
  • 12. Data Lakes vs Data Warehouses DATA WAREHOUSE vs. DATA LAKE Structured Processed DATA Structured Semi-structured Unstructured Raw Schema-on-Write PROCESSING Schema-on-Read Expensive for large data volumes STORAGE Designed for low-cost storage Less Agile Fixed configuration AGILITY Highly Agile Configure and Reconfigure as needed Mature SECURITY Maturing Business Professionals USERS Data Scientists et. al.
  • 14. • Enterprise-wide hyper-scale repository for big data analytic workloads. - Azure Data Lake enables you to capture data of any size, type, and ingestion speed in one single place for operational and exploratory analytics. • Can be accessed from Hadoop (available with HDInsight cluster) using the WebHDFS-compatible REST APIs. • Specifically designed to enable analytics on the stored data and is tuned for performance for data analytics scenarios. • It includes, out of the box, all the enterprise-grade capabilities - security, manageability, scalability, reliability, and availability • Essential for real-world enterprise use cases. What is Azure Data Lake Store?
  • 15. Azure Data Lake Store vs Azure Blob Storage AZURE DATA LAKE STORE vs. AZURE BLOB STORAGE Optimized storage for big data analytics workloads PURPOSE General purpose object store for a wide variety of storage scenarios Batch, interactive, streaming analytics and machine learning data such as log files, IoT data, click streams, large datasets USE CASES Any type of text or binary data, such as application back end, backup data, media storage for streaming and general purpose data Data Lake Store account contains folders, which in turn contains data stored as files KEY CONCEPTS Storage account has containers, which in turn has data in the form of blobs Hierarchical file system STRUCTURE Object store with flat namespace Based on Azure Active Directory Identities SECURITY Based on shared secrets - Account Access Keys and Shared Access Signature Keys.
  • 17. • Is an on-demand analytics job service to simplify big data analytics. • Focus on writing, running, and managing jobs rather than on operating distributed infrastructure. • Can handle jobs of any scale instantly by setting the dial for how much power you need. • You only pay for your job when it is running, making it cost-effective. • The analytics service supports Azure Active Directory letting you manage access and roles, integrated with your on-premises identity system. What is Azure Data Lake Analytics?
  • 18. • Dynamic scaling • Develop faster, debug, and optimize smarter using familiar tools • U-SQL: simple and familiar, powerful, and extensible • Integrates seamlessly with your IT investments • Affordable and cost effective • Works with all your Azure Data Azure Data Lake Analytics Key Capabilities
  • 20. - A only fully-managed cloud Apache Hadoop offering - Provides optimized open-source analytic clusters for - Spark, - Hive, - MapReduce, - HBase, - Storm, - Kafka, - Microsoft R Server - Provides a 99.9% SLA - Deploy these big data technologies and ISV applications as managed clusters with enterprise-level security and monitoring. What is Azure HDInsight?
  • 21. U-SQL
  • 22. Is the new big data query language of the Azure Data Lake Analytics service It evolved out of Microsoft's internal Big Data language called SCOPE : Easy and Efficient Parallel Processing of Massive Data Sets by Ronnie Chaiken, Bob Jenkins, Per-Åke Larson, Bill Ramsey, Darren Shakib, Simon Weaver, Jingren Zhou http://www.vldb.org/pvldb/1/1454166.pdf What is U-SQL?
  • 23. – a familiar SQL-like declarative language – with the extensibility and programmability provided by C# types and the C# expression language – and big data processing concepts such as “schema on reads”, custom processors and reducers. U-SQL combines
  • 24. – Azure Data Lake Storage, – Azure Blob Storage, – Azure SQL DB, Azure SQL Data Warehouse, – SQL Server instances running in Azure VMs. Provides the ability to query and combine data from a variety of data sources
  • 25. – Its keywords such as SELECT have to be in UPPERCASE. – Its expression language inside SELECT clauses, WHERE predicates etc is C#. – This for example means, that the comparison operations inside a predicate follow C# syntax (e.g., a == "foo"), – and that the language uses C# null semantics which is 2-valued and not 3- valued as in ANSI SQL. It’s NOT ANSI SQL
  • 26. • Azure Data Lake Analytics provides U-SQL for batch processing. • U-SQL is written and executed in form of a batch script. • U-SQL also supports data definition statements such as CREATE TABLE to create metadata artifacts either in separate scripts or sometimes even in combination with the transformation scripts. • U-SQL Scripts can be submitted in a variety of ways. - Directly from within the Azure Data Lake Tools for Visual Studio, - From the Azure Portal - Programmatically via the Azure Data Lake SDK job submission API - Azure Powershell extension's job submission command How does a U-SQL Script process Data?
  • 27. It follows the following general processing pattern: • Retrieve data from stored locations in rowset format - Stored locations can be files that will be schematized on read with EXTRACT expressions - Stored locations can be U-SQL tables that are stored in a schematized format - Or can be tables provided by other data sources such as an Azure SQL database. • Transform the rowset(s) - Several transformations over the rowsets can be composed in a data flow format • Store the transformed rowset data - Store it in a file with an OUTPUT statement, or - Store it in a U-SQL table with an INSERT statement How does a U-SQL Script process Data?
  • 28. DECLARE @in string = "/Samples/Data/SearchLog.tsv"; DECLARE @out string = "/output/result.tsv"; @searchlog = EXTRACT UserId int, Start DateTime, Region string, Query string, Duration int?, Urls string, ClickedUrls string FROM @in USING Extractors.Tsv(); @rs1 = SELECT Start, Region, Duration FROM @searchlog WHERE Region == "en-gb"; @rs1 = SELECT Start, Region, Duration FROM @rs1 WHERE Start >= DateTime.Parse("2012/02/16"); OUTPUT @rs1 TO @out USING Outputters.Tsv(); U-SQL Scripts
  • 29. DEMO – Create Data Lake Stores – Create Data Lake Analytics accounts and connect them to Data Lake Stores – Import data into Azure Data Lake Stores – Run U-SQL jobs in Azure Data Lake Analytics
  • 32. SELECT KNOWLEDGE FROM SQL SERVER Copyright © 2017 SQLschool.gr. All right reserved. PRESENTER MAKES NO WARRANTIES, EXPRESS, IMPLIED OR STATUTORY, AS TO THE INFORMATION IN THIS PRESENTATION