SlideShare a Scribd company logo
Building a Data Lake on AWS
Johnathon Meichtry, Principal Solutions Architect
Amazon Web Services
STORAGE
COMPUTE
But customers have additional requirementsโ€ฆ
The Rise of โ€œBig Dataโ€
Enterprise
data warehouse
Amazon
EMR
Amazon
S3
STORAGE
COMPUTE
COMPUTE
COMPUTE
COMPUTE
COMPUTE
COMPUTE
COMPUTE
COMPUTECOMPUTE
COMPUTE
Comparison of a Data Lake to an Enterprise Data Warehouse
Complementary to EDW (not replacement) Data lake can be source for EDW
Schema on read (no predefined schemas) Schema on write (predefined schemas)
Structured/semi-structured/Unstructured data Structured data only
Fast ingestion of new data/content Time consuming to introduce new content
Data Science + Prediction/Advanced Analytics + BI
use cases
BI use cases only (no prediction/advanced analytics)
Data at low level of detail/granularity Data at summary/aggregated level of detail
Loosely defined SLAs Tight SLAs (production schedules)
Flexibility in tools (open source/tools for advanced
analytics)
Limited flexibility in tools (SQL only)
Enterprise DWEMR S3
EMR S3
The New Problem
Enterprise
data warehouse
โ‰ 
Which system has my data?
How can I do machine
learning against the DW?
I built this in Hive, can we get
it into the Finance reports?
These sources are giving
different resultsโ€ฆ
But I implemented the
algorithm in Anacondaโ€ฆ
Dive Into The Data Lake
Enterprise
data warehouseEMR S3
Load Cleansed Data
Export Computed Aggregates
Ingest any data
Data cleansing
Data catalogue
Trend analysis
Machine learning
Structured analysis
Common access tools
Efficient aggregation
Structured business rules
Components of a Data Lake
Storage & Streams
Catalogue & Search
Entitlements
API & UI
STORAGE
High durability
Stores raw data from input sources
Support for any type of data
Low cost
Storage & Streams
Catalogue & Search
Entitlements
API & UI
Amazon Simple Storage Service
Highly scalable object storage for the Internet
1 byte to 5 TB in size
Designed for 99.999999999% durability, 99.99%
availability
Regional service, no single points of failure
Server side encryption
Key Management Service integration
True object storage
Compute Storage
AWS Global Infrastructure
Database
App Services
Deployment & Administration
Networking
Analytics
Storage Lifecycle Integration
S3 โ€“ Standard S3 โ€“ Infrequent Access Amazon Glacier
Consider Different Types of Data
Unstructured
โ€ข Store native file format (logs, dump files, whatever)
โ€ข Compress with a streaming codec (LZO, Snappy)
Semi-structured - JSON, XML files, etc.
โ€ข Consider evolution ability of the data schema (Avro)
โ€ข Store the schema for the data as a file attribute (metadata/tag)
Structured
โ€ข Lots of data is CSV!
โ€ข Columnar storage (Orc, Parquet)
STREAMING
Streaming ingest of feed data
Provides the ability to consume any
dataset as a stream
Facilitates low latency analytics
Storage & Streams
Catalogue & Search
Entitlements
API & UI
Amazon Kinesis
Managed service for real time big data processing
Create streams to produce & consume data
Elastically add and remove shards for performance
Use Amazon Kinesis Worker Library to process data
Integration with S3, Amazon Redshift, and DynamoDB
Compute Storage
AWS Global Infrastructure
Database
App Services
Deployment & Administration
Networking
Analytics
Data
Sources
AWSEndpoint
Data
Sources
Data
Sources
Data
Sources
S3
App.1
[Archive/
Ingestion]
App.2
[Sliding
Window
Analysis]
App.3
[Data
Loading]
App.4
[Event
Processing
Systems]
DynamoDB
Amazon Redshift
Data
Sources
Availability
Zone
Shard 1
Shard 2
Shard N
Availability
Zone
Availability
Zone
Amazon Kinesis Architecture
Streaming Storage Integration
Object store
Amazon S3
Streaming store
Amazon
Kinesis
Analytics applications
Read & write file dataRead & write to streams
Archive
stream
Replay
history
CATALOGUE & SEARCH
Metadata lake
Used for summary statistics and data
Classification management
Simplified model for data discovery &
governance
Storage & Streams
Catalogue & Search
Entitlements
API & UI
Data Catalogue โ€“ Metadata Index
โ€ข Stores data about your Amazon S3 storage environment
โ€ข Total size & count of objects by prefix, data classification,
refresh schedule, object version information
โ€ข Amazon S3 events processed by Lambda function
โ€ข DynamoDB metadata tables store required attributes
Amazon DynamoDB
Provisioned throughput NoSQL database
Fast, predictable, configurable performance
Fully distributed, fault tolerant HA architecture
Integration with Amazon EMR & Hive
Amazon
RDS
Amazon
DynamoD
B
Amazon
Redshift
Amazon
ElastiCache
Managed NoSQL
Compute Storage
AWS Global Infrastructure
Database
App Services
Deployment & Administration
Networking
Analytics
AWS Lambda
Fully-managed event processor
Node.js or Java, integrated AWS SDK
Natively compile & install any Node.js modules
Specify runtime RAM & timeout
Automatically scaled to support event volume
Events from Amazon S3, Amazon SNS, Amazon
DynamoDB, Amazon Kinesis, & AWS Lambda
Integrated CloudWatch logging
Compute Storage
AWS Global Infrastructure
Database
App Services
Deployment & Administration
Networking
Analytics
Serverless Compute
Data Catalogue โ€“ Building Search Index
โ€ข Enable DynamoDB
Update Stream for
metadata index table
โ€ข Additional AWS
Lambda function reads
Update Stream and
extracts index fields
from S3 object
โ€ข Update to search
domain
Catalogue & Search Architecture
ENTITLEMENTS
Encryption
Authentication
Authorisation
Chargeback
Quotas
Data masking
Regional restrictions
Storage & Streams
Catalogue & Search
Entitlements
API & UI
IAM Policy Language
Example: Allow a user to access a private part of the data lake
{
"Version": "2012-10-17",
"Statement": [
{
"Action": ["s3:ListBucket"],
"Effect": "Allow",
"Resource": ["arn:aws:s3:::mydatalake"],
"Condition": {"StringLike": {"s3:prefix": ["${aws:username}/*"]}}
},
{
"Action": [
"s3:GetObject",
"s3:PutObject"
],
"Effect": "Allow",
"Resource": ["arn:aws:s3:::mydatalake/${aws:username}/*"]
}
]
}
IAM Federation
โ€ข IAM allows federation to Active
Directory and other OpenID
providers (Amazon, Facebook,
Google)
โ€ข AWS Directory Service provides
an AD Connector which can
automate federated connectivity
to ADFS
IAM
Users
AWS
Directory
Service
AD Connector
Direct
Connect
Hardware
VPN
Data Encryption
AWS CloudHSM
Dedicated Tenancy SafeNet Luna SA HSM
Device
Common Criteria EAL4+, NIST FIPS 140-2
AWS Key Management Service
Automated key rotation & auditing
Integration with other AWS services
AWS server side encryption
AWS managed key infrastructure
Entitlements โ€“ Access to Encryption Keys
Customer
Master Key
Customer
Data Keys
Ciphertext
Key
Plaintext
Key
IAM Temporary
Credential
Security Token
Service
MyData
MyData
S3
S3 Object
โ€ฆ
Name: MyData
Key: Ciphertext Key
โ€ฆ
Secure Data Flow
IAM
Amazon S3
API Gateway
Users
Temporary
Credential
Temporary
Credential
s3://mydatalake/${YYY-MM-DD}/
${resource}/${resourceID}
Encrypted
Data
Metadata
Index -
DynamoDB
TVM - Elastic
Beanstalk
Security Token
Service
API & UI
Exposes the data lake to customers
Programmatically query catalogue
Expose search API
Ensures that entitlements are respected
Storage & Streams
Catalogue & Search
Entitlements
API & UI
Amazon API Gateway
Host multiple versions and stages of APIs
Create and distribute API keys to developers
Leverage AWS Sigv4 to authorize access to APIs
Throttle and monitor requests to protect the backend
Leverages AWS Lambda
An API Call Flow
Internet
Mobile Apps
Websites
Services
API
Gateway
AWS Lambda
functions
AWS
API Gateway
cache
Endpoints on
Amazon EC2
Any other publicly
accessible endpoint
Amazon
CloudWatch
monitoring
Amazon
CloudFront
API & UI Architecture
API Gateway
UI - Elastic
Beanstalk
AWS Lambda Metadata IndexUsers
IAM
TVM - Elastic
Beanstalk
Storage & Streams
Amazon
Kinesis
Amazon S3 Amazon Glacier
Entitlements
IAM
Encrypted
Data
Security Token
Service
Data Catalogue & Search
AWS Lambda
Search
Index
Metadata
Index
API & UI
API GatewayUsers UI - Elastic
Beanstalk
TVM - Elastic
Beanstalk
KMS
Online Labs & Training
Gain confidence and hands-on
experience with AWS.
Watch free Instructional Videos and
explore Self-Paced Labs
Instructor Led Classes
Learn how to design, deploy and
operate highly available, cost-effective
and secure applications on AWS in
courses led by qualified AWS
instructors
Validate your technical expertise
with AWS and use practice
exams to help you prepare for
AWS Certification
AWS Certification
More info at http://aws.amazon.com/training
Thank You for Attending AWS Innovate
We hope you found it interesting!
Do provide us with your feedback for the session and complete the feedback form.
Let us know your thoughts of todayโ€™s event and how we can improve the event
experience for you in the future.

More Related Content

What's hot

