SlideShare a Scribd company logo
© 2015, Amazon Web Services, Inc. or its Affiliates. All rights reserved.
Eva Tse and Daniel Weeks, Netflix
October 2015
BDT303
Running Presto and Spark on the
Netflix
Big Data Platform
What to Expect from the Session
Our big data scale
Our architecture
For Presto and Spark
- Use cases
- Performance
- Contributions
- Deployment on Amazon EMR
- Integration with Netflix infrastructure
Our Biggest Challenge is Scale
Netflix Key Business Metrics
65+ million
members
50 countries 1000+ devices
supported
10 billion
hours / quarter
Our Big Data Scale
Total ~25 PB DW on Amazon S3
Read ~10% DW daily
Write ~10% of read data daily
~ 550 billion events daily
~ 350 active platform users
Global Expansion
200 countries by end of 2016
Architecture Overview
Cloud
apps
Kafka Ursula
Cassandra
Aegisthus
Dimension Data
Event Data
15 min
Daily
AWS
S3
SS Tables
Data Pipelines
Storage Compute Service Tools
AWS
S3
Analytics
ETL
Interactive data exploration
Interactive slice & dice
RT analytics & iterative/ML algo and more ...
Different Big Data Processing Needs
Amazon S3 as our DW
Amazon S3 as Our DW Storage
Amazon S3 as single source of truth (not HDFS)
Designed for 11 9’s durability and 4 9’s availability
Separate compute and storage
Key enablement to
- multiple heterogeneous clusters
- easy upgrade via r/b deployment
S3
What About Performance?
Amazon S3 is a much bigger fleet than your cluster
Offload network load from cluster
Read performance
- Single stage read-only job has 5-10% impact
- Insignificant when amortized over a sequence of stages
Write performance
- Can be faster because Amazon S3 is eventually consistent w/ higher
thruput
Presto
Presto is an open-source, distributed SQL query engine for
running interactive analytic queries against data sources of
all sizes ranging from gigabytes to petabytes
Why We Love Presto?
Hadoop friendly - integration with Hive metastore
Works well on AWS - easy integration with Amazon S3
Scalable - works at petabyte scale
User friendly - ANSI SQL
Open source - and in Java!
Fast
Usage Stats
~3500 queries/day
> 90%
Expanding Presto Use Cases
Data exploration and experimentation
Data validation
Backend for our interactive a/b test analytics application
Reporting
Not ETL (yet?)
Presto Deployment
Our Deployment
Version 0.114
+ patches
+ one non-public patch (Parquet vectorized read integration)
Deployed via bootstrap action on Amazon EMR
Separate clusters from our Hadoop YARN clusters
Not using Hadoop services
Leverage Amazon EMR for cluster management
Two Production Clusters
Resource isolation
Ad hoc cluster
1 coordinator (r3.4xl) + 225 workers (r3.4xl)
Dedicated application cluster
1 coordinator (r3.4xl) + 4 workers + dynamic workers (r3.xl, r3.2xl,
r3.4xl)
Dynamic cluster sizing via Netflix spinnaker API
Dynamic Cluster Sizing
Integration with Netflix Infrastructure
Atlas
Sidecar Coordinator
Amazon EMR Presto Worker
Kafka
Presto cluster
(for data lineage)
(for monitoring)
Queries + users
info
Presto Contributions
Our Contributions
Parquet File Format Support
Schema evolution
Predicate pushdown
Vectorized read**
Complex Types
Various functions for map, array and
struct types
Comparison operators for array and
struct types
Amazon S3 File System
Multi-part upload
AWS instance credentials
AWS role support*
Reliability
Query Optimization
Single distinct -> group by
Joins with similar sub-queries*
Parquet
Columnar file format
Supported across Hive, Pig, Presto, Spark
Performance benefits across different processing engines
Good performance on S3
Majority of our DW is on Parquet FF
RowGroup Metadata x N
row count, size, etc.
Dict Page
Data Page
Data Page
Column Chunk
Data Page
Data Page
Data Page
Column Chunk
Dict Page
Data Page
Data Page
RowGroup x N
Footer
schema, version, etc.
Column Chunk Metadata
encoding,
size,
min, max
Parquet
Column Chunk
Column Chunk Metadata
encoding,
size,
min, max
Column Chunk Metadata
encoding,
size,
min, max
Vectorized Read
Parquet: read column chunks in batches instead of row-by-row
Presto: replace ParquetHiveRecordCursor with ParquetPageSource
Performance improvement up to 2x for Presto
Beneficial for Spark, Hive, and Drill also
Pending parquet-131 commit before we can publish a Presto patch
Predicate Pushdown
Dictionary pushdown
column chunk stats [5, 20]
dictionary page <5,11,18,20>
skip this row group
Statistics pushdown
column chunk stats [20, 30]
skip this row group
Example: SELECT… WHERE abtest_id = 10;
Predicate Pushdown
Works best if data is clustered by predicate columns
Achieves data pruning like Hive partitions w/o the metadata overhead
Can also be implemented in Spark, Hive and Pig
Atlas Analytics Use Case
0
20000
40000
60000
80000
100000
Pushdown No Pushdown
CPU (s)
0
50
100
150
200
250
300
350
Pushdown No Pushdown
Wall-clock Time (s)
0
2000
4000
6000
8000
Pushdown No Pushdown
Rows Processed
(Mils)
0
100
200
300
400
500
Pushdown No Pushdown
Bytes Read (GB)
170x
170x170x
10x
Example query: Analyze 4xx
errors from Genie for a day
High cardinality/selectivity for
app name and metrics name
as predicates
Data staged and clustered by
predicate columns
Stay Tuned…
Two upcoming blog posts on techblog.netflix.com
- Parquet usage @ Netflix Big Data Platform
- Presto + Parquet optimization and performance
Spark
Apache Spark™ is a fast and general engine for large-scale data processing.
Why Spark?
Batch jobs (Pig, Hive)
• ETL jobs
• Reporting and other analysis
Interactive jobs (Presto)
Iterative ML jobs (Spark)
Programmatic use cases
Deployments @ Netflix
Spark on Mesos
• Self-serving AMI
• Full BDAS (Berkeley Data Analytics Stack)
• Online streaming analytics
Spark on YARN
• Spark as a service
• YARN application on Amazon EMR Hadoop
• Offline batch analytics
Version Support
$ spark-shell –ver 1.5 …
s3://…/spark-1.4.tar.gz
s3://…/spark-1.5.tar.gz
s3://…/spark-1.5-custom.tar.gz
s3://…/1.5/spark-defaults.conf
s3://…/h2prod/yarn-site.xml
s3://../h2prod/core-site.xml
…
ConfigurationApplication
Multi-tenancy
Multi-tenancy
Dynamic Allocation on YARN
Optimize for resource utilization
Harness cluster’s scale
Still provide interactive performance
Container
Container
Container Container Container Container Container
Task Execution Model
Container
Task Task TaskTaskTaskTask
Task Task TaskTaskTask
Container
Task
Pending Tasks
Traditional MapReduce
Spark Execution
Persistent
Dynamic Allocation [SPARK-6954]
Cached Data
Spark allows data to be cached
• Interactive reuse of data set
• Iterative usage (ML)
Dynamic allocation
• Removes executors when no tasks are pending
Cached Executor Timeout [SPARK-7955]
val data = sqlContext
.table("dse.admin_genie_job_d”)
.filter($"dateint">=20150601 and $"dateint"<=20150830)
data.persist
data.count
Preemption [SPARK-8167]
Symptom
• Spark tasks randomly fail with “executor lost” error
Cause
• YARN preemption is not graceful
Solution
• Preempted tasks shouldn’t be counted as failures but should be retried
Reading / Processing / Writing
Amazon S3 Listing Optimization
Problem: Metadata is big data
• Tables with millions of partitions
• Partitions with hundreds of files each
Clients take a long time to launch jobs
Input split computation
mapreduce.input.fileinputformat.list-status.num-threads
• The number of threads to use list and fetch block locations for the specified
input paths.
Setting this property in Spark jobs doesn’t help
File listing for partitioned table
Partition path
Seq[RDD]
HadoopRDD
HadoopRDD
HadoopRDD
HadoopRDD
Partition path
Partition path
Partition path
Input dir
Input dir
Input dir
Input dir
Sequentially listing input dirs via S3N file system.
S3N
S3N
S3N
S3N
SPARK-9926, SPARK-10340
Symptom
• Input split computation for partitioned Hive table on Amazon S3 is slow
Cause
• Listing files on a per partition basis is slow
• S3N file system computes data locality hints
Solution
• Bulk list partitions in parallel using AmazonS3Client
• Bypass data locality computation for Amazon S3 objects
Amazon S3 Bulk Listing
Partition path
ParArray[RDD]
HadoopRDD
HadoopRDD
HadoopRDD
HadoopRDD
Partition path
Partition path
Partition path
Input dir
Input dir
Input dir
Input dir
Amazon S3 listing input dirs in parallel via AmazonS3Client
Amazon
S3Client
Performance Improvement
0
2000
4000
6000
8000
10000
12000
14000
16000
1 24 240 720
seconds
# of partitions
1.5 RC2
S3 bulk listing
SELECT * FROM nccp_log WHERE dateint=20150801 and hour=0 LIMIT 10;
Hadoop Output Committer
How it works
• Each task writes output to a temp dir.
• Output committer renames first successful task’s temp dir to final
destination
Challenges with Amazon S3
• Amazon S3 rename is copy and delete (non-atomic)
• Amazon S3 is eventual consistent
Amazon S3 Output Committer
How it works
• Each task writes output to local disk
• Output committer copies first successful task’s output to
Amazon S3
Advantages
• Avoid redundant Amazon S3 copy
• Avoid eventual consistency
• Always write to new paths
Our Contributions
SPARK-6018
SPARK-6662
SPARK-6909
SPARK-6910
SPARK-7037
SPARK-7451
SPARK-7850
SPARK-8355
SPARK-8572
SPARK-8908
SPARK-9270
SPARK-9926
SPARK-10001
SPARK-10340
Next Steps for Netflix Integration
Metrics
Data lineage
Parquet integration
Key Takeaways
Our DW source of truth is on Amazon S3
Run custom Presto and Spark distros on Amazon EMR
• Presto as stand-alone clusters
• Spark co-tenant on Hadoop YARN clusters
We are committed to open source; you can run what we run
What’s Next
On Scaling and Optimizing Infrastructure…
Graceful shrink of Amazon EMR +
Heterogeneous instance groups in Amazon EMR +
Netflix Atlas metrics +
Netflix Spinnaker API =
Load-based expand/shrink of Hadoop YARN clusters
Expand new Presto use cases
Integrate Spark in Netflix big data platform
Explore Spark for ETL use cases
On Presto and Spark…
Remember to complete
your evaluations!
Thank you!
Eva Tse & Daniel Weeks
Office hour: 12:00pm – 2pm Today @
Netflix Booth #326

More Related Content

What's hot

Presto Talk @ Hadoop Summit'15
Presto Talk @ Hadoop Summit'15Presto Talk @ Hadoop Summit'15
Presto Talk @ Hadoop Summit'15
Nezih Yigitbasi
 
Analytics at Scale with Apache Spark on AWS with Jonathan Fritz
Analytics at Scale with Apache Spark on AWS with Jonathan FritzAnalytics at Scale with Apache Spark on AWS with Jonathan Fritz
Analytics at Scale with Apache Spark on AWS with Jonathan Fritz
Databricks
 
(BDT210) Building Scalable Big Data Solutions: Intel & AOL
(BDT210) Building Scalable Big Data Solutions: Intel & AOL(BDT210) Building Scalable Big Data Solutions: Intel & AOL
(BDT210) Building Scalable Big Data Solutions: Intel & AOL
Amazon Web Services
 
AWS Webcast - Amazon Kinesis and Apache Storm
AWS Webcast - Amazon Kinesis and Apache StormAWS Webcast - Amazon Kinesis and Apache Storm
AWS Webcast - Amazon Kinesis and Apache Storm
Amazon Web Services
 
AWS re:Invent 2016: How Amazon S3 Storage Management Helps Optimize Storage a...
AWS re:Invent 2016: How Amazon S3 Storage Management Helps Optimize Storage a...AWS re:Invent 2016: How Amazon S3 Storage Management Helps Optimize Storage a...
AWS re:Invent 2016: How Amazon S3 Storage Management Helps Optimize Storage a...
Amazon Web Services
 
Structure Data 2014: BIG DATA ANALYTICS RE-INVENTED, Ryan Waite
Structure Data 2014: BIG DATA ANALYTICS RE-INVENTED, Ryan WaiteStructure Data 2014: BIG DATA ANALYTICS RE-INVENTED, Ryan Waite
Structure Data 2014: BIG DATA ANALYTICS RE-INVENTED, Ryan Waite
Gigaom
 
SF Big Analytics: Machine Learning with Presto by Christopher Berner
SF Big Analytics: Machine Learning with Presto by Christopher BernerSF Big Analytics: Machine Learning with Presto by Christopher Berner
SF Big Analytics: Machine Learning with Presto by Christopher Berner
Chester Chen
 
Running Fast, Interactive Queries on Petabyte Datasets using Presto - AWS Jul...
Running Fast, Interactive Queries on Petabyte Datasets using Presto - AWS Jul...Running Fast, Interactive Queries on Petabyte Datasets using Presto - AWS Jul...
Running Fast, Interactive Queries on Petabyte Datasets using Presto - AWS Jul...
Amazon Web Services
 
Netflix incloudsmarch8 2011forwiki
Netflix incloudsmarch8 2011forwikiNetflix incloudsmarch8 2011forwiki
Netflix incloudsmarch8 2011forwiki
Kevin McEntee
 
Streaming data analytics (Kinesis, EMR/Spark) - Pop-up Loft Tel Aviv
Streaming data analytics (Kinesis, EMR/Spark) - Pop-up Loft Tel Aviv Streaming data analytics (Kinesis, EMR/Spark) - Pop-up Loft Tel Aviv
Streaming data analytics (Kinesis, EMR/Spark) - Pop-up Loft Tel Aviv
Amazon Web Services
 
Big Data Pipeline and Analytics Platform
Big Data Pipeline and Analytics PlatformBig Data Pipeline and Analytics Platform
Big Data Pipeline and Analytics PlatformSudhir Tonse
 
Lambda architecture
Lambda architectureLambda architecture
Lambda architecture
Szilveszter Molnár
 
Streaming data for real time analysis
Streaming data for real time analysisStreaming data for real time analysis
Streaming data for real time analysis
Amazon Web Services
 
Querying Data Pipeline with AWS Athena
Querying Data Pipeline with AWS AthenaQuerying Data Pipeline with AWS Athena
Querying Data Pipeline with AWS Athena
Yaroslav Tkachenko
 
Lambda Architecture with Spark, Spark Streaming, Kafka, Cassandra, Akka and S...
Lambda Architecture with Spark, Spark Streaming, Kafka, Cassandra, Akka and S...Lambda Architecture with Spark, Spark Streaming, Kafka, Cassandra, Akka and S...
Lambda Architecture with Spark, Spark Streaming, Kafka, Cassandra, Akka and S...
Helena Edelson
 
Kafka Lambda architecture with mirroring
Kafka Lambda architecture with mirroringKafka Lambda architecture with mirroring
Kafka Lambda architecture with mirroringAnant Rustagi
 
The evolution of the big data platform @ Netflix (OSCON 2015)
The evolution of the big data platform @ Netflix (OSCON 2015)The evolution of the big data platform @ Netflix (OSCON 2015)
The evolution of the big data platform @ Netflix (OSCON 2015)
Eva Tse
 
Processing and Analytics
Processing and AnalyticsProcessing and Analytics
Processing and Analytics
Amazon Web Services
 
Sa introduction to big data pipelining with cassandra &amp; spark west mins...
Sa introduction to big data pipelining with cassandra &amp; spark   west mins...Sa introduction to big data pipelining with cassandra &amp; spark   west mins...
Sa introduction to big data pipelining with cassandra &amp; spark west mins...
Simon Ambridge
 
Spark Summit EU talk by John Musser
Spark Summit EU talk by John MusserSpark Summit EU talk by John Musser
Spark Summit EU talk by John Musser
Spark Summit
 

What's hot (20)

Presto Talk @ Hadoop Summit'15
Presto Talk @ Hadoop Summit'15Presto Talk @ Hadoop Summit'15
Presto Talk @ Hadoop Summit'15
 
Analytics at Scale with Apache Spark on AWS with Jonathan Fritz
Analytics at Scale with Apache Spark on AWS with Jonathan FritzAnalytics at Scale with Apache Spark on AWS with Jonathan Fritz
Analytics at Scale with Apache Spark on AWS with Jonathan Fritz
 
(BDT210) Building Scalable Big Data Solutions: Intel & AOL
(BDT210) Building Scalable Big Data Solutions: Intel & AOL(BDT210) Building Scalable Big Data Solutions: Intel & AOL
(BDT210) Building Scalable Big Data Solutions: Intel & AOL
 
AWS Webcast - Amazon Kinesis and Apache Storm
AWS Webcast - Amazon Kinesis and Apache StormAWS Webcast - Amazon Kinesis and Apache Storm
AWS Webcast - Amazon Kinesis and Apache Storm
 
AWS re:Invent 2016: How Amazon S3 Storage Management Helps Optimize Storage a...
AWS re:Invent 2016: How Amazon S3 Storage Management Helps Optimize Storage a...AWS re:Invent 2016: How Amazon S3 Storage Management Helps Optimize Storage a...
AWS re:Invent 2016: How Amazon S3 Storage Management Helps Optimize Storage a...
 
Structure Data 2014: BIG DATA ANALYTICS RE-INVENTED, Ryan Waite
Structure Data 2014: BIG DATA ANALYTICS RE-INVENTED, Ryan WaiteStructure Data 2014: BIG DATA ANALYTICS RE-INVENTED, Ryan Waite
Structure Data 2014: BIG DATA ANALYTICS RE-INVENTED, Ryan Waite
 
SF Big Analytics: Machine Learning with Presto by Christopher Berner
SF Big Analytics: Machine Learning with Presto by Christopher BernerSF Big Analytics: Machine Learning with Presto by Christopher Berner
SF Big Analytics: Machine Learning with Presto by Christopher Berner
 
Running Fast, Interactive Queries on Petabyte Datasets using Presto - AWS Jul...
Running Fast, Interactive Queries on Petabyte Datasets using Presto - AWS Jul...Running Fast, Interactive Queries on Petabyte Datasets using Presto - AWS Jul...
Running Fast, Interactive Queries on Petabyte Datasets using Presto - AWS Jul...
 
Netflix incloudsmarch8 2011forwiki
Netflix incloudsmarch8 2011forwikiNetflix incloudsmarch8 2011forwiki
Netflix incloudsmarch8 2011forwiki
 
Streaming data analytics (Kinesis, EMR/Spark) - Pop-up Loft Tel Aviv
Streaming data analytics (Kinesis, EMR/Spark) - Pop-up Loft Tel Aviv Streaming data analytics (Kinesis, EMR/Spark) - Pop-up Loft Tel Aviv
Streaming data analytics (Kinesis, EMR/Spark) - Pop-up Loft Tel Aviv
 
Big Data Pipeline and Analytics Platform
Big Data Pipeline and Analytics PlatformBig Data Pipeline and Analytics Platform
Big Data Pipeline and Analytics Platform
 
Lambda architecture
Lambda architectureLambda architecture
Lambda architecture
 
Streaming data for real time analysis
Streaming data for real time analysisStreaming data for real time analysis
Streaming data for real time analysis
 
Querying Data Pipeline with AWS Athena
Querying Data Pipeline with AWS AthenaQuerying Data Pipeline with AWS Athena
Querying Data Pipeline with AWS Athena
 
Lambda Architecture with Spark, Spark Streaming, Kafka, Cassandra, Akka and S...
Lambda Architecture with Spark, Spark Streaming, Kafka, Cassandra, Akka and S...Lambda Architecture with Spark, Spark Streaming, Kafka, Cassandra, Akka and S...
Lambda Architecture with Spark, Spark Streaming, Kafka, Cassandra, Akka and S...
 
Kafka Lambda architecture with mirroring
Kafka Lambda architecture with mirroringKafka Lambda architecture with mirroring
Kafka Lambda architecture with mirroring
 
The evolution of the big data platform @ Netflix (OSCON 2015)
The evolution of the big data platform @ Netflix (OSCON 2015)The evolution of the big data platform @ Netflix (OSCON 2015)
The evolution of the big data platform @ Netflix (OSCON 2015)
 
Processing and Analytics
Processing and AnalyticsProcessing and Analytics
Processing and Analytics
 
Sa introduction to big data pipelining with cassandra &amp; spark west mins...
Sa introduction to big data pipelining with cassandra &amp; spark   west mins...Sa introduction to big data pipelining with cassandra &amp; spark   west mins...
Sa introduction to big data pipelining with cassandra &amp; spark west mins...
 
Spark Summit EU talk by John Musser
Spark Summit EU talk by John MusserSpark Summit EU talk by John Musser
Spark Summit EU talk by John Musser
 

Similar to Running Presto and Spark on the Netflix Big Data Platform

(BDT208) A Technical Introduction to Amazon Elastic MapReduce
(BDT208) A Technical Introduction to Amazon Elastic MapReduce(BDT208) A Technical Introduction to Amazon Elastic MapReduce
(BDT208) A Technical Introduction to Amazon Elastic MapReduce
Amazon Web Services
 
Deploying your Data Warehouse on AWS
Deploying your Data Warehouse on AWSDeploying your Data Warehouse on AWS
Deploying your Data Warehouse on AWS
Amazon Web Services
 
Architetture serverless e pattern avanzati per AWS Lambda
Architetture serverless e pattern avanzati per AWS LambdaArchitetture serverless e pattern avanzati per AWS Lambda
Architetture serverless e pattern avanzati per AWS Lambda
Amazon Web Services
 
New Developments in Spark
New Developments in SparkNew Developments in Spark
New Developments in Spark
Databricks
 
IBM Cloud Native Day April 2021: Serverless Data Lake
IBM Cloud Native Day April 2021: Serverless Data LakeIBM Cloud Native Day April 2021: Serverless Data Lake
IBM Cloud Native Day April 2021: Serverless Data Lake
Torsten Steinbach
 
AWS re:Invent 2016: Netflix: Using Amazon S3 as the fabric of our big data ec...
AWS re:Invent 2016: Netflix: Using Amazon S3 as the fabric of our big data ec...AWS re:Invent 2016: Netflix: Using Amazon S3 as the fabric of our big data ec...
AWS re:Invent 2016: Netflix: Using Amazon S3 as the fabric of our big data ec...
Amazon Web Services
 
Interactively Querying Large-scale Datasets on Amazon S3
Interactively Querying Large-scale Datasets on Amazon S3Interactively Querying Large-scale Datasets on Amazon S3
Interactively Querying Large-scale Datasets on Amazon S3
Amazon Web Services
 
Introducing Amazon EMR Release 5.0 - August 2016 Monthly Webinar Series
Introducing Amazon EMR Release 5.0 - August 2016 Monthly Webinar SeriesIntroducing Amazon EMR Release 5.0 - August 2016 Monthly Webinar Series
Introducing Amazon EMR Release 5.0 - August 2016 Monthly Webinar Series
Amazon Web Services
 
AWS glue technical enablement training
AWS glue technical enablement trainingAWS glue technical enablement training
AWS glue technical enablement training
Info Alchemy Corporation
 
What's New in Amazon Aurora
What's New in Amazon AuroraWhat's New in Amazon Aurora
What's New in Amazon Aurora
Amazon Web Services
 
AWS Analytics
AWS AnalyticsAWS Analytics
AWS Analytics
Amazon Web Services
 
London Redshift Meetup - July 2017
London Redshift Meetup - July 2017London Redshift Meetup - July 2017
London Redshift Meetup - July 2017
Pratim Das
 
Best Practices for Using Apache Spark on AWS
Best Practices for Using Apache Spark on AWSBest Practices for Using Apache Spark on AWS
Best Practices for Using Apache Spark on AWS
Amazon Web Services
 
The Nitty Gritty of Advanced Analytics Using Apache Spark in Python
The Nitty Gritty of Advanced Analytics Using Apache Spark in PythonThe Nitty Gritty of Advanced Analytics Using Apache Spark in Python
The Nitty Gritty of Advanced Analytics Using Apache Spark in Python
Miklos Christine
 
Spark + AI Summit 2020 イベント概要
Spark + AI Summit 2020 イベント概要Spark + AI Summit 2020 イベント概要
Spark + AI Summit 2020 イベント概要
Paulo Gutierrez
 
Data analytics master class: predict hotel revenue
Data analytics master class: predict hotel revenueData analytics master class: predict hotel revenue
Data analytics master class: predict hotel revenue
Kris Peeters
 
Producing Spark on YARN for ETL
Producing Spark on YARN for ETLProducing Spark on YARN for ETL
Producing Spark on YARN for ETL
DataWorks Summit/Hadoop Summit
 
Spark on Yarn @ Netflix
Spark on Yarn @ NetflixSpark on Yarn @ Netflix
Spark on Yarn @ Netflix
Nezih Yigitbasi
 
Apache Spark and the Hadoop Ecosystem on AWS
Apache Spark and the Hadoop Ecosystem on AWSApache Spark and the Hadoop Ecosystem on AWS
Apache Spark and the Hadoop Ecosystem on AWS
Amazon Web Services
 
Get Value From Your Data
Get Value From Your DataGet Value From Your Data
Get Value From Your Data
Danilo Poccia
 

Similar to Running Presto and Spark on the Netflix Big Data Platform (20)

(BDT208) A Technical Introduction to Amazon Elastic MapReduce
(BDT208) A Technical Introduction to Amazon Elastic MapReduce(BDT208) A Technical Introduction to Amazon Elastic MapReduce
(BDT208) A Technical Introduction to Amazon Elastic MapReduce
 
Deploying your Data Warehouse on AWS
Deploying your Data Warehouse on AWSDeploying your Data Warehouse on AWS
Deploying your Data Warehouse on AWS
 
Architetture serverless e pattern avanzati per AWS Lambda
Architetture serverless e pattern avanzati per AWS LambdaArchitetture serverless e pattern avanzati per AWS Lambda
Architetture serverless e pattern avanzati per AWS Lambda
 
New Developments in Spark
New Developments in SparkNew Developments in Spark
New Developments in Spark
 
IBM Cloud Native Day April 2021: Serverless Data Lake
IBM Cloud Native Day April 2021: Serverless Data LakeIBM Cloud Native Day April 2021: Serverless Data Lake
IBM Cloud Native Day April 2021: Serverless Data Lake
 
AWS re:Invent 2016: Netflix: Using Amazon S3 as the fabric of our big data ec...
AWS re:Invent 2016: Netflix: Using Amazon S3 as the fabric of our big data ec...AWS re:Invent 2016: Netflix: Using Amazon S3 as the fabric of our big data ec...
AWS re:Invent 2016: Netflix: Using Amazon S3 as the fabric of our big data ec...
 
Interactively Querying Large-scale Datasets on Amazon S3
Interactively Querying Large-scale Datasets on Amazon S3Interactively Querying Large-scale Datasets on Amazon S3
Interactively Querying Large-scale Datasets on Amazon S3
 
Introducing Amazon EMR Release 5.0 - August 2016 Monthly Webinar Series
Introducing Amazon EMR Release 5.0 - August 2016 Monthly Webinar SeriesIntroducing Amazon EMR Release 5.0 - August 2016 Monthly Webinar Series
Introducing Amazon EMR Release 5.0 - August 2016 Monthly Webinar Series
 
AWS glue technical enablement training
AWS glue technical enablement trainingAWS glue technical enablement training
AWS glue technical enablement training
 
What's New in Amazon Aurora
What's New in Amazon AuroraWhat's New in Amazon Aurora
What's New in Amazon Aurora
 
AWS Analytics
AWS AnalyticsAWS Analytics
AWS Analytics
 
London Redshift Meetup - July 2017
London Redshift Meetup - July 2017London Redshift Meetup - July 2017
London Redshift Meetup - July 2017
 
Best Practices for Using Apache Spark on AWS
Best Practices for Using Apache Spark on AWSBest Practices for Using Apache Spark on AWS
Best Practices for Using Apache Spark on AWS
 
The Nitty Gritty of Advanced Analytics Using Apache Spark in Python
The Nitty Gritty of Advanced Analytics Using Apache Spark in PythonThe Nitty Gritty of Advanced Analytics Using Apache Spark in Python
The Nitty Gritty of Advanced Analytics Using Apache Spark in Python
 
Spark + AI Summit 2020 イベント概要
Spark + AI Summit 2020 イベント概要Spark + AI Summit 2020 イベント概要
Spark + AI Summit 2020 イベント概要
 
Data analytics master class: predict hotel revenue
Data analytics master class: predict hotel revenueData analytics master class: predict hotel revenue
Data analytics master class: predict hotel revenue
 
Producing Spark on YARN for ETL
Producing Spark on YARN for ETLProducing Spark on YARN for ETL
Producing Spark on YARN for ETL
 
Spark on Yarn @ Netflix
Spark on Yarn @ NetflixSpark on Yarn @ Netflix
Spark on Yarn @ Netflix
 
Apache Spark and the Hadoop Ecosystem on AWS
Apache Spark and the Hadoop Ecosystem on AWSApache Spark and the Hadoop Ecosystem on AWS
Apache Spark and the Hadoop Ecosystem on AWS
 
Get Value From Your Data
Get Value From Your DataGet Value From Your Data
Get Value From Your Data
 

Recently uploaded

Strategies for Successful Data Migration Tools.pptx
Strategies for Successful Data Migration Tools.pptxStrategies for Successful Data Migration Tools.pptx
Strategies for Successful Data Migration Tools.pptx
varshanayak241
 
Globus Compute Introduction - GlobusWorld 2024
Globus Compute Introduction - GlobusWorld 2024Globus Compute Introduction - GlobusWorld 2024
Globus Compute Introduction - GlobusWorld 2024
Globus
 
Large Language Models and the End of Programming
Large Language Models and the End of ProgrammingLarge Language Models and the End of Programming
Large Language Models and the End of Programming
Matt Welsh
 
Vitthal Shirke Microservices Resume Montevideo
Vitthal Shirke Microservices Resume MontevideoVitthal Shirke Microservices Resume Montevideo
Vitthal Shirke Microservices Resume Montevideo
Vitthal Shirke
 
A Comprehensive Look at Generative AI in Retail App Testing.pdf
A Comprehensive Look at Generative AI in Retail App Testing.pdfA Comprehensive Look at Generative AI in Retail App Testing.pdf
A Comprehensive Look at Generative AI in Retail App Testing.pdf
kalichargn70th171
 
In 2015, I used to write extensions for Joomla, WordPress, phpBB3, etc and I ...
In 2015, I used to write extensions for Joomla, WordPress, phpBB3, etc and I ...In 2015, I used to write extensions for Joomla, WordPress, phpBB3, etc and I ...
In 2015, I used to write extensions for Joomla, WordPress, phpBB3, etc and I ...
Juraj Vysvader
 
TROUBLESHOOTING 9 TYPES OF OUTOFMEMORYERROR
TROUBLESHOOTING 9 TYPES OF OUTOFMEMORYERRORTROUBLESHOOTING 9 TYPES OF OUTOFMEMORYERROR
TROUBLESHOOTING 9 TYPES OF OUTOFMEMORYERROR
Tier1 app
 
De mooiste recreatieve routes ontdekken met RouteYou en FME
De mooiste recreatieve routes ontdekken met RouteYou en FMEDe mooiste recreatieve routes ontdekken met RouteYou en FME
De mooiste recreatieve routes ontdekken met RouteYou en FME
Jelle | Nordend
 
Quarkus Hidden and Forbidden Extensions
Quarkus Hidden and Forbidden ExtensionsQuarkus Hidden and Forbidden Extensions
Quarkus Hidden and Forbidden Extensions
Max Andersen
 
Why React Native as a Strategic Advantage for Startup Innovation.pdf
Why React Native as a Strategic Advantage for Startup Innovation.pdfWhy React Native as a Strategic Advantage for Startup Innovation.pdf
Why React Native as a Strategic Advantage for Startup Innovation.pdf
ayushiqss
 
Field Employee Tracking System| MiTrack App| Best Employee Tracking Solution|...
Field Employee Tracking System| MiTrack App| Best Employee Tracking Solution|...Field Employee Tracking System| MiTrack App| Best Employee Tracking Solution|...
Field Employee Tracking System| MiTrack App| Best Employee Tracking Solution|...
informapgpstrackings
 
Innovating Inference - Remote Triggering of Large Language Models on HPC Clus...
Innovating Inference - Remote Triggering of Large Language Models on HPC Clus...Innovating Inference - Remote Triggering of Large Language Models on HPC Clus...
Innovating Inference - Remote Triggering of Large Language Models on HPC Clus...
Globus
 
GlobusWorld 2024 Opening Keynote session
GlobusWorld 2024 Opening Keynote sessionGlobusWorld 2024 Opening Keynote session
GlobusWorld 2024 Opening Keynote session
Globus
 
Into the Box 2024 - Keynote Day 2 Slides.pdf
Into the Box 2024 - Keynote Day 2 Slides.pdfInto the Box 2024 - Keynote Day 2 Slides.pdf
Into the Box 2024 - Keynote Day 2 Slides.pdf
Ortus Solutions, Corp
 
Beyond Event Sourcing - Embracing CRUD for Wix Platform - Java.IL
Beyond Event Sourcing - Embracing CRUD for Wix Platform - Java.ILBeyond Event Sourcing - Embracing CRUD for Wix Platform - Java.IL
Beyond Event Sourcing - Embracing CRUD for Wix Platform - Java.IL
Natan Silnitsky
 
Cyaniclab : Software Development Agency Portfolio.pdf
Cyaniclab : Software Development Agency Portfolio.pdfCyaniclab : Software Development Agency Portfolio.pdf
Cyaniclab : Software Development Agency Portfolio.pdf
Cyanic lab
 
Webinar: Salesforce Document Management 2.0 - Smarter, Faster, Better
Webinar: Salesforce Document Management 2.0 - Smarter, Faster, BetterWebinar: Salesforce Document Management 2.0 - Smarter, Faster, Better
Webinar: Salesforce Document Management 2.0 - Smarter, Faster, Better
XfilesPro
 
Exploring Innovations in Data Repository Solutions - Insights from the U.S. G...
Exploring Innovations in Data Repository Solutions - Insights from the U.S. G...Exploring Innovations in Data Repository Solutions - Insights from the U.S. G...
Exploring Innovations in Data Repository Solutions - Insights from the U.S. G...
Globus
 
Advanced Flow Concepts Every Developer Should Know
Advanced Flow Concepts Every Developer Should KnowAdvanced Flow Concepts Every Developer Should Know
Advanced Flow Concepts Every Developer Should Know
Peter Caitens
 
Corporate Management | Session 3 of 3 | Tendenci AMS
Corporate Management | Session 3 of 3 | Tendenci AMSCorporate Management | Session 3 of 3 | Tendenci AMS
Corporate Management | Session 3 of 3 | Tendenci AMS
Tendenci - The Open Source AMS (Association Management Software)
 

Recently uploaded (20)

Strategies for Successful Data Migration Tools.pptx
Strategies for Successful Data Migration Tools.pptxStrategies for Successful Data Migration Tools.pptx
Strategies for Successful Data Migration Tools.pptx
 
Globus Compute Introduction - GlobusWorld 2024
Globus Compute Introduction - GlobusWorld 2024Globus Compute Introduction - GlobusWorld 2024
Globus Compute Introduction - GlobusWorld 2024
 
Large Language Models and the End of Programming
Large Language Models and the End of ProgrammingLarge Language Models and the End of Programming
Large Language Models and the End of Programming
 
Vitthal Shirke Microservices Resume Montevideo
Vitthal Shirke Microservices Resume MontevideoVitthal Shirke Microservices Resume Montevideo
Vitthal Shirke Microservices Resume Montevideo
 
A Comprehensive Look at Generative AI in Retail App Testing.pdf
A Comprehensive Look at Generative AI in Retail App Testing.pdfA Comprehensive Look at Generative AI in Retail App Testing.pdf
A Comprehensive Look at Generative AI in Retail App Testing.pdf
 
In 2015, I used to write extensions for Joomla, WordPress, phpBB3, etc and I ...
In 2015, I used to write extensions for Joomla, WordPress, phpBB3, etc and I ...In 2015, I used to write extensions for Joomla, WordPress, phpBB3, etc and I ...
In 2015, I used to write extensions for Joomla, WordPress, phpBB3, etc and I ...
 
TROUBLESHOOTING 9 TYPES OF OUTOFMEMORYERROR
TROUBLESHOOTING 9 TYPES OF OUTOFMEMORYERRORTROUBLESHOOTING 9 TYPES OF OUTOFMEMORYERROR
TROUBLESHOOTING 9 TYPES OF OUTOFMEMORYERROR
 
De mooiste recreatieve routes ontdekken met RouteYou en FME
De mooiste recreatieve routes ontdekken met RouteYou en FMEDe mooiste recreatieve routes ontdekken met RouteYou en FME
De mooiste recreatieve routes ontdekken met RouteYou en FME
 
Quarkus Hidden and Forbidden Extensions
Quarkus Hidden and Forbidden ExtensionsQuarkus Hidden and Forbidden Extensions
Quarkus Hidden and Forbidden Extensions
 
Why React Native as a Strategic Advantage for Startup Innovation.pdf
Why React Native as a Strategic Advantage for Startup Innovation.pdfWhy React Native as a Strategic Advantage for Startup Innovation.pdf
Why React Native as a Strategic Advantage for Startup Innovation.pdf
 
Field Employee Tracking System| MiTrack App| Best Employee Tracking Solution|...
Field Employee Tracking System| MiTrack App| Best Employee Tracking Solution|...Field Employee Tracking System| MiTrack App| Best Employee Tracking Solution|...
Field Employee Tracking System| MiTrack App| Best Employee Tracking Solution|...
 
Innovating Inference - Remote Triggering of Large Language Models on HPC Clus...
Innovating Inference - Remote Triggering of Large Language Models on HPC Clus...Innovating Inference - Remote Triggering of Large Language Models on HPC Clus...
Innovating Inference - Remote Triggering of Large Language Models on HPC Clus...
 
GlobusWorld 2024 Opening Keynote session
GlobusWorld 2024 Opening Keynote sessionGlobusWorld 2024 Opening Keynote session
GlobusWorld 2024 Opening Keynote session
 
Into the Box 2024 - Keynote Day 2 Slides.pdf
Into the Box 2024 - Keynote Day 2 Slides.pdfInto the Box 2024 - Keynote Day 2 Slides.pdf
Into the Box 2024 - Keynote Day 2 Slides.pdf
 
Beyond Event Sourcing - Embracing CRUD for Wix Platform - Java.IL
Beyond Event Sourcing - Embracing CRUD for Wix Platform - Java.ILBeyond Event Sourcing - Embracing CRUD for Wix Platform - Java.IL
Beyond Event Sourcing - Embracing CRUD for Wix Platform - Java.IL
 
Cyaniclab : Software Development Agency Portfolio.pdf
Cyaniclab : Software Development Agency Portfolio.pdfCyaniclab : Software Development Agency Portfolio.pdf
Cyaniclab : Software Development Agency Portfolio.pdf
 
Webinar: Salesforce Document Management 2.0 - Smarter, Faster, Better
Webinar: Salesforce Document Management 2.0 - Smarter, Faster, BetterWebinar: Salesforce Document Management 2.0 - Smarter, Faster, Better
Webinar: Salesforce Document Management 2.0 - Smarter, Faster, Better
 
Exploring Innovations in Data Repository Solutions - Insights from the U.S. G...
Exploring Innovations in Data Repository Solutions - Insights from the U.S. G...Exploring Innovations in Data Repository Solutions - Insights from the U.S. G...
Exploring Innovations in Data Repository Solutions - Insights from the U.S. G...
 
Advanced Flow Concepts Every Developer Should Know
Advanced Flow Concepts Every Developer Should KnowAdvanced Flow Concepts Every Developer Should Know
Advanced Flow Concepts Every Developer Should Know
 
Corporate Management | Session 3 of 3 | Tendenci AMS
Corporate Management | Session 3 of 3 | Tendenci AMSCorporate Management | Session 3 of 3 | Tendenci AMS
Corporate Management | Session 3 of 3 | Tendenci AMS
 

Running Presto and Spark on the Netflix Big Data Platform

  • 1. © 2015, Amazon Web Services, Inc. or its Affiliates. All rights reserved. Eva Tse and Daniel Weeks, Netflix October 2015 BDT303 Running Presto and Spark on the Netflix Big Data Platform
  • 2. What to Expect from the Session Our big data scale Our architecture For Presto and Spark - Use cases - Performance - Contributions - Deployment on Amazon EMR - Integration with Netflix infrastructure
  • 3.
  • 4.
  • 5.
  • 6.
  • 8. Netflix Key Business Metrics 65+ million members 50 countries 1000+ devices supported 10 billion hours / quarter
  • 9. Our Big Data Scale Total ~25 PB DW on Amazon S3 Read ~10% DW daily Write ~10% of read data daily ~ 550 billion events daily ~ 350 active platform users
  • 12. Cloud apps Kafka Ursula Cassandra Aegisthus Dimension Data Event Data 15 min Daily AWS S3 SS Tables Data Pipelines
  • 13. Storage Compute Service Tools AWS S3
  • 14. Analytics ETL Interactive data exploration Interactive slice & dice RT analytics & iterative/ML algo and more ... Different Big Data Processing Needs
  • 15. Amazon S3 as our DW
  • 16. Amazon S3 as Our DW Storage Amazon S3 as single source of truth (not HDFS) Designed for 11 9’s durability and 4 9’s availability Separate compute and storage Key enablement to - multiple heterogeneous clusters - easy upgrade via r/b deployment S3
  • 17. What About Performance? Amazon S3 is a much bigger fleet than your cluster Offload network load from cluster Read performance - Single stage read-only job has 5-10% impact - Insignificant when amortized over a sequence of stages Write performance - Can be faster because Amazon S3 is eventually consistent w/ higher thruput
  • 19. Presto is an open-source, distributed SQL query engine for running interactive analytic queries against data sources of all sizes ranging from gigabytes to petabytes
  • 20. Why We Love Presto? Hadoop friendly - integration with Hive metastore Works well on AWS - easy integration with Amazon S3 Scalable - works at petabyte scale User friendly - ANSI SQL Open source - and in Java! Fast
  • 21.
  • 23. Expanding Presto Use Cases Data exploration and experimentation Data validation Backend for our interactive a/b test analytics application Reporting Not ETL (yet?)
  • 25. Our Deployment Version 0.114 + patches + one non-public patch (Parquet vectorized read integration) Deployed via bootstrap action on Amazon EMR Separate clusters from our Hadoop YARN clusters Not using Hadoop services Leverage Amazon EMR for cluster management
  • 26. Two Production Clusters Resource isolation Ad hoc cluster 1 coordinator (r3.4xl) + 225 workers (r3.4xl) Dedicated application cluster 1 coordinator (r3.4xl) + 4 workers + dynamic workers (r3.xl, r3.2xl, r3.4xl) Dynamic cluster sizing via Netflix spinnaker API
  • 28. Integration with Netflix Infrastructure Atlas Sidecar Coordinator Amazon EMR Presto Worker Kafka Presto cluster (for data lineage) (for monitoring) Queries + users info
  • 30. Our Contributions Parquet File Format Support Schema evolution Predicate pushdown Vectorized read** Complex Types Various functions for map, array and struct types Comparison operators for array and struct types Amazon S3 File System Multi-part upload AWS instance credentials AWS role support* Reliability Query Optimization Single distinct -> group by Joins with similar sub-queries*
  • 31. Parquet Columnar file format Supported across Hive, Pig, Presto, Spark Performance benefits across different processing engines Good performance on S3 Majority of our DW is on Parquet FF
  • 32. RowGroup Metadata x N row count, size, etc. Dict Page Data Page Data Page Column Chunk Data Page Data Page Data Page Column Chunk Dict Page Data Page Data Page RowGroup x N Footer schema, version, etc. Column Chunk Metadata encoding, size, min, max Parquet Column Chunk Column Chunk Metadata encoding, size, min, max Column Chunk Metadata encoding, size, min, max
  • 33. Vectorized Read Parquet: read column chunks in batches instead of row-by-row Presto: replace ParquetHiveRecordCursor with ParquetPageSource Performance improvement up to 2x for Presto Beneficial for Spark, Hive, and Drill also Pending parquet-131 commit before we can publish a Presto patch
  • 34. Predicate Pushdown Dictionary pushdown column chunk stats [5, 20] dictionary page <5,11,18,20> skip this row group Statistics pushdown column chunk stats [20, 30] skip this row group Example: SELECT… WHERE abtest_id = 10;
  • 35. Predicate Pushdown Works best if data is clustered by predicate columns Achieves data pruning like Hive partitions w/o the metadata overhead Can also be implemented in Spark, Hive and Pig
  • 36. Atlas Analytics Use Case 0 20000 40000 60000 80000 100000 Pushdown No Pushdown CPU (s) 0 50 100 150 200 250 300 350 Pushdown No Pushdown Wall-clock Time (s) 0 2000 4000 6000 8000 Pushdown No Pushdown Rows Processed (Mils) 0 100 200 300 400 500 Pushdown No Pushdown Bytes Read (GB) 170x 170x170x 10x Example query: Analyze 4xx errors from Genie for a day High cardinality/selectivity for app name and metrics name as predicates Data staged and clustered by predicate columns
  • 37. Stay Tuned… Two upcoming blog posts on techblog.netflix.com - Parquet usage @ Netflix Big Data Platform - Presto + Parquet optimization and performance
  • 38. Spark
  • 39. Apache Spark™ is a fast and general engine for large-scale data processing.
  • 40. Why Spark? Batch jobs (Pig, Hive) • ETL jobs • Reporting and other analysis Interactive jobs (Presto) Iterative ML jobs (Spark) Programmatic use cases
  • 41. Deployments @ Netflix Spark on Mesos • Self-serving AMI • Full BDAS (Berkeley Data Analytics Stack) • Online streaming analytics Spark on YARN • Spark as a service • YARN application on Amazon EMR Hadoop • Offline batch analytics
  • 42. Version Support $ spark-shell –ver 1.5 … s3://…/spark-1.4.tar.gz s3://…/spark-1.5.tar.gz s3://…/spark-1.5-custom.tar.gz s3://…/1.5/spark-defaults.conf s3://…/h2prod/yarn-site.xml s3://../h2prod/core-site.xml … ConfigurationApplication
  • 45. Dynamic Allocation on YARN Optimize for resource utilization Harness cluster’s scale Still provide interactive performance
  • 46. Container Container Container Container Container Container Container Task Execution Model Container Task Task TaskTaskTaskTask Task Task TaskTaskTask Container Task Pending Tasks Traditional MapReduce Spark Execution Persistent
  • 48. Cached Data Spark allows data to be cached • Interactive reuse of data set • Iterative usage (ML) Dynamic allocation • Removes executors when no tasks are pending
  • 49. Cached Executor Timeout [SPARK-7955] val data = sqlContext .table("dse.admin_genie_job_d”) .filter($"dateint">=20150601 and $"dateint"<=20150830) data.persist data.count
  • 50. Preemption [SPARK-8167] Symptom • Spark tasks randomly fail with “executor lost” error Cause • YARN preemption is not graceful Solution • Preempted tasks shouldn’t be counted as failures but should be retried
  • 51. Reading / Processing / Writing
  • 52. Amazon S3 Listing Optimization Problem: Metadata is big data • Tables with millions of partitions • Partitions with hundreds of files each Clients take a long time to launch jobs
  • 53. Input split computation mapreduce.input.fileinputformat.list-status.num-threads • The number of threads to use list and fetch block locations for the specified input paths. Setting this property in Spark jobs doesn’t help
  • 54. File listing for partitioned table Partition path Seq[RDD] HadoopRDD HadoopRDD HadoopRDD HadoopRDD Partition path Partition path Partition path Input dir Input dir Input dir Input dir Sequentially listing input dirs via S3N file system. S3N S3N S3N S3N
  • 55. SPARK-9926, SPARK-10340 Symptom • Input split computation for partitioned Hive table on Amazon S3 is slow Cause • Listing files on a per partition basis is slow • S3N file system computes data locality hints Solution • Bulk list partitions in parallel using AmazonS3Client • Bypass data locality computation for Amazon S3 objects
  • 56. Amazon S3 Bulk Listing Partition path ParArray[RDD] HadoopRDD HadoopRDD HadoopRDD HadoopRDD Partition path Partition path Partition path Input dir Input dir Input dir Input dir Amazon S3 listing input dirs in parallel via AmazonS3Client Amazon S3Client
  • 57. Performance Improvement 0 2000 4000 6000 8000 10000 12000 14000 16000 1 24 240 720 seconds # of partitions 1.5 RC2 S3 bulk listing SELECT * FROM nccp_log WHERE dateint=20150801 and hour=0 LIMIT 10;
  • 58. Hadoop Output Committer How it works • Each task writes output to a temp dir. • Output committer renames first successful task’s temp dir to final destination Challenges with Amazon S3 • Amazon S3 rename is copy and delete (non-atomic) • Amazon S3 is eventual consistent
  • 59. Amazon S3 Output Committer How it works • Each task writes output to local disk • Output committer copies first successful task’s output to Amazon S3 Advantages • Avoid redundant Amazon S3 copy • Avoid eventual consistency • Always write to new paths
  • 61. Next Steps for Netflix Integration Metrics Data lineage Parquet integration
  • 63. Our DW source of truth is on Amazon S3 Run custom Presto and Spark distros on Amazon EMR • Presto as stand-alone clusters • Spark co-tenant on Hadoop YARN clusters We are committed to open source; you can run what we run
  • 65. On Scaling and Optimizing Infrastructure… Graceful shrink of Amazon EMR + Heterogeneous instance groups in Amazon EMR + Netflix Atlas metrics + Netflix Spinnaker API = Load-based expand/shrink of Hadoop YARN clusters
  • 66. Expand new Presto use cases Integrate Spark in Netflix big data platform Explore Spark for ETL use cases On Presto and Spark…
  • 68. Thank you! Eva Tse & Daniel Weeks Office hour: 12:00pm – 2pm Today @ Netflix Booth #326

Editor's Notes

  1. .
  2. Change title of slides
  3. Auto expand shrink