AWS re:Invent 2016: Workshop: Addressing Your Business Needs with AWS (ARC210)
AWS re:Invent 2016: Workshop: Addressing Your Business Needs with AWS (ARC210)AWS re:Invent 2016: Workshop: Addressing Your Business Needs with AWS (ARC210)
AWS re:Invent 2016: Workshop: Addressing Your Business Needs with AWS (ARC210)
Amazon Web Services
ย 
AWS re:Invent 2016: High Performance Cinematic Production in the Cloud (MAE304)
AWS re:Invent 2016: High Performance Cinematic Production in the Cloud (MAE304)AWS re:Invent 2016: High Performance Cinematic Production in the Cloud (MAE304)
AWS re:Invent 2016: High Performance Cinematic Production in the Cloud (MAE304)
Amazon Web Services
ย 
ENT201 A Tale of Two Pizzas: Accelerating Software Delivery with AWS Develope...
ENT201 A Tale of Two Pizzas: Accelerating Software Delivery with AWS Develope...ENT201 A Tale of Two Pizzas: Accelerating Software Delivery with AWS Develope...
ENT201 A Tale of Two Pizzas: Accelerating Software Delivery with AWS Develope...
Amazon Web Services
ย 
Being Well Architected in the Cloud (Updated)
Being Well Architected in the Cloud (Updated)Being Well Architected in the Cloud (Updated)
Being Well Architected in the Cloud (Updated)
Adrian Hornsby
ย 
BDA402 Deep Dive: Log Analytics with Amazon Elasticsearch Service
BDA402 Deep Dive: Log Analytics with Amazon Elasticsearch ServiceBDA402 Deep Dive: Log Analytics with Amazon Elasticsearch Service
BDA402 Deep Dive: Log Analytics with Amazon Elasticsearch Service
Amazon Web Services
ย 
Serverless Big Data Analytics with Amazon Athena and Amazon Quicksight - May ...
Serverless Big Data Analytics with Amazon Athena and Amazon Quicksight - May ...Serverless Big Data Analytics with Amazon Athena and Amazon Quicksight - May ...
Serverless Big Data Analytics with Amazon Athena and Amazon Quicksight - May ...
Amazon Web Services
ย 
BDA403 How Netflix Monitors Applications in Real-time with Amazon Kinesis
BDA403 How Netflix Monitors Applications in Real-time with Amazon KinesisBDA403 How Netflix Monitors Applications in Real-time with Amazon Kinesis
BDA403 How Netflix Monitors Applications in Real-time with Amazon Kinesis
Amazon Web Services
ย 
Selecting the Right AWS Database Solution - AWS 2017 Online Tech Talks
Selecting the Right AWS Database Solution - AWS 2017 Online Tech TalksSelecting the Right AWS Database Solution - AWS 2017 Online Tech Talks
Selecting the Right AWS Database Solution - AWS 2017 Online Tech Talks
Amazon Web Services
ย 
Convert and Migrate Your NoSQL Database or Data Warehouse to AWS - July 2017
Convert and Migrate Your NoSQL Database or Data Warehouse to AWS - July 2017Convert and Migrate Your NoSQL Database or Data Warehouse to AWS - July 2017
Convert and Migrate Your NoSQL Database or Data Warehouse to AWS - July 2017
Amazon Web Services
ย 
ENT302 Deep Dive on AWS Management Tools
ENT302 Deep Dive on AWS Management ToolsENT302 Deep Dive on AWS Management Tools
ENT302 Deep Dive on AWS Management Tools
Amazon Web Services
ย 
NEW LAUNCH! Intro to Amazon Athena. Easily analyze data in S3, using SQL.
NEW LAUNCH! Intro to Amazon Athena. Easily analyze data in S3, using SQL.NEW LAUNCH! Intro to Amazon Athena. Easily analyze data in S3, using SQL.
NEW LAUNCH! Intro to Amazon Athena. Easily analyze data in S3, using SQL.
Amazon Web Services
ย 
BDA307 Real-time Streaming Applications on AWS, Patterns and Use Cases
BDA307 Real-time Streaming Applications on AWS, Patterns and Use CasesBDA307 Real-time Streaming Applications on AWS, Patterns and Use Cases
BDA307 Real-time Streaming Applications on AWS, Patterns and Use Cases
Amazon Web Services
ย 
AWS Innovate: Running Databases in AWS- Russell Nash
AWS Innovate: Running Databases in AWS- Russell NashAWS Innovate: Running Databases in AWS- Russell Nash
AWS Innovate: Running Databases in AWS- Russell Nash
Amazon Web Services Korea
ย 
Getting Started with AWS Lambda and the Serverless Cloud by Jim Tran, Princip...
Getting Started with AWS Lambda and the Serverless Cloud by Jim Tran, Princip...Getting Started with AWS Lambda and the Serverless Cloud by Jim Tran, Princip...
Getting Started with AWS Lambda and the Serverless Cloud by Jim Tran, Princip...
Amazon Web Services
ย 
AWS Data Transfer Services: Data Ingest Strategies Into the AWS Cloud
AWS Data Transfer Services: Data Ingest Strategies Into the AWS CloudAWS Data Transfer Services: Data Ingest Strategies Into the AWS Cloud
AWS Data Transfer Services: Data Ingest Strategies Into the AWS Cloud
Amazon Web Services
ย 
AWS Storage and Content Delivery Services
AWS Storage and Content Delivery ServicesAWS Storage and Content Delivery Services
AWS Storage and Content Delivery Services
Amazon Web Services
ย 
Getting Started with Managed Database Services on AWS - September 2016 Webina...
Getting Started with Managed Database Services on AWS - September 2016 Webina...Getting Started with Managed Database Services on AWS - September 2016 Webina...
Getting Started with Managed Database Services on AWS - September 2016 Webina...
Amazon Web Services
ย 
Hackproof Your Gov Cloud: Mitigating Risks for 2017 and Beyond | AWS Public S...
Hackproof Your Gov Cloud: Mitigating Risks for 2017 and Beyond | AWS Public S...Hackproof Your Gov Cloud: Mitigating Risks for 2017 and Beyond | AWS Public S...
Hackproof Your Gov Cloud: Mitigating Risks for 2017 and Beyond | AWS Public S...
Amazon Web Services
ย 
Big Data Architectural Patterns and Best Practices on AWS
Big Data Architectural Patterns and Best Practices on AWSBig Data Architectural Patterns and Best Practices on AWS
Big Data Architectural Patterns and Best Practices on AWS
Amazon Web Services
ย 
Deep Dive On Amazon Redshift
Deep Dive On Amazon RedshiftDeep Dive On Amazon Redshift
Deep Dive On Amazon Redshift
Amazon Web Services
ย 

What's hot (20)

AWS re:Invent 2016: Workshop: Addressing Your Business Needs with AWS (ARC210)
AWS re:Invent 2016: Workshop: Addressing Your Business Needs with AWS (ARC210)AWS re:Invent 2016: Workshop: Addressing Your Business Needs with AWS (ARC210)
AWS re:Invent 2016: Workshop: Addressing Your Business Needs with AWS (ARC210)
ย 
AWS re:Invent 2016: High Performance Cinematic Production in the Cloud (MAE304)
AWS re:Invent 2016: High Performance Cinematic Production in the Cloud (MAE304)AWS re:Invent 2016: High Performance Cinematic Production in the Cloud (MAE304)
AWS re:Invent 2016: High Performance Cinematic Production in the Cloud (MAE304)
ย 
ENT201 A Tale of Two Pizzas: Accelerating Software Delivery with AWS Develope...
ENT201 A Tale of Two Pizzas: Accelerating Software Delivery with AWS Develope...ENT201 A Tale of Two Pizzas: Accelerating Software Delivery with AWS Develope...
ENT201 A Tale of Two Pizzas: Accelerating Software Delivery with AWS Develope...
ย 
Being Well Architected in the Cloud (Updated)
Being Well Architected in the Cloud (Updated)Being Well Architected in the Cloud (Updated)
Being Well Architected in the Cloud (Updated)
ย 
BDA402 Deep Dive: Log Analytics with Amazon Elasticsearch Service
BDA402 Deep Dive: Log Analytics with Amazon Elasticsearch ServiceBDA402 Deep Dive: Log Analytics with Amazon Elasticsearch Service
BDA402 Deep Dive: Log Analytics with Amazon Elasticsearch Service
ย 
Serverless Big Data Analytics with Amazon Athena and Amazon Quicksight - May ...
Serverless Big Data Analytics with Amazon Athena and Amazon Quicksight - May ...Serverless Big Data Analytics with Amazon Athena and Amazon Quicksight - May ...
Serverless Big Data Analytics with Amazon Athena and Amazon Quicksight - May ...
ย 
BDA403 How Netflix Monitors Applications in Real-time with Amazon Kinesis
BDA403 How Netflix Monitors Applications in Real-time with Amazon KinesisBDA403 How Netflix Monitors Applications in Real-time with Amazon Kinesis
BDA403 How Netflix Monitors Applications in Real-time with Amazon Kinesis
ย 
Selecting the Right AWS Database Solution - AWS 2017 Online Tech Talks
Selecting the Right AWS Database Solution - AWS 2017 Online Tech TalksSelecting the Right AWS Database Solution - AWS 2017 Online Tech Talks
Selecting the Right AWS Database Solution - AWS 2017 Online Tech Talks
ย 
Convert and Migrate Your NoSQL Database or Data Warehouse to AWS - July 2017
Convert and Migrate Your NoSQL Database or Data Warehouse to AWS - July 2017Convert and Migrate Your NoSQL Database or Data Warehouse to AWS - July 2017
Convert and Migrate Your NoSQL Database or Data Warehouse to AWS - July 2017
ย 
ENT302 Deep Dive on AWS Management Tools
ENT302 Deep Dive on AWS Management ToolsENT302 Deep Dive on AWS Management Tools
ENT302 Deep Dive on AWS Management Tools
ย 
NEW LAUNCH! Intro to Amazon Athena. Easily analyze data in S3, using SQL.
NEW LAUNCH! Intro to Amazon Athena. Easily analyze data in S3, using SQL.NEW LAUNCH! Intro to Amazon Athena. Easily analyze data in S3, using SQL.
NEW LAUNCH! Intro to Amazon Athena. Easily analyze data in S3, using SQL.
ย 
BDA307 Real-time Streaming Applications on AWS, Patterns and Use Cases
BDA307 Real-time Streaming Applications on AWS, Patterns and Use CasesBDA307 Real-time Streaming Applications on AWS, Patterns and Use Cases
BDA307 Real-time Streaming Applications on AWS, Patterns and Use Cases
ย 
AWS Innovate: Running Databases in AWS- Russell Nash
AWS Innovate: Running Databases in AWS- Russell NashAWS Innovate: Running Databases in AWS- Russell Nash
AWS Innovate: Running Databases in AWS- Russell Nash
ย 
Getting Started with AWS Lambda and the Serverless Cloud by Jim Tran, Princip...
Getting Started with AWS Lambda and the Serverless Cloud by Jim Tran, Princip...Getting Started with AWS Lambda and the Serverless Cloud by Jim Tran, Princip...
Getting Started with AWS Lambda and the Serverless Cloud by Jim Tran, Princip...
ย 
AWS Data Transfer Services: Data Ingest Strategies Into the AWS Cloud
AWS Data Transfer Services: Data Ingest Strategies Into the AWS CloudAWS Data Transfer Services: Data Ingest Strategies Into the AWS Cloud
AWS Data Transfer Services: Data Ingest Strategies Into the AWS Cloud
ย 
AWS Storage and Content Delivery Services
AWS Storage and Content Delivery ServicesAWS Storage and Content Delivery Services
AWS Storage and Content Delivery Services
ย 
Getting Started with Managed Database Services on AWS - September 2016 Webina...
Getting Started with Managed Database Services on AWS - September 2016 Webina...Getting Started with Managed Database Services on AWS - September 2016 Webina...
Getting Started with Managed Database Services on AWS - September 2016 Webina...
ย 
Hackproof Your Gov Cloud: Mitigating Risks for 2017 and Beyond | AWS Public S...
Hackproof Your Gov Cloud: Mitigating Risks for 2017 and Beyond | AWS Public S...Hackproof Your Gov Cloud: Mitigating Risks for 2017 and Beyond | AWS Public S...
Hackproof Your Gov Cloud: Mitigating Risks for 2017 and Beyond | AWS Public S...
ย 
Big Data Architectural Patterns and Best Practices on AWS
Big Data Architectural Patterns and Best Practices on AWSBig Data Architectural Patterns and Best Practices on AWS
Big Data Architectural Patterns and Best Practices on AWS
ย 
Deep Dive On Amazon Redshift
Deep Dive On Amazon RedshiftDeep Dive On Amazon Redshift
Deep Dive On Amazon Redshift
ย 

Similar to AWS Innovate: Build a Data Lake on AWS- Johnathon Meichtry

AWS March 2016 Webinar Series Building Your Data Lake on AWS
AWS March 2016 Webinar Series Building Your Data Lake on AWS AWS March 2016 Webinar Series Building Your Data Lake on AWS
AWS March 2016 Webinar Series Building Your Data Lake on AWS
Amazon Web Services
ย 
(BDT317) Building A Data Lake On AWS
(BDT317) Building A Data Lake On AWS(BDT317) Building A Data Lake On AWS
(BDT317) Building A Data Lake On AWS
Amazon Web Services
ย 
Scalable Data Analytics - DevDay Austin 2017 Day 2
Scalable Data Analytics - DevDay Austin 2017 Day 2Scalable Data Analytics - DevDay Austin 2017 Day 2
Scalable Data Analytics - DevDay Austin 2017 Day 2Amazon Web Services
ย 
Building Data Warehouses and Data Lakes in the Cloud - DevDay Austin 2017 Day 2
Building Data Warehouses and Data Lakes in the Cloud - DevDay Austin 2017 Day 2Building Data Warehouses and Data Lakes in the Cloud - DevDay Austin 2017 Day 2
Building Data Warehouses and Data Lakes in the Cloud - DevDay Austin 2017 Day 2Amazon Web Services
ย 
Fast Track to Your Data Lake on AWS
Fast Track to Your Data Lake on AWSFast Track to Your Data Lake on AWS
Fast Track to Your Data Lake on AWS
Amazon Web Services
ย 
Building Data Lakes and Analytics on AWS
Building Data Lakes and Analytics on AWSBuilding Data Lakes and Analytics on AWS
Building Data Lakes and Analytics on AWS
Amazon Web Services
ย 
Build Data Lakes and Analytics on AWS: Patterns & Best Practices - BDA305 - A...
Build Data Lakes and Analytics on AWS: Patterns & Best Practices - BDA305 - A...Build Data Lakes and Analytics on AWS: Patterns & Best Practices - BDA305 - A...
Build Data Lakes and Analytics on AWS: Patterns & Best Practices - BDA305 - A...
Amazon Web Services
ย 
Build Data Lakes & Analytics on AWS: Patterns & Best Practices - BDA305 - Ana...
Build Data Lakes & Analytics on AWS: Patterns & Best Practices - BDA305 - Ana...Build Data Lakes & Analytics on AWS: Patterns & Best Practices - BDA305 - Ana...
Build Data Lakes & Analytics on AWS: Patterns & Best Practices - BDA305 - Ana...
Amazon Web Services
ย 
Building Data Lakes and Analytics on AWS; Patterns and Best Practices - BDA30...
Building Data Lakes and Analytics on AWS; Patterns and Best Practices - BDA30...Building Data Lakes and Analytics on AWS; Patterns and Best Practices - BDA30...
Building Data Lakes and Analytics on AWS; Patterns and Best Practices - BDA30...
Amazon Web Services
ย 
Full Stack Analytics on AWS - AWS Summit Cape Town 2017
Full Stack Analytics on AWS - AWS Summit Cape Town 2017 Full Stack Analytics on AWS - AWS Summit Cape Town 2017
Full Stack Analytics on AWS - AWS Summit Cape Town 2017
Amazon Web Services
ย 
Serverless Big Data Architectures: Serverless Data Analytics
Serverless Big Data Architectures: Serverless Data AnalyticsServerless Big Data Architectures: Serverless Data Analytics
Serverless Big Data Architectures: Serverless Data Analytics
Kristana Kane
ย 
Understanding AWS Managed Database and Analytics Services | AWS Public Sector...
Understanding AWS Managed Database and Analytics Services | AWS Public Sector...Understanding AWS Managed Database and Analytics Services | AWS Public Sector...
Understanding AWS Managed Database and Analytics Services | AWS Public Sector...
Amazon Web Services
ย 
Understanding AWS Managed Database and Analytics Services | AWS Public Sector...
Understanding AWS Managed Database and Analytics Services | AWS Public Sector...Understanding AWS Managed Database and Analytics Services | AWS Public Sector...
Understanding AWS Managed Database and Analytics Services | AWS Public Sector...
Amazon Web Services
ย 
Building Data Lakes and Analytics on AWS; Patterns and Best Practices - BDA30...
Building Data Lakes and Analytics on AWS; Patterns and Best Practices - BDA30...Building Data Lakes and Analytics on AWS; Patterns and Best Practices - BDA30...
Building Data Lakes and Analytics on AWS; Patterns and Best Practices - BDA30...
Amazon Web Services
ย 
Big Data Architectural Patterns and Best Practices
Big Data Architectural Patterns and Best PracticesBig Data Architectural Patterns and Best Practices
Big Data Architectural Patterns and Best Practices
Amazon Web Services
ย 
Big Data Architectural Patterns and Best Practices
Big Data Architectural Patterns and Best PracticesBig Data Architectural Patterns and Best Practices
Big Data Architectural Patterns and Best Practices
Amazon Web Services
ย 
Big Data adoption success using AWS Big Data Services - Pop-up Loft TLV 2017
Big Data adoption success using AWS Big Data Services - Pop-up Loft TLV 2017Big Data adoption success using AWS Big Data Services - Pop-up Loft TLV 2017
Big Data adoption success using AWS Big Data Services - Pop-up Loft TLV 2017
Amazon Web Services
ย 
Implementing a Data Lake
Implementing a Data LakeImplementing a Data Lake
Implementing a Data Lake
Amazon Web Services
ย 
(BDT322) How Redfin & Twitter Leverage Amazon S3 For Big Data
(BDT322) How Redfin & Twitter Leverage Amazon S3 For Big Data(BDT322) How Redfin & Twitter Leverage Amazon S3 For Big Data
(BDT322) How Redfin & Twitter Leverage Amazon S3 For Big Data
Amazon Web Services
ย 
Building Data Lakes and Analytics on AWS
Building Data Lakes and Analytics on AWSBuilding Data Lakes and Analytics on AWS
Building Data Lakes and Analytics on AWS
Amazon Web Services
ย 

Similar to AWS Innovate: Build a Data Lake on AWS- Johnathon Meichtry (20)

AWS March 2016 Webinar Series Building Your Data Lake on AWS
AWS March 2016 Webinar Series Building Your Data Lake on AWS AWS March 2016 Webinar Series Building Your Data Lake on AWS
AWS March 2016 Webinar Series Building Your Data Lake on AWS
ย 
(BDT317) Building A Data Lake On AWS
(BDT317) Building A Data Lake On AWS(BDT317) Building A Data Lake On AWS
(BDT317) Building A Data Lake On AWS
ย 
Scalable Data Analytics - DevDay Austin 2017 Day 2
Scalable Data Analytics - DevDay Austin 2017 Day 2Scalable Data Analytics - DevDay Austin 2017 Day 2
Scalable Data Analytics - DevDay Austin 2017 Day 2
ย 
Building Data Warehouses and Data Lakes in the Cloud - DevDay Austin 2017 Day 2
Building Data Warehouses and Data Lakes in the Cloud - DevDay Austin 2017 Day 2Building Data Warehouses and Data Lakes in the Cloud - DevDay Austin 2017 Day 2
Building Data Warehouses and Data Lakes in the Cloud - DevDay Austin 2017 Day 2
ย 
Fast Track to Your Data Lake on AWS
Fast Track to Your Data Lake on AWSFast Track to Your Data Lake on AWS
Fast Track to Your Data Lake on AWS
ย 
Building Data Lakes and Analytics on AWS
Building Data Lakes and Analytics on AWSBuilding Data Lakes and Analytics on AWS
Building Data Lakes and Analytics on AWS
ย 
Build Data Lakes and Analytics on AWS: Patterns & Best Practices - BDA305 - A...
Build Data Lakes and Analytics on AWS: Patterns & Best Practices - BDA305 - A...Build Data Lakes and Analytics on AWS: Patterns & Best Practices - BDA305 - A...
Build Data Lakes and Analytics on AWS: Patterns & Best Practices - BDA305 - A...
ย 
Build Data Lakes & Analytics on AWS: Patterns & Best Practices - BDA305 - Ana...
Build Data Lakes & Analytics on AWS: Patterns & Best Practices - BDA305 - Ana...Build Data Lakes & Analytics on AWS: Patterns & Best Practices - BDA305 - Ana...
Build Data Lakes & Analytics on AWS: Patterns & Best Practices - BDA305 - Ana...
ย 
Building Data Lakes and Analytics on AWS; Patterns and Best Practices - BDA30...
Building Data Lakes and Analytics on AWS; Patterns and Best Practices - BDA30...Building Data Lakes and Analytics on AWS; Patterns and Best Practices - BDA30...
Building Data Lakes and Analytics on AWS; Patterns and Best Practices - BDA30...
ย 
Full Stack Analytics on AWS - AWS Summit Cape Town 2017
Full Stack Analytics on AWS - AWS Summit Cape Town 2017 Full Stack Analytics on AWS - AWS Summit Cape Town 2017
Full Stack Analytics on AWS - AWS Summit Cape Town 2017
ย 
Serverless Big Data Architectures: Serverless Data Analytics
Serverless Big Data Architectures: Serverless Data AnalyticsServerless Big Data Architectures: Serverless Data Analytics
Serverless Big Data Architectures: Serverless Data Analytics
ย 
Understanding AWS Managed Database and Analytics Services | AWS Public Sector...
Understanding AWS Managed Database and Analytics Services | AWS Public Sector...Understanding AWS Managed Database and Analytics Services | AWS Public Sector...
Understanding AWS Managed Database and Analytics Services | AWS Public Sector...
ย 
Understanding AWS Managed Database and Analytics Services | AWS Public Sector...
Understanding AWS Managed Database and Analytics Services | AWS Public Sector...Understanding AWS Managed Database and Analytics Services | AWS Public Sector...
Understanding AWS Managed Database and Analytics Services | AWS Public Sector...
ย 
Building Data Lakes and Analytics on AWS; Patterns and Best Practices - BDA30...
Building Data Lakes and Analytics on AWS; Patterns and Best Practices - BDA30...Building Data Lakes and Analytics on AWS; Patterns and Best Practices - BDA30...
Building Data Lakes and Analytics on AWS; Patterns and Best Practices - BDA30...
ย 
Big Data Architectural Patterns and Best Practices
Big Data Architectural Patterns and Best PracticesBig Data Architectural Patterns and Best Practices
Big Data Architectural Patterns and Best Practices
ย 
Big Data Architectural Patterns and Best Practices
Big Data Architectural Patterns and Best PracticesBig Data Architectural Patterns and Best Practices
Big Data Architectural Patterns and Best Practices
ย 
Big Data adoption success using AWS Big Data Services - Pop-up Loft TLV 2017
Big Data adoption success using AWS Big Data Services - Pop-up Loft TLV 2017Big Data adoption success using AWS Big Data Services - Pop-up Loft TLV 2017
Big Data adoption success using AWS Big Data Services - Pop-up Loft TLV 2017
ย 
Implementing a Data Lake
Implementing a Data LakeImplementing a Data Lake
Implementing a Data Lake
ย 
(BDT322) How Redfin & Twitter Leverage Amazon S3 For Big Data
(BDT322) How Redfin & Twitter Leverage Amazon S3 For Big Data(BDT322) How Redfin & Twitter Leverage Amazon S3 For Big Data
(BDT322) How Redfin & Twitter Leverage Amazon S3 For Big Data
ย 
Building Data Lakes and Analytics on AWS
Building Data Lakes and Analytics on AWSBuilding Data Lakes and Analytics on AWS
Building Data Lakes and Analytics on AWS
ย 

More from Amazon Web Services Korea

AWS Modern Infra with Storage Roadshow 2023 - Day 2
AWS Modern Infra with Storage Roadshow 2023 - Day 2AWS Modern Infra with Storage Roadshow 2023 - Day 2
AWS Modern Infra with Storage Roadshow 2023 - Day 2
Amazon Web Services Korea
ย 
AWS Modern Infra with Storage Roadshow 2023 - Day 1
AWS Modern Infra with Storage Roadshow 2023 - Day 1AWS Modern Infra with Storage Roadshow 2023 - Day 1
AWS Modern Infra with Storage Roadshow 2023 - Day 1
Amazon Web Services Korea
ย 
์‚ฌ๋ก€๋กœ ์•Œ์•„๋ณด๋Š” Database Migration Service : ๋ฐ์ดํ„ฐ๋ฒ ์ด์Šค ๋ฐ ๋ฐ์ดํ„ฐ ์ด๊ด€, ํ†ตํ•ฉ, ๋ถ„๋ฆฌ, ๋ถ„์„์˜ ๋„๊ตฌ - ๋ฐœํ‘œ์ž: ...
์‚ฌ๋ก€๋กœ ์•Œ์•„๋ณด๋Š” Database Migration Service : ๋ฐ์ดํ„ฐ๋ฒ ์ด์Šค ๋ฐ ๋ฐ์ดํ„ฐ ์ด๊ด€, ํ†ตํ•ฉ, ๋ถ„๋ฆฌ, ๋ถ„์„์˜ ๋„๊ตฌ - ๋ฐœํ‘œ์ž: ...์‚ฌ๋ก€๋กœ ์•Œ์•„๋ณด๋Š” Database Migration Service : ๋ฐ์ดํ„ฐ๋ฒ ์ด์Šค ๋ฐ ๋ฐ์ดํ„ฐ ์ด๊ด€, ํ†ตํ•ฉ, ๋ถ„๋ฆฌ, ๋ถ„์„์˜ ๋„๊ตฌ - ๋ฐœํ‘œ์ž: ...
์‚ฌ๋ก€๋กœ ์•Œ์•„๋ณด๋Š” Database Migration Service : ๋ฐ์ดํ„ฐ๋ฒ ์ด์Šค ๋ฐ ๋ฐ์ดํ„ฐ ์ด๊ด€, ํ†ตํ•ฉ, ๋ถ„๋ฆฌ, ๋ถ„์„์˜ ๋„๊ตฌ - ๋ฐœํ‘œ์ž: ...
Amazon Web Services Korea
ย 
Amazon DocumentDB - Architecture ๋ฐ Best Practice (Level 200) - ๋ฐœํ‘œ์ž: ์žฅ๋™ํ›ˆ, Sr. ...
Amazon DocumentDB - Architecture ๋ฐ Best Practice (Level 200) - ๋ฐœํ‘œ์ž: ์žฅ๋™ํ›ˆ, Sr. ...Amazon DocumentDB - Architecture ๋ฐ Best Practice (Level 200) - ๋ฐœํ‘œ์ž: ์žฅ๋™ํ›ˆ, Sr. ...
Amazon DocumentDB - Architecture ๋ฐ Best Practice (Level 200) - ๋ฐœํ‘œ์ž: ์žฅ๋™ํ›ˆ, Sr. ...
Amazon Web Services Korea
ย 
Amazon Elasticache - Fully managed, Redis & Memcached Compatible Service (Lev...
Amazon Elasticache - Fully managed, Redis & Memcached Compatible Service (Lev...Amazon Elasticache - Fully managed, Redis & Memcached Compatible Service (Lev...
Amazon Elasticache - Fully managed, Redis & Memcached Compatible Service (Lev...
Amazon Web Services Korea
ย 
Internal Architecture of Amazon Aurora (Level 400) - ๋ฐœํ‘œ์ž: ์ •๋‹ฌ์˜, APAC RDS Speci...
Internal Architecture of Amazon Aurora (Level 400) - ๋ฐœํ‘œ์ž: ์ •๋‹ฌ์˜, APAC RDS Speci...Internal Architecture of Amazon Aurora (Level 400) - ๋ฐœํ‘œ์ž: ์ •๋‹ฌ์˜, APAC RDS Speci...
Internal Architecture of Amazon Aurora (Level 400) - ๋ฐœํ‘œ์ž: ์ •๋‹ฌ์˜, APAC RDS Speci...
Amazon Web Services Korea
ย 
[Keynote] ์Šฌ๊ธฐ๋กœ์šด AWS ๋ฐ์ดํ„ฐ๋ฒ ์ด์Šค ์„ ํƒํ•˜๊ธฐ - ๋ฐœํ‘œ์ž: ๊ฐ•๋ฏผ์„, Korea Database SA Manager, WWSO, A...
[Keynote] ์Šฌ๊ธฐ๋กœ์šด AWS ๋ฐ์ดํ„ฐ๋ฒ ์ด์Šค ์„ ํƒํ•˜๊ธฐ - ๋ฐœํ‘œ์ž: ๊ฐ•๋ฏผ์„, Korea Database SA Manager, WWSO, A...[Keynote] ์Šฌ๊ธฐ๋กœ์šด AWS ๋ฐ์ดํ„ฐ๋ฒ ์ด์Šค ์„ ํƒํ•˜๊ธฐ - ๋ฐœํ‘œ์ž: ๊ฐ•๋ฏผ์„, Korea Database SA Manager, WWSO, A...
[Keynote] ์Šฌ๊ธฐ๋กœ์šด AWS ๋ฐ์ดํ„ฐ๋ฒ ์ด์Šค ์„ ํƒํ•˜๊ธฐ - ๋ฐœํ‘œ์ž: ๊ฐ•๋ฏผ์„, Korea Database SA Manager, WWSO, A...
Amazon Web Services Korea
ย 
Demystify Streaming on AWS - ๋ฐœํ‘œ์ž: ์ด์ข…ํ˜, Sr Analytics Specialist, WWSO, AWS :::...
Demystify Streaming on AWS - ๋ฐœํ‘œ์ž: ์ด์ข…ํ˜, Sr Analytics Specialist, WWSO, AWS :::...Demystify Streaming on AWS - ๋ฐœํ‘œ์ž: ์ด์ข…ํ˜, Sr Analytics Specialist, WWSO, AWS :::...
Demystify Streaming on AWS - ๋ฐœํ‘œ์ž: ์ด์ข…ํ˜, Sr Analytics Specialist, WWSO, AWS :::...
Amazon Web Services Korea
ย 
Amazon EMR - Enhancements on Cost/Performance, Serverless - ๋ฐœํ‘œ์ž: ๊น€๊ธฐ์˜, Sr Anal...
Amazon EMR - Enhancements on Cost/Performance, Serverless - ๋ฐœํ‘œ์ž: ๊น€๊ธฐ์˜, Sr Anal...Amazon EMR - Enhancements on Cost/Performance, Serverless - ๋ฐœํ‘œ์ž: ๊น€๊ธฐ์˜, Sr Anal...
Amazon EMR - Enhancements on Cost/Performance, Serverless - ๋ฐœํ‘œ์ž: ๊น€๊ธฐ์˜, Sr Anal...
Amazon Web Services Korea
ย 
Amazon OpenSearch - Use Cases, Security/Observability, Serverless and Enhance...
Amazon OpenSearch - Use Cases, Security/Observability, Serverless and Enhance...Amazon OpenSearch - Use Cases, Security/Observability, Serverless and Enhance...
Amazon OpenSearch - Use Cases, Security/Observability, Serverless and Enhance...
Amazon Web Services Korea
ย 
Enabling Agility with Data Governance - ๋ฐœํ‘œ์ž: ๊น€์„ฑ์—ฐ, Analytics Specialist, WWSO,...
Enabling Agility with Data Governance - ๋ฐœํ‘œ์ž: ๊น€์„ฑ์—ฐ, Analytics Specialist, WWSO,...Enabling Agility with Data Governance - ๋ฐœํ‘œ์ž: ๊น€์„ฑ์—ฐ, Analytics Specialist, WWSO,...
Enabling Agility with Data Governance - ๋ฐœํ‘œ์ž: ๊น€์„ฑ์—ฐ, Analytics Specialist, WWSO,...
Amazon Web Services Korea
ย 
Amazon Redshift Deep Dive - Serverless, Streaming, ML, Auto Copy (New feature...
Amazon Redshift Deep Dive - Serverless, Streaming, ML, Auto Copy (New feature...Amazon Redshift Deep Dive - Serverless, Streaming, ML, Auto Copy (New feature...
Amazon Redshift Deep Dive - Serverless, Streaming, ML, Auto Copy (New feature...
Amazon Web Services Korea
ย 
From Insights to Action, How to build and maintain a Data Driven Organization...
From Insights to Action, How to build and maintain a Data Driven Organization...From Insights to Action, How to build and maintain a Data Driven Organization...
From Insights to Action, How to build and maintain a Data Driven Organization...
Amazon Web Services Korea
ย 
[Keynote] Accelerating Business Outcomes with AWS Data - ๋ฐœํ‘œ์ž: Saeed Gharadagh...
[Keynote] Accelerating Business Outcomes with AWS Data - ๋ฐœํ‘œ์ž: Saeed Gharadagh...[Keynote] Accelerating Business Outcomes with AWS Data - ๋ฐœํ‘œ์ž: Saeed Gharadagh...
[Keynote] Accelerating Business Outcomes with AWS Data - ๋ฐœํ‘œ์ž: Saeed Gharadagh...
Amazon Web Services Korea
ย 
Amazon DynamoDB - Use Cases and Cost Optimization - ๋ฐœํ‘œ์ž: ์ดํ˜, DynamoDB Special...
Amazon DynamoDB - Use Cases and Cost Optimization - ๋ฐœํ‘œ์ž: ์ดํ˜, DynamoDB Special...Amazon DynamoDB - Use Cases and Cost Optimization - ๋ฐœํ‘œ์ž: ์ดํ˜, DynamoDB Special...
Amazon DynamoDB - Use Cases and Cost Optimization - ๋ฐœํ‘œ์ž: ์ดํ˜, DynamoDB Special...
Amazon Web Services Korea
ย 
LG์ „์ž - Amazon Aurora ๋ฐ RDS ๋ธ”๋ฃจ/๊ทธ๋ฆฐ ๋ฐฐํฌ๋ฅผ ์ด์šฉํ•œ ๋ฐ์ดํ„ฐ๋ฒ ์ด์Šค ์—…๊ทธ๋ ˆ์ด๋“œ ์•ˆ์ •์„ฑ ํ™•๋ณด - ๋ฐœํ‘œ์ž: ์ด์€๊ฒฝ ์ฑ…์ž„, L...
LG์ „์ž - Amazon Aurora ๋ฐ RDS ๋ธ”๋ฃจ/๊ทธ๋ฆฐ ๋ฐฐํฌ๋ฅผ ์ด์šฉํ•œ ๋ฐ์ดํ„ฐ๋ฒ ์ด์Šค ์—…๊ทธ๋ ˆ์ด๋“œ ์•ˆ์ •์„ฑ ํ™•๋ณด - ๋ฐœํ‘œ์ž: ์ด์€๊ฒฝ ์ฑ…์ž„, L...LG์ „์ž - Amazon Aurora ๋ฐ RDS ๋ธ”๋ฃจ/๊ทธ๋ฆฐ ๋ฐฐํฌ๋ฅผ ์ด์šฉํ•œ ๋ฐ์ดํ„ฐ๋ฒ ์ด์Šค ์—…๊ทธ๋ ˆ์ด๋“œ ์•ˆ์ •์„ฑ ํ™•๋ณด - ๋ฐœํ‘œ์ž: ์ด์€๊ฒฝ ์ฑ…์ž„, L...
LG์ „์ž - Amazon Aurora ๋ฐ RDS ๋ธ”๋ฃจ/๊ทธ๋ฆฐ ๋ฐฐํฌ๋ฅผ ์ด์šฉํ•œ ๋ฐ์ดํ„ฐ๋ฒ ์ด์Šค ์—…๊ทธ๋ ˆ์ด๋“œ ์•ˆ์ •์„ฑ ํ™•๋ณด - ๋ฐœํ‘œ์ž: ์ด์€๊ฒฝ ์ฑ…์ž„, L...
Amazon Web Services Korea
ย 
KB๊ตญ๋ฏผ์นด๋“œ - ํด๋ผ์šฐ๋“œ ๊ธฐ๋ฐ˜ ๋ถ„์„ ํ”Œ๋žซํผ ํ˜์‹  ์—ฌ์ • - ๋ฐœํ‘œ์ž: ๋ฐ•์ฐฝ์šฉ ๊ณผ์žฅ, ๋ฐ์ดํ„ฐ์ „๋žต๋ณธ๋ถ€, AIํ˜์‹ ๋ถ€, KB์นด๋“œโ”‚๊ฐ•๋ณ‘์–ต, Soluti...
KB๊ตญ๋ฏผ์นด๋“œ - ํด๋ผ์šฐ๋“œ ๊ธฐ๋ฐ˜ ๋ถ„์„ ํ”Œ๋žซํผ ํ˜์‹  ์—ฌ์ • - ๋ฐœํ‘œ์ž: ๋ฐ•์ฐฝ์šฉ ๊ณผ์žฅ, ๋ฐ์ดํ„ฐ์ „๋žต๋ณธ๋ถ€, AIํ˜์‹ ๋ถ€, KB์นด๋“œโ”‚๊ฐ•๋ณ‘์–ต, Soluti...KB๊ตญ๋ฏผ์นด๋“œ - ํด๋ผ์šฐ๋“œ ๊ธฐ๋ฐ˜ ๋ถ„์„ ํ”Œ๋žซํผ ํ˜์‹  ์—ฌ์ • - ๋ฐœํ‘œ์ž: ๋ฐ•์ฐฝ์šฉ ๊ณผ์žฅ, ๋ฐ์ดํ„ฐ์ „๋žต๋ณธ๋ถ€, AIํ˜์‹ ๋ถ€, KB์นด๋“œโ”‚๊ฐ•๋ณ‘์–ต, Soluti...
KB๊ตญ๋ฏผ์นด๋“œ - ํด๋ผ์šฐ๋“œ ๊ธฐ๋ฐ˜ ๋ถ„์„ ํ”Œ๋žซํผ ํ˜์‹  ์—ฌ์ • - ๋ฐœํ‘œ์ž: ๋ฐ•์ฐฝ์šฉ ๊ณผ์žฅ, ๋ฐ์ดํ„ฐ์ „๋žต๋ณธ๋ถ€, AIํ˜์‹ ๋ถ€, KB์นด๋“œโ”‚๊ฐ•๋ณ‘์–ต, Soluti...
Amazon Web Services Korea
ย 
SK Telecom - ๋ง๊ด€๋ฆฌ ํ”„๋กœ์ ํŠธ TANGO์˜ ์˜คํ”ˆ์†Œ์Šค ๋ฐ์ดํ„ฐ๋ฒ ์ด์Šค ์ „ํ™˜ ์—ฌ์ • - ๋ฐœํ‘œ์ž : ๋ฐ•์Šน์ „, Project Manager, ...
SK Telecom - ๋ง๊ด€๋ฆฌ ํ”„๋กœ์ ํŠธ TANGO์˜ ์˜คํ”ˆ์†Œ์Šค ๋ฐ์ดํ„ฐ๋ฒ ์ด์Šค ์ „ํ™˜ ์—ฌ์ • - ๋ฐœํ‘œ์ž : ๋ฐ•์Šน์ „, Project Manager, ...SK Telecom - ๋ง๊ด€๋ฆฌ ํ”„๋กœ์ ํŠธ TANGO์˜ ์˜คํ”ˆ์†Œ์Šค ๋ฐ์ดํ„ฐ๋ฒ ์ด์Šค ์ „ํ™˜ ์—ฌ์ • - ๋ฐœํ‘œ์ž : ๋ฐ•์Šน์ „, Project Manager, ...
SK Telecom - ๋ง๊ด€๋ฆฌ ํ”„๋กœ์ ํŠธ TANGO์˜ ์˜คํ”ˆ์†Œ์Šค ๋ฐ์ดํ„ฐ๋ฒ ์ด์Šค ์ „ํ™˜ ์—ฌ์ • - ๋ฐœํ‘œ์ž : ๋ฐ•์Šน์ „, Project Manager, ...
Amazon Web Services Korea
ย 
์ฝ”๋ฆฌ์•ˆ๋ฆฌ - ๋ฐ์ดํ„ฐ ๋ถ„์„ ํ”Œ๋žซํผ ๊ตฌ์ถ• ์—ฌ์ •, ๊ทธ ์‹œ์ž‘๊ณผ ๊ณผ์ œ - ๋ฐœํ‘œ์ž: ๊น€์„๊ธฐ ๊ทธ๋ฃน์žฅ, ๋ฐ์ดํ„ฐ๋น„์ฆˆ๋‹ˆ์Šค์„ผํ„ฐ, ๋ฉ”๊ฐ€์กดํด๋ผ์šฐ๋“œ ::: AWS ...
์ฝ”๋ฆฌ์•ˆ๋ฆฌ - ๋ฐ์ดํ„ฐ ๋ถ„์„ ํ”Œ๋žซํผ ๊ตฌ์ถ• ์—ฌ์ •, ๊ทธ ์‹œ์ž‘๊ณผ ๊ณผ์ œ - ๋ฐœํ‘œ์ž: ๊น€์„๊ธฐ ๊ทธ๋ฃน์žฅ, ๋ฐ์ดํ„ฐ๋น„์ฆˆ๋‹ˆ์Šค์„ผํ„ฐ, ๋ฉ”๊ฐ€์กดํด๋ผ์šฐ๋“œ ::: AWS ...์ฝ”๋ฆฌ์•ˆ๋ฆฌ - ๋ฐ์ดํ„ฐ ๋ถ„์„ ํ”Œ๋žซํผ ๊ตฌ์ถ• ์—ฌ์ •, ๊ทธ ์‹œ์ž‘๊ณผ ๊ณผ์ œ - ๋ฐœํ‘œ์ž: ๊น€์„๊ธฐ ๊ทธ๋ฃน์žฅ, ๋ฐ์ดํ„ฐ๋น„์ฆˆ๋‹ˆ์Šค์„ผํ„ฐ, ๋ฉ”๊ฐ€์กดํด๋ผ์šฐ๋“œ ::: AWS ...
์ฝ”๋ฆฌ์•ˆ๋ฆฌ - ๋ฐ์ดํ„ฐ ๋ถ„์„ ํ”Œ๋žซํผ ๊ตฌ์ถ• ์—ฌ์ •, ๊ทธ ์‹œ์ž‘๊ณผ ๊ณผ์ œ - ๋ฐœํ‘œ์ž: ๊น€์„๊ธฐ ๊ทธ๋ฃน์žฅ, ๋ฐ์ดํ„ฐ๋น„์ฆˆ๋‹ˆ์Šค์„ผํ„ฐ, ๋ฉ”๊ฐ€์กดํด๋ผ์šฐ๋“œ ::: AWS ...
Amazon Web Services Korea
ย 
LG ์ด๋…ธํ… - Amazon Redshift Serverless๋ฅผ ํ™œ์šฉํ•œ ๋ฐ์ดํ„ฐ ๋ถ„์„ ํ”Œ๋žซํผ ํ˜์‹  ๊ณผ์ • - ๋ฐœํ‘œ์ž: ์œ ์žฌ์ƒ ์„ ์ž„, LG์ด๋…ธ...
LG ์ด๋…ธํ… - Amazon Redshift Serverless๋ฅผ ํ™œ์šฉํ•œ ๋ฐ์ดํ„ฐ ๋ถ„์„ ํ”Œ๋žซํผ ํ˜์‹  ๊ณผ์ • - ๋ฐœํ‘œ์ž: ์œ ์žฌ์ƒ ์„ ์ž„, LG์ด๋…ธ...LG ์ด๋…ธํ… - Amazon Redshift Serverless๋ฅผ ํ™œ์šฉํ•œ ๋ฐ์ดํ„ฐ ๋ถ„์„ ํ”Œ๋žซํผ ํ˜์‹  ๊ณผ์ • - ๋ฐœํ‘œ์ž: ์œ ์žฌ์ƒ ์„ ์ž„, LG์ด๋…ธ...
LG ์ด๋…ธํ… - Amazon Redshift Serverless๋ฅผ ํ™œ์šฉํ•œ ๋ฐ์ดํ„ฐ ๋ถ„์„ ํ”Œ๋žซํผ ํ˜์‹  ๊ณผ์ • - ๋ฐœํ‘œ์ž: ์œ ์žฌ์ƒ ์„ ์ž„, LG์ด๋…ธ...
Amazon Web Services Korea
ย 

More from Amazon Web Services Korea (20)

AWS Modern Infra with Storage Roadshow 2023 - Day 2
AWS Modern Infra with Storage Roadshow 2023 - Day 2AWS Modern Infra with Storage Roadshow 2023 - Day 2
AWS Modern Infra with Storage Roadshow 2023 - Day 2
ย 
AWS Modern Infra with Storage Roadshow 2023 - Day 1
AWS Modern Infra with Storage Roadshow 2023 - Day 1AWS Modern Infra with Storage Roadshow 2023 - Day 1
AWS Modern Infra with Storage Roadshow 2023 - Day 1
ย 
์‚ฌ๋ก€๋กœ ์•Œ์•„๋ณด๋Š” Database Migration Service : ๋ฐ์ดํ„ฐ๋ฒ ์ด์Šค ๋ฐ ๋ฐ์ดํ„ฐ ์ด๊ด€, ํ†ตํ•ฉ, ๋ถ„๋ฆฌ, ๋ถ„์„์˜ ๋„๊ตฌ - ๋ฐœํ‘œ์ž: ...
์‚ฌ๋ก€๋กœ ์•Œ์•„๋ณด๋Š” Database Migration Service : ๋ฐ์ดํ„ฐ๋ฒ ์ด์Šค ๋ฐ ๋ฐ์ดํ„ฐ ์ด๊ด€, ํ†ตํ•ฉ, ๋ถ„๋ฆฌ, ๋ถ„์„์˜ ๋„๊ตฌ - ๋ฐœํ‘œ์ž: ...์‚ฌ๋ก€๋กœ ์•Œ์•„๋ณด๋Š” Database Migration Service : ๋ฐ์ดํ„ฐ๋ฒ ์ด์Šค ๋ฐ ๋ฐ์ดํ„ฐ ์ด๊ด€, ํ†ตํ•ฉ, ๋ถ„๋ฆฌ, ๋ถ„์„์˜ ๋„๊ตฌ - ๋ฐœํ‘œ์ž: ...
์‚ฌ๋ก€๋กœ ์•Œ์•„๋ณด๋Š” Database Migration Service : ๋ฐ์ดํ„ฐ๋ฒ ์ด์Šค ๋ฐ ๋ฐ์ดํ„ฐ ์ด๊ด€, ํ†ตํ•ฉ, ๋ถ„๋ฆฌ, ๋ถ„์„์˜ ๋„๊ตฌ - ๋ฐœํ‘œ์ž: ...
ย 
Amazon DocumentDB - Architecture ๋ฐ Best Practice (Level 200) - ๋ฐœํ‘œ์ž: ์žฅ๋™ํ›ˆ, Sr. ...
Amazon DocumentDB - Architecture ๋ฐ Best Practice (Level 200) - ๋ฐœํ‘œ์ž: ์žฅ๋™ํ›ˆ, Sr. ...Amazon DocumentDB - Architecture ๋ฐ Best Practice (Level 200) - ๋ฐœํ‘œ์ž: ์žฅ๋™ํ›ˆ, Sr. ...
Amazon DocumentDB - Architecture ๋ฐ Best Practice (Level 200) - ๋ฐœํ‘œ์ž: ์žฅ๋™ํ›ˆ, Sr. ...
ย 
Amazon Elasticache - Fully managed, Redis & Memcached Compatible Service (Lev...
Amazon Elasticache - Fully managed, Redis & Memcached Compatible Service (Lev...Amazon Elasticache - Fully managed, Redis & Memcached Compatible Service (Lev...
Amazon Elasticache - Fully managed, Redis & Memcached Compatible Service (Lev...
ย 
Internal Architecture of Amazon Aurora (Level 400) - ๋ฐœํ‘œ์ž: ์ •๋‹ฌ์˜, APAC RDS Speci...
Internal Architecture of Amazon Aurora (Level 400) - ๋ฐœํ‘œ์ž: ์ •๋‹ฌ์˜, APAC RDS Speci...Internal Architecture of Amazon Aurora (Level 400) - ๋ฐœํ‘œ์ž: ์ •๋‹ฌ์˜, APAC RDS Speci...
Internal Architecture of Amazon Aurora (Level 400) - ๋ฐœํ‘œ์ž: ์ •๋‹ฌ์˜, APAC RDS Speci...
ย 
[Keynote] ์Šฌ๊ธฐ๋กœ์šด AWS ๋ฐ์ดํ„ฐ๋ฒ ์ด์Šค ์„ ํƒํ•˜๊ธฐ - ๋ฐœํ‘œ์ž: ๊ฐ•๋ฏผ์„, Korea Database SA Manager, WWSO, A...
[Keynote] ์Šฌ๊ธฐ๋กœ์šด AWS ๋ฐ์ดํ„ฐ๋ฒ ์ด์Šค ์„ ํƒํ•˜๊ธฐ - ๋ฐœํ‘œ์ž: ๊ฐ•๋ฏผ์„, Korea Database SA Manager, WWSO, A...[Keynote] ์Šฌ๊ธฐ๋กœ์šด AWS ๋ฐ์ดํ„ฐ๋ฒ ์ด์Šค ์„ ํƒํ•˜๊ธฐ - ๋ฐœํ‘œ์ž: ๊ฐ•๋ฏผ์„, Korea Database SA Manager, WWSO, A...
[Keynote] ์Šฌ๊ธฐ๋กœ์šด AWS ๋ฐ์ดํ„ฐ๋ฒ ์ด์Šค ์„ ํƒํ•˜๊ธฐ - ๋ฐœํ‘œ์ž: ๊ฐ•๋ฏผ์„, Korea Database SA Manager, WWSO, A...
ย 
Demystify Streaming on AWS - ๋ฐœํ‘œ์ž: ์ด์ข…ํ˜, Sr Analytics Specialist, WWSO, AWS :::...
Demystify Streaming on AWS - ๋ฐœํ‘œ์ž: ์ด์ข…ํ˜, Sr Analytics Specialist, WWSO, AWS :::...Demystify Streaming on AWS - ๋ฐœํ‘œ์ž: ์ด์ข…ํ˜, Sr Analytics Specialist, WWSO, AWS :::...
Demystify Streaming on AWS - ๋ฐœํ‘œ์ž: ์ด์ข…ํ˜, Sr Analytics Specialist, WWSO, AWS :::...
ย 
Amazon EMR - Enhancements on Cost/Performance, Serverless - ๋ฐœํ‘œ์ž: ๊น€๊ธฐ์˜, Sr Anal...
Amazon EMR - Enhancements on Cost/Performance, Serverless - ๋ฐœํ‘œ์ž: ๊น€๊ธฐ์˜, Sr Anal...Amazon EMR - Enhancements on Cost/Performance, Serverless - ๋ฐœํ‘œ์ž: ๊น€๊ธฐ์˜, Sr Anal...
Amazon EMR - Enhancements on Cost/Performance, Serverless - ๋ฐœํ‘œ์ž: ๊น€๊ธฐ์˜, Sr Anal...
ย 
Amazon OpenSearch - Use Cases, Security/Observability, Serverless and Enhance...
Amazon OpenSearch - Use Cases, Security/Observability, Serverless and Enhance...Amazon OpenSearch - Use Cases, Security/Observability, Serverless and Enhance...
Amazon OpenSearch - Use Cases, Security/Observability, Serverless and Enhance...
ย 
Enabling Agility with Data Governance - ๋ฐœํ‘œ์ž: ๊น€์„ฑ์—ฐ, Analytics Specialist, WWSO,...
Enabling Agility with Data Governance - ๋ฐœํ‘œ์ž: ๊น€์„ฑ์—ฐ, Analytics Specialist, WWSO,...Enabling Agility with Data Governance - ๋ฐœํ‘œ์ž: ๊น€์„ฑ์—ฐ, Analytics Specialist, WWSO,...
Enabling Agility with Data Governance - ๋ฐœํ‘œ์ž: ๊น€์„ฑ์—ฐ, Analytics Specialist, WWSO,...
ย 
Amazon Redshift Deep Dive - Serverless, Streaming, ML, Auto Copy (New feature...
Amazon Redshift Deep Dive - Serverless, Streaming, ML, Auto Copy (New feature...Amazon Redshift Deep Dive - Serverless, Streaming, ML, Auto Copy (New feature...
Amazon Redshift Deep Dive - Serverless, Streaming, ML, Auto Copy (New feature...
ย 
From Insights to Action, How to build and maintain a Data Driven Organization...
From Insights to Action, How to build and maintain a Data Driven Organization...From Insights to Action, How to build and maintain a Data Driven Organization...
From Insights to Action, How to build and maintain a Data Driven Organization...
ย 
[Keynote] Accelerating Business Outcomes with AWS Data - ๋ฐœํ‘œ์ž: Saeed Gharadagh...
[Keynote] Accelerating Business Outcomes with AWS Data - ๋ฐœํ‘œ์ž: Saeed Gharadagh...[Keynote] Accelerating Business Outcomes with AWS Data - ๋ฐœํ‘œ์ž: Saeed Gharadagh...
[Keynote] Accelerating Business Outcomes with AWS Data - ๋ฐœํ‘œ์ž: Saeed Gharadagh...
ย 
Amazon DynamoDB - Use Cases and Cost Optimization - ๋ฐœํ‘œ์ž: ์ดํ˜, DynamoDB Special...
Amazon DynamoDB - Use Cases and Cost Optimization - ๋ฐœํ‘œ์ž: ์ดํ˜, DynamoDB Special...Amazon DynamoDB - Use Cases and Cost Optimization - ๋ฐœํ‘œ์ž: ์ดํ˜, DynamoDB Special...
Amazon DynamoDB - Use Cases and Cost Optimization - ๋ฐœํ‘œ์ž: ์ดํ˜, DynamoDB Special...
ย 
LG์ „์ž - Amazon Aurora ๋ฐ RDS ๋ธ”๋ฃจ/๊ทธ๋ฆฐ ๋ฐฐํฌ๋ฅผ ์ด์šฉํ•œ ๋ฐ์ดํ„ฐ๋ฒ ์ด์Šค ์—…๊ทธ๋ ˆ์ด๋“œ ์•ˆ์ •์„ฑ ํ™•๋ณด - ๋ฐœํ‘œ์ž: ์ด์€๊ฒฝ ์ฑ…์ž„, L...
LG์ „์ž - Amazon Aurora ๋ฐ RDS ๋ธ”๋ฃจ/๊ทธ๋ฆฐ ๋ฐฐํฌ๋ฅผ ์ด์šฉํ•œ ๋ฐ์ดํ„ฐ๋ฒ ์ด์Šค ์—…๊ทธ๋ ˆ์ด๋“œ ์•ˆ์ •์„ฑ ํ™•๋ณด - ๋ฐœํ‘œ์ž: ์ด์€๊ฒฝ ์ฑ…์ž„, L...LG์ „์ž - Amazon Aurora ๋ฐ RDS ๋ธ”๋ฃจ/๊ทธ๋ฆฐ ๋ฐฐํฌ๋ฅผ ์ด์šฉํ•œ ๋ฐ์ดํ„ฐ๋ฒ ์ด์Šค ์—…๊ทธ๋ ˆ์ด๋“œ ์•ˆ์ •์„ฑ ํ™•๋ณด - ๋ฐœํ‘œ์ž: ์ด์€๊ฒฝ ์ฑ…์ž„, L...
LG์ „์ž - Amazon Aurora ๋ฐ RDS ๋ธ”๋ฃจ/๊ทธ๋ฆฐ ๋ฐฐํฌ๋ฅผ ์ด์šฉํ•œ ๋ฐ์ดํ„ฐ๋ฒ ์ด์Šค ์—…๊ทธ๋ ˆ์ด๋“œ ์•ˆ์ •์„ฑ ํ™•๋ณด - ๋ฐœํ‘œ์ž: ์ด์€๊ฒฝ ์ฑ…์ž„, L...
ย 
KB๊ตญ๋ฏผ์นด๋“œ - ํด๋ผ์šฐ๋“œ ๊ธฐ๋ฐ˜ ๋ถ„์„ ํ”Œ๋žซํผ ํ˜์‹  ์—ฌ์ • - ๋ฐœํ‘œ์ž: ๋ฐ•์ฐฝ์šฉ ๊ณผ์žฅ, ๋ฐ์ดํ„ฐ์ „๋žต๋ณธ๋ถ€, AIํ˜์‹ ๋ถ€, KB์นด๋“œโ”‚๊ฐ•๋ณ‘์–ต, Soluti...
KB๊ตญ๋ฏผ์นด๋“œ - ํด๋ผ์šฐ๋“œ ๊ธฐ๋ฐ˜ ๋ถ„์„ ํ”Œ๋žซํผ ํ˜์‹  ์—ฌ์ • - ๋ฐœํ‘œ์ž: ๋ฐ•์ฐฝ์šฉ ๊ณผ์žฅ, ๋ฐ์ดํ„ฐ์ „๋žต๋ณธ๋ถ€, AIํ˜์‹ ๋ถ€, KB์นด๋“œโ”‚๊ฐ•๋ณ‘์–ต, Soluti...KB๊ตญ๋ฏผ์นด๋“œ - ํด๋ผ์šฐ๋“œ ๊ธฐ๋ฐ˜ ๋ถ„์„ ํ”Œ๋žซํผ ํ˜์‹  ์—ฌ์ • - ๋ฐœํ‘œ์ž: ๋ฐ•์ฐฝ์šฉ ๊ณผ์žฅ, ๋ฐ์ดํ„ฐ์ „๋žต๋ณธ๋ถ€, AIํ˜์‹ ๋ถ€, KB์นด๋“œโ”‚๊ฐ•๋ณ‘์–ต, Soluti...
KB๊ตญ๋ฏผ์นด๋“œ - ํด๋ผ์šฐ๋“œ ๊ธฐ๋ฐ˜ ๋ถ„์„ ํ”Œ๋žซํผ ํ˜์‹  ์—ฌ์ • - ๋ฐœํ‘œ์ž: ๋ฐ•์ฐฝ์šฉ ๊ณผ์žฅ, ๋ฐ์ดํ„ฐ์ „๋žต๋ณธ๋ถ€, AIํ˜์‹ ๋ถ€, KB์นด๋“œโ”‚๊ฐ•๋ณ‘์–ต, Soluti...
ย 
SK Telecom - ๋ง๊ด€๋ฆฌ ํ”„๋กœ์ ํŠธ TANGO์˜ ์˜คํ”ˆ์†Œ์Šค ๋ฐ์ดํ„ฐ๋ฒ ์ด์Šค ์ „ํ™˜ ์—ฌ์ • - ๋ฐœํ‘œ์ž : ๋ฐ•์Šน์ „, Project Manager, ...
SK Telecom - ๋ง๊ด€๋ฆฌ ํ”„๋กœ์ ํŠธ TANGO์˜ ์˜คํ”ˆ์†Œ์Šค ๋ฐ์ดํ„ฐ๋ฒ ์ด์Šค ์ „ํ™˜ ์—ฌ์ • - ๋ฐœํ‘œ์ž : ๋ฐ•์Šน์ „, Project Manager, ...SK Telecom - ๋ง๊ด€๋ฆฌ ํ”„๋กœ์ ํŠธ TANGO์˜ ์˜คํ”ˆ์†Œ์Šค ๋ฐ์ดํ„ฐ๋ฒ ์ด์Šค ์ „ํ™˜ ์—ฌ์ • - ๋ฐœํ‘œ์ž : ๋ฐ•์Šน์ „, Project Manager, ...
SK Telecom - ๋ง๊ด€๋ฆฌ ํ”„๋กœ์ ํŠธ TANGO์˜ ์˜คํ”ˆ์†Œ์Šค ๋ฐ์ดํ„ฐ๋ฒ ์ด์Šค ์ „ํ™˜ ์—ฌ์ • - ๋ฐœํ‘œ์ž : ๋ฐ•์Šน์ „, Project Manager, ...
ย 
์ฝ”๋ฆฌ์•ˆ๋ฆฌ - ๋ฐ์ดํ„ฐ ๋ถ„์„ ํ”Œ๋žซํผ ๊ตฌ์ถ• ์—ฌ์ •, ๊ทธ ์‹œ์ž‘๊ณผ ๊ณผ์ œ - ๋ฐœํ‘œ์ž: ๊น€์„๊ธฐ ๊ทธ๋ฃน์žฅ, ๋ฐ์ดํ„ฐ๋น„์ฆˆ๋‹ˆ์Šค์„ผํ„ฐ, ๋ฉ”๊ฐ€์กดํด๋ผ์šฐ๋“œ ::: AWS ...
์ฝ”๋ฆฌ์•ˆ๋ฆฌ - ๋ฐ์ดํ„ฐ ๋ถ„์„ ํ”Œ๋žซํผ ๊ตฌ์ถ• ์—ฌ์ •, ๊ทธ ์‹œ์ž‘๊ณผ ๊ณผ์ œ - ๋ฐœํ‘œ์ž: ๊น€์„๊ธฐ ๊ทธ๋ฃน์žฅ, ๋ฐ์ดํ„ฐ๋น„์ฆˆ๋‹ˆ์Šค์„ผํ„ฐ, ๋ฉ”๊ฐ€์กดํด๋ผ์šฐ๋“œ ::: AWS ...์ฝ”๋ฆฌ์•ˆ๋ฆฌ - ๋ฐ์ดํ„ฐ ๋ถ„์„ ํ”Œ๋žซํผ ๊ตฌ์ถ• ์—ฌ์ •, ๊ทธ ์‹œ์ž‘๊ณผ ๊ณผ์ œ - ๋ฐœํ‘œ์ž: ๊น€์„๊ธฐ ๊ทธ๋ฃน์žฅ, ๋ฐ์ดํ„ฐ๋น„์ฆˆ๋‹ˆ์Šค์„ผํ„ฐ, ๋ฉ”๊ฐ€์กดํด๋ผ์šฐ๋“œ ::: AWS ...
์ฝ”๋ฆฌ์•ˆ๋ฆฌ - ๋ฐ์ดํ„ฐ ๋ถ„์„ ํ”Œ๋žซํผ ๊ตฌ์ถ• ์—ฌ์ •, ๊ทธ ์‹œ์ž‘๊ณผ ๊ณผ์ œ - ๋ฐœํ‘œ์ž: ๊น€์„๊ธฐ ๊ทธ๋ฃน์žฅ, ๋ฐ์ดํ„ฐ๋น„์ฆˆ๋‹ˆ์Šค์„ผํ„ฐ, ๋ฉ”๊ฐ€์กดํด๋ผ์šฐ๋“œ ::: AWS ...
ย 
LG ์ด๋…ธํ… - Amazon Redshift Serverless๋ฅผ ํ™œ์šฉํ•œ ๋ฐ์ดํ„ฐ ๋ถ„์„ ํ”Œ๋žซํผ ํ˜์‹  ๊ณผ์ • - ๋ฐœํ‘œ์ž: ์œ ์žฌ์ƒ ์„ ์ž„, LG์ด๋…ธ...
LG ์ด๋…ธํ… - Amazon Redshift Serverless๋ฅผ ํ™œ์šฉํ•œ ๋ฐ์ดํ„ฐ ๋ถ„์„ ํ”Œ๋žซํผ ํ˜์‹  ๊ณผ์ • - ๋ฐœํ‘œ์ž: ์œ ์žฌ์ƒ ์„ ์ž„, LG์ด๋…ธ...LG ์ด๋…ธํ… - Amazon Redshift Serverless๋ฅผ ํ™œ์šฉํ•œ ๋ฐ์ดํ„ฐ ๋ถ„์„ ํ”Œ๋žซํผ ํ˜์‹  ๊ณผ์ • - ๋ฐœํ‘œ์ž: ์œ ์žฌ์ƒ ์„ ์ž„, LG์ด๋…ธ...
LG ์ด๋…ธํ… - Amazon Redshift Serverless๋ฅผ ํ™œ์šฉํ•œ ๋ฐ์ดํ„ฐ ๋ถ„์„ ํ”Œ๋žซํผ ํ˜์‹  ๊ณผ์ • - ๋ฐœํ‘œ์ž: ์œ ์žฌ์ƒ ์„ ์ž„, LG์ด๋…ธ...
ย 

Recently uploaded

Mission to Decommission: Importance of Decommissioning Products to Increase E...
Mission to Decommission: Importance of Decommissioning Products to Increase E...Mission to Decommission: Importance of Decommissioning Products to Increase E...
Mission to Decommission: Importance of Decommissioning Products to Increase E...
Product School
ย 
GDG Cloud Southlake #33: Boule & Rebala: Effective AppSec in SDLC using Deplo...
GDG Cloud Southlake #33: Boule & Rebala: Effective AppSec in SDLC using Deplo...GDG Cloud Southlake #33: Boule & Rebala: Effective AppSec in SDLC using Deplo...
GDG Cloud Southlake #33: Boule & Rebala: Effective AppSec in SDLC using Deplo...
James Anderson
ย 
Accelerate your Kubernetes clusters with Varnish Caching
Accelerate your Kubernetes clusters with Varnish CachingAccelerate your Kubernetes clusters with Varnish Caching
Accelerate your Kubernetes clusters with Varnish Caching
Thijs Feryn
ย 
Smart TV Buyer Insights Survey 2024 by 91mobiles.pdf
Smart TV Buyer Insights Survey 2024 by 91mobiles.pdfSmart TV Buyer Insights Survey 2024 by 91mobiles.pdf
Smart TV Buyer Insights Survey 2024 by 91mobiles.pdf
91mobiles
ย 
Essentials of Automations: Optimizing FME Workflows with Parameters
Essentials of Automations: Optimizing FME Workflows with ParametersEssentials of Automations: Optimizing FME Workflows with Parameters
Essentials of Automations: Optimizing FME Workflows with Parameters
Safe Software
ย 
Key Trends Shaping the Future of Infrastructure.pdf
Key Trends Shaping the Future of Infrastructure.pdfKey Trends Shaping the Future of Infrastructure.pdf
Key Trends Shaping the Future of Infrastructure.pdf
Cheryl Hung
ย 
To Graph or Not to Graph Knowledge Graph Architectures and LLMs
To Graph or Not to Graph Knowledge Graph Architectures and LLMsTo Graph or Not to Graph Knowledge Graph Architectures and LLMs
To Graph or Not to Graph Knowledge Graph Architectures and LLMs
Paul Groth
ย 
Software Delivery At the Speed of AI: Inflectra Invests In AI-Powered Quality
Software Delivery At the Speed of AI: Inflectra Invests In AI-Powered QualitySoftware Delivery At the Speed of AI: Inflectra Invests In AI-Powered Quality
Software Delivery At the Speed of AI: Inflectra Invests In AI-Powered Quality
Inflectra
ย 
Elevating Tactical DDD Patterns Through Object Calisthenics
Elevating Tactical DDD Patterns Through Object CalisthenicsElevating Tactical DDD Patterns Through Object Calisthenics
Elevating Tactical DDD Patterns Through Object Calisthenics
Dorra BARTAGUIZ
ย 
From Daily Decisions to Bottom Line: Connecting Product Work to Revenue by VP...
From Daily Decisions to Bottom Line: Connecting Product Work to Revenue by VP...From Daily Decisions to Bottom Line: Connecting Product Work to Revenue by VP...
From Daily Decisions to Bottom Line: Connecting Product Work to Revenue by VP...
Product School
ย 
Neuro-symbolic is not enough, we need neuro-*semantic*
Neuro-symbolic is not enough, we need neuro-*semantic*Neuro-symbolic is not enough, we need neuro-*semantic*
Neuro-symbolic is not enough, we need neuro-*semantic*
Frank van Harmelen
ย 
JMeter webinar - integration with InfluxDB and Grafana
JMeter webinar - integration with InfluxDB and GrafanaJMeter webinar - integration with InfluxDB and Grafana
JMeter webinar - integration with InfluxDB and Grafana
RTTS
ย 
From Siloed Products to Connected Ecosystem: Building a Sustainable and Scala...
From Siloed Products to Connected Ecosystem: Building a Sustainable and Scala...From Siloed Products to Connected Ecosystem: Building a Sustainable and Scala...
From Siloed Products to Connected Ecosystem: Building a Sustainable and Scala...
Product School
ย 
Designing Great Products: The Power of Design and Leadership by Chief Designe...
Designing Great Products: The Power of Design and Leadership by Chief Designe...Designing Great Products: The Power of Design and Leadership by Chief Designe...
Designing Great Products: The Power of Design and Leadership by Chief Designe...
Product School
ย 
GenAISummit 2024 May 28 Sri Ambati Keynote: AGI Belongs to The Community in O...
GenAISummit 2024 May 28 Sri Ambati Keynote: AGI Belongs to The Community in O...GenAISummit 2024 May 28 Sri Ambati Keynote: AGI Belongs to The Community in O...
GenAISummit 2024 May 28 Sri Ambati Keynote: AGI Belongs to The Community in O...
Sri Ambati
ย 
FIDO Alliance Osaka Seminar: FIDO Security Aspects.pdf
FIDO Alliance Osaka Seminar: FIDO Security Aspects.pdfFIDO Alliance Osaka Seminar: FIDO Security Aspects.pdf
FIDO Alliance Osaka Seminar: FIDO Security Aspects.pdf
FIDO Alliance
ย 
UiPath Test Automation using UiPath Test Suite series, part 3
UiPath Test Automation using UiPath Test Suite series, part 3UiPath Test Automation using UiPath Test Suite series, part 3
UiPath Test Automation using UiPath Test Suite series, part 3
DianaGray10
ย 
Bits & Pixels using AI for Good.........
Bits & Pixels using AI for Good.........Bits & Pixels using AI for Good.........
Bits & Pixels using AI for Good.........
Alison B. Lowndes
ย 
Assuring Contact Center Experiences for Your Customers With ThousandEyes
Assuring Contact Center Experiences for Your Customers With ThousandEyesAssuring Contact Center Experiences for Your Customers With ThousandEyes
Assuring Contact Center Experiences for Your Customers With ThousandEyes
ThousandEyes
ย 
Transcript: Selling digital books in 2024: Insights from industry leaders - T...
Transcript: Selling digital books in 2024: Insights from industry leaders - T...Transcript: Selling digital books in 2024: Insights from industry leaders - T...
Transcript: Selling digital books in 2024: Insights from industry leaders - T...
BookNet Canada
ย 

Recently uploaded (20)

Mission to Decommission: Importance of Decommissioning Products to Increase E...
Mission to Decommission: Importance of Decommissioning Products to Increase E...Mission to Decommission: Importance of Decommissioning Products to Increase E...
Mission to Decommission: Importance of Decommissioning Products to Increase E...
ย 
GDG Cloud Southlake #33: Boule & Rebala: Effective AppSec in SDLC using Deplo...
GDG Cloud Southlake #33: Boule & Rebala: Effective AppSec in SDLC using Deplo...GDG Cloud Southlake #33: Boule & Rebala: Effective AppSec in SDLC using Deplo...
GDG Cloud Southlake #33: Boule & Rebala: Effective AppSec in SDLC using Deplo...
ย 
Accelerate your Kubernetes clusters with Varnish Caching
Accelerate your Kubernetes clusters with Varnish CachingAccelerate your Kubernetes clusters with Varnish Caching
Accelerate your Kubernetes clusters with Varnish Caching
ย 
Smart TV Buyer Insights Survey 2024 by 91mobiles.pdf
Smart TV Buyer Insights Survey 2024 by 91mobiles.pdfSmart TV Buyer Insights Survey 2024 by 91mobiles.pdf
Smart TV Buyer Insights Survey 2024 by 91mobiles.pdf
ย 
Essentials of Automations: Optimizing FME Workflows with Parameters
Essentials of Automations: Optimizing FME Workflows with ParametersEssentials of Automations: Optimizing FME Workflows with Parameters
Essentials of Automations: Optimizing FME Workflows with Parameters
ย 
Key Trends Shaping the Future of Infrastructure.pdf
Key Trends Shaping the Future of Infrastructure.pdfKey Trends Shaping the Future of Infrastructure.pdf
Key Trends Shaping the Future of Infrastructure.pdf
ย 
To Graph or Not to Graph Knowledge Graph Architectures and LLMs
To Graph or Not to Graph Knowledge Graph Architectures and LLMsTo Graph or Not to Graph Knowledge Graph Architectures and LLMs
To Graph or Not to Graph Knowledge Graph Architectures and LLMs
ย 
Software Delivery At the Speed of AI: Inflectra Invests In AI-Powered Quality
Software Delivery At the Speed of AI: Inflectra Invests In AI-Powered QualitySoftware Delivery At the Speed of AI: Inflectra Invests In AI-Powered Quality
Software Delivery At the Speed of AI: Inflectra Invests In AI-Powered Quality
ย 
Elevating Tactical DDD Patterns Through Object Calisthenics
Elevating Tactical DDD Patterns Through Object CalisthenicsElevating Tactical DDD Patterns Through Object Calisthenics
Elevating Tactical DDD Patterns Through Object Calisthenics
ย 
From Daily Decisions to Bottom Line: Connecting Product Work to Revenue by VP...
From Daily Decisions to Bottom Line: Connecting Product Work to Revenue by VP...From Daily Decisions to Bottom Line: Connecting Product Work to Revenue by VP...
From Daily Decisions to Bottom Line: Connecting Product Work to Revenue by VP...
ย 
Neuro-symbolic is not enough, we need neuro-*semantic*
Neuro-symbolic is not enough, we need neuro-*semantic*Neuro-symbolic is not enough, we need neuro-*semantic*
Neuro-symbolic is not enough, we need neuro-*semantic*
ย 
JMeter webinar - integration with InfluxDB and Grafana
JMeter webinar - integration with InfluxDB and GrafanaJMeter webinar - integration with InfluxDB and Grafana
JMeter webinar - integration with InfluxDB and Grafana
ย 
From Siloed Products to Connected Ecosystem: Building a Sustainable and Scala...
From Siloed Products to Connected Ecosystem: Building a Sustainable and Scala...From Siloed Products to Connected Ecosystem: Building a Sustainable and Scala...
From Siloed Products to Connected Ecosystem: Building a Sustainable and Scala...
ย 
Designing Great Products: The Power of Design and Leadership by Chief Designe...
Designing Great Products: The Power of Design and Leadership by Chief Designe...Designing Great Products: The Power of Design and Leadership by Chief Designe...
Designing Great Products: The Power of Design and Leadership by Chief Designe...
ย 
GenAISummit 2024 May 28 Sri Ambati Keynote: AGI Belongs to The Community in O...
GenAISummit 2024 May 28 Sri Ambati Keynote: AGI Belongs to The Community in O...GenAISummit 2024 May 28 Sri Ambati Keynote: AGI Belongs to The Community in O...
GenAISummit 2024 May 28 Sri Ambati Keynote: AGI Belongs to The Community in O...
ย 
FIDO Alliance Osaka Seminar: FIDO Security Aspects.pdf
FIDO Alliance Osaka Seminar: FIDO Security Aspects.pdfFIDO Alliance Osaka Seminar: FIDO Security Aspects.pdf
FIDO Alliance Osaka Seminar: FIDO Security Aspects.pdf
ย 
UiPath Test Automation using UiPath Test Suite series, part 3
UiPath Test Automation using UiPath Test Suite series, part 3UiPath Test Automation using UiPath Test Suite series, part 3
UiPath Test Automation using UiPath Test Suite series, part 3
ย 
Bits & Pixels using AI for Good.........
Bits & Pixels using AI for Good.........Bits & Pixels using AI for Good.........
Bits & Pixels using AI for Good.........
ย 
Assuring Contact Center Experiences for Your Customers With ThousandEyes
Assuring Contact Center Experiences for Your Customers With ThousandEyesAssuring Contact Center Experiences for Your Customers With ThousandEyes
Assuring Contact Center Experiences for Your Customers With ThousandEyes
ย 
Transcript: Selling digital books in 2024: Insights from industry leaders - T...
Transcript: Selling digital books in 2024: Insights from industry leaders - T...Transcript: Selling digital books in 2024: Insights from industry leaders - T...
Transcript: Selling digital books in 2024: Insights from industry leaders - T...
ย 

AWS Innovate: Build a Data Lake on AWS- Johnathon Meichtry

  • 1. Building a Data Lake on AWS Johnathon Meichtry, Principal Solutions Architect Amazon Web Services
  • 2.
  • 4. But customers have additional requirementsโ€ฆ
  • 5. The Rise of โ€œBig Dataโ€ Enterprise data warehouse Amazon EMR Amazon S3
  • 7. Comparison of a Data Lake to an Enterprise Data Warehouse Complementary to EDW (not replacement) Data lake can be source for EDW Schema on read (no predefined schemas) Schema on write (predefined schemas) Structured/semi-structured/Unstructured data Structured data only Fast ingestion of new data/content Time consuming to introduce new content Data Science + Prediction/Advanced Analytics + BI use cases BI use cases only (no prediction/advanced analytics) Data at low level of detail/granularity Data at summary/aggregated level of detail Loosely defined SLAs Tight SLAs (production schedules) Flexibility in tools (open source/tools for advanced analytics) Limited flexibility in tools (SQL only) Enterprise DWEMR S3
  • 8. EMR S3 The New Problem Enterprise data warehouse โ‰  Which system has my data? How can I do machine learning against the DW? I built this in Hive, can we get it into the Finance reports? These sources are giving different resultsโ€ฆ But I implemented the algorithm in Anacondaโ€ฆ
  • 9. Dive Into The Data Lake Enterprise data warehouseEMR S3 Load Cleansed Data Export Computed Aggregates Ingest any data Data cleansing Data catalogue Trend analysis Machine learning Structured analysis Common access tools Efficient aggregation Structured business rules
  • 10. Components of a Data Lake Storage & Streams Catalogue & Search Entitlements API & UI
  • 11. STORAGE High durability Stores raw data from input sources Support for any type of data Low cost Storage & Streams Catalogue & Search Entitlements API & UI
  • 12. Amazon Simple Storage Service Highly scalable object storage for the Internet 1 byte to 5 TB in size Designed for 99.999999999% durability, 99.99% availability Regional service, no single points of failure Server side encryption Key Management Service integration True object storage Compute Storage AWS Global Infrastructure Database App Services Deployment & Administration Networking Analytics
  • 13. Storage Lifecycle Integration S3 โ€“ Standard S3 โ€“ Infrequent Access Amazon Glacier
  • 14. Consider Different Types of Data Unstructured โ€ข Store native file format (logs, dump files, whatever) โ€ข Compress with a streaming codec (LZO, Snappy) Semi-structured - JSON, XML files, etc. โ€ข Consider evolution ability of the data schema (Avro) โ€ข Store the schema for the data as a file attribute (metadata/tag) Structured โ€ข Lots of data is CSV! โ€ข Columnar storage (Orc, Parquet)
  • 15. STREAMING Streaming ingest of feed data Provides the ability to consume any dataset as a stream Facilitates low latency analytics Storage & Streams Catalogue & Search Entitlements API & UI
  • 16. Amazon Kinesis Managed service for real time big data processing Create streams to produce & consume data Elastically add and remove shards for performance Use Amazon Kinesis Worker Library to process data Integration with S3, Amazon Redshift, and DynamoDB Compute Storage AWS Global Infrastructure Database App Services Deployment & Administration Networking Analytics
  • 18. Streaming Storage Integration Object store Amazon S3 Streaming store Amazon Kinesis Analytics applications Read & write file dataRead & write to streams Archive stream Replay history
  • 19. CATALOGUE & SEARCH Metadata lake Used for summary statistics and data Classification management Simplified model for data discovery & governance Storage & Streams Catalogue & Search Entitlements API & UI
  • 20. Data Catalogue โ€“ Metadata Index โ€ข Stores data about your Amazon S3 storage environment โ€ข Total size & count of objects by prefix, data classification, refresh schedule, object version information โ€ข Amazon S3 events processed by Lambda function โ€ข DynamoDB metadata tables store required attributes
  • 21. Amazon DynamoDB Provisioned throughput NoSQL database Fast, predictable, configurable performance Fully distributed, fault tolerant HA architecture Integration with Amazon EMR & Hive Amazon RDS Amazon DynamoD B Amazon Redshift Amazon ElastiCache Managed NoSQL Compute Storage AWS Global Infrastructure Database App Services Deployment & Administration Networking Analytics
  • 22. AWS Lambda Fully-managed event processor Node.js or Java, integrated AWS SDK Natively compile & install any Node.js modules Specify runtime RAM & timeout Automatically scaled to support event volume Events from Amazon S3, Amazon SNS, Amazon DynamoDB, Amazon Kinesis, & AWS Lambda Integrated CloudWatch logging Compute Storage AWS Global Infrastructure Database App Services Deployment & Administration Networking Analytics Serverless Compute
  • 23. Data Catalogue โ€“ Building Search Index โ€ข Enable DynamoDB Update Stream for metadata index table โ€ข Additional AWS Lambda function reads Update Stream and extracts index fields from S3 object โ€ข Update to search domain
  • 24. Catalogue & Search Architecture
  • 26. IAM Policy Language Example: Allow a user to access a private part of the data lake { "Version": "2012-10-17", "Statement": [ { "Action": ["s3:ListBucket"], "Effect": "Allow", "Resource": ["arn:aws:s3:::mydatalake"], "Condition": {"StringLike": {"s3:prefix": ["${aws:username}/*"]}} }, { "Action": [ "s3:GetObject", "s3:PutObject" ], "Effect": "Allow", "Resource": ["arn:aws:s3:::mydatalake/${aws:username}/*"] } ] }
  • 27. IAM Federation โ€ข IAM allows federation to Active Directory and other OpenID providers (Amazon, Facebook, Google) โ€ข AWS Directory Service provides an AD Connector which can automate federated connectivity to ADFS IAM Users AWS Directory Service AD Connector Direct Connect Hardware VPN
  • 28. Data Encryption AWS CloudHSM Dedicated Tenancy SafeNet Luna SA HSM Device Common Criteria EAL4+, NIST FIPS 140-2 AWS Key Management Service Automated key rotation & auditing Integration with other AWS services AWS server side encryption AWS managed key infrastructure
  • 29. Entitlements โ€“ Access to Encryption Keys Customer Master Key Customer Data Keys Ciphertext Key Plaintext Key IAM Temporary Credential Security Token Service MyData MyData S3 S3 Object โ€ฆ Name: MyData Key: Ciphertext Key โ€ฆ
  • 30. Secure Data Flow IAM Amazon S3 API Gateway Users Temporary Credential Temporary Credential s3://mydatalake/${YYY-MM-DD}/ ${resource}/${resourceID} Encrypted Data Metadata Index - DynamoDB TVM - Elastic Beanstalk Security Token Service
  • 31. API & UI Exposes the data lake to customers Programmatically query catalogue Expose search API Ensures that entitlements are respected Storage & Streams Catalogue & Search Entitlements API & UI
  • 32. Amazon API Gateway Host multiple versions and stages of APIs Create and distribute API keys to developers Leverage AWS Sigv4 to authorize access to APIs Throttle and monitor requests to protect the backend Leverages AWS Lambda
  • 33. An API Call Flow Internet Mobile Apps Websites Services API Gateway AWS Lambda functions AWS API Gateway cache Endpoints on Amazon EC2 Any other publicly accessible endpoint Amazon CloudWatch monitoring Amazon CloudFront
  • 34. API & UI Architecture API Gateway UI - Elastic Beanstalk AWS Lambda Metadata IndexUsers IAM TVM - Elastic Beanstalk
  • 35. Storage & Streams Amazon Kinesis Amazon S3 Amazon Glacier Entitlements IAM Encrypted Data Security Token Service Data Catalogue & Search AWS Lambda Search Index Metadata Index API & UI API GatewayUsers UI - Elastic Beanstalk TVM - Elastic Beanstalk KMS
  • 36. Online Labs & Training Gain confidence and hands-on experience with AWS. Watch free Instructional Videos and explore Self-Paced Labs Instructor Led Classes Learn how to design, deploy and operate highly available, cost-effective and secure applications on AWS in courses led by qualified AWS instructors Validate your technical expertise with AWS and use practice exams to help you prepare for AWS Certification AWS Certification More info at http://aws.amazon.com/training
  • 37. Thank You for Attending AWS Innovate We hope you found it interesting! Do provide us with your feedback for the session and complete the feedback form. Let us know your thoughts of todayโ€™s event and how we can improve the event experience for you in the future.