SlideShare a Scribd company logo
1 of 96
Download to read offline
DAT304 - Mastering NoSQL: Advanced Amazon
DynamoDB Design Patterns for Ultra-High
Performance Apps
David Yanacek, Amazon DynamoDB
David Tuttle, Devicescape
Greg Nelson, Dropcam
November 15, 2013

© 2013 Amazon.com, Inc. and its affiliates. All rights reserved. May not be copied, modified, or distributed in whole or in part without the express consent of Amazon.com, Inc.
Plan
•
•
•
•

Social Network (hash + range schemas)
Image Tagging (secondary indexes)
Game State (conditional writes)
User Data (fine-grained access control)
Social Network
hash + range schemas
Social Network
• Store info about users
• Query for a user’s friends
Social Network

Friends Table

Users Table
Social Network
Users Table

User

Nicknames

Bob

[ Rob, Bobby ]

Alice

[ Allie ]

Carol

[ Caroline ]

Dan

[ Daniel, Danny ]
Social Network
Users Table

User
Item

Nicknames

Bob

[ Rob, Bobby ]

Alice

[ Allie ]

Carol

[ Caroline ]

Dan

[ Daniel, Danny ]
Social Network
Users Table

User
Attribute
(string, number, binary, set)

Nicknames

Bob

[ Rob, Bobby ]

Alice

[ Allie ]

Carol

[ Caroline ]

Dan

[ Daniel, Danny ]
Social Network
Users Table

Primary Key
(Hash)

User

Nicknames

Bob

[ Rob, Bobby ]

Alice

[ Allie ]

Carol

[ Caroline ]

Dan

[ Daniel, Danny ]
Social Network
Friends Table

Users Table

User

Friend

User

Nicknames

Bob

Alice

Bob

[ Rob, Bobby ]

Alice

Bob

Alice

[ Allie ]

Alice

Carol

Carol

[ Caroline ]

Alice

Dan

Dan

[ Daniel, Danny ]
Social Network
Friends Table

Users Table

Hash-and-Range
Primary Key Schema

User

Nicknames

Alice

Bob

[ Rob, Bobby ]

Alice

Bob

Alice

[ Allie ]

Alice

Carol

Carol

[ Caroline ]

Alice

Dan

Dan

[ Daniel, Danny ]

User

Friend

Bob
Social Network
Friends Table

Users Table

User

Friend

User

Nicknames

Bob

Alice

Bob

[ Rob, Bobby ]

Alice

Bob

Alice

[ Allie ]

Alice

Carol

Carol

[ Caroline ]

Alice

Dan

Dan

[ Daniel, Danny ]

Query for Alice’s friends
Recap: Social Network
• Hash schema for key-value lookups
• Hash and Range schema for Query
Image Tagging
secondary indexes
Image Tagging
•
•
•
•

Query a user’s images
Query a user’s images by date
Tag other users in images
Query images a user is tagged in
Image Tagging

Images Table
Image Tagging
Images Table

User

Image

Date

Link

Bob

aed4c

2013-10-01

s3://…

Bob

cf2e2

2013-09-05

s3://…

Bob

f93bae

2013-10-08

s3://…

Alice

ca61a

2013-09-12

s3://…
Image Tagging
Images Table

User

Image

Date

Link

Bob

aed4c

2013-10-01

s3://…

Bob

cf2e2

2013-09-05

s3://…

Bob

f93bae

2013-10-08

s3://…

Alice

ca61a

2013-09-12

s3://…

Hash and Range
Primary Key Schema
Image Tagging
Bob

Images Table

User

Image

Date

Link

Bob

aed4c

2013-10-01

s3://…

Bob

cf2e2

2013-09-05

s3://…

Bob

f93bae

2013-10-08

s3://…

Alice

ca61a

2013-09-12

s3://…

Query for Bob’s Images
Image Tagging
•
•
•
•

Query a user’s images
Query a user’s images by date
Tag other users in images
Query images a user is tagged in
Local Secondary Indexes
• Alternate Range Key for your table
• More flexible Query patterns
• Local to the Hash Key
Image Tagging
Images Table

User

Image

Date

Link

Bob

aed4c

2013-10-01

s3://…

Bob

cf2e2

2013-09-05

s3://…

Bob

f93bae

2013-10-08

s3://…

Alice

ca61a

2013-09-12

s3://…

Table

Local to a Hash Key value
Image Tagging
Local Secondary Index on Date
Images Table

User

Image

Date

Link

User

Date

Image

Bob

aed4c

2013-10-01

s3://…

Bob

2013-09-05

cf2e2

Bob

cf2e2

2013-09-05

s3://…

Bob

2013-10-01

aed4c

Bob

f93bae

2013-10-08

s3://…

Bob

2013-10-08

f93bae

Alice

ca61a

2013-09-12

s3://…

Alice

2013-09-12

ca61a

Table

ByDate Local Secondary Index
Image Tagging
Query for Bob’s two most recent images
Images Table

User

Image

Date

Link

User

Date

Image

Bob

aed4c

2013-10-01

s3://…

Bob

2013-09-05

cf2e2

Bob

cf2e2

2013-09-05

s3://…

Bob

2013-10-01

aed4c

Bob

f93bae

2013-10-08

s3://…

Bob

2013-10-08

f93bae

Alice

ca61a

2013-09-12

s3://…

Alice

2013-09-12

ca61a

Table

ByDate Local Secondary Index
Image Tagging
•
•
•
•

Query a user’s images
Query a user’s images by date
Tag other users in images
Query images a user is tagged in
Image Tagging

ImageTags
Table

Images
Table
Image Tagging
ImageTags Table

Image

User

aed4c

Alice

aed4c

Bob

f93bae

Bob
Image Tagging
ImageTags Table

Image

User

aed4c

Alice

aed4c

Bob

f93bae

Bob

Hash and Range Primary Key Schema
Image Tagging
Bob

ImageTags Table

Image

User

aed4c

Alice

aed4c

Bob

f93bae

Bob

Query Users
tagged in Image aed4c
Image Tagging
Bob

ImageTags Table

Image

User

aed4c

Alice

aed4c

Bob

f93bae

Alice

f93bae

Bob

Tag Alice in Image f93bae
Image Tagging
•
•
•
•

Query a user’s images
Query a user’s images by date
Tag other users in images
Query images a user is tagged in
Global Secondary Indexes
• Alternate Hash and/or Range Key for your table
• Even more flexible Query patterns
Image Tagging
ImageTags Table

Image

User

aed4c

Alice

aed4c

Bob

f93bae

Alice

f93bae

Bob

Table
Image Tagging
Global Secondary Index on User, Image
ImageTags Table

Image

User

User

Image

aed4c

Alice

Bob

aed4c

aed4c

Bob

Bob

f93bae

f93bae

Alice

Alice

aed4c

f93bae

Bob

Alice

f93bae

Table

ByUser Global Secondary Index
Image Tagging
ImageTags Table

Image

User

User

Image

aed4c

Alice

Bob

aed4c

aed4c

Bob

Bob

f93bae

f93bae

Alice

Alice

aed4c

f93bae

Bob

Alice

f93bae

Table

ByUser Global Secondary Index

Alternate Hash and Range Keys
Image Tagging
Query for images tagged Alice
ImageTags Table

Image

User

User

Image

aed4c

Alice

Bob

aed4c

aed4c

Bob

Bob

f93bae

f93bae

Alice

Alice

aed4c

f93bae

Bob

Alice

f93bae

Table

ByUser Global Secondary Index

Alice
Recap: Image Tagging
• Local Secondary Indexes support flexible queries
• Global Secondary Indexes unlock even more
flexible queries
Game State
conditional writes
Tic Tac Toe
Tic Tac Toe

Game Item

{
Id : abecd,
Players : [ Alice, Bob ],
State : STARTED,
Turn : Bob,
Top-Right : O
}
Tic Tac Toe
Alice

Bob

Amazon
DynamoDB
Tic Tac Toe
Alice

Bob

Update:
Top-Right : O
Turn : Bob

Amazon
DynamoDB
Tic Tac Toe
Alice

Bob

Update:
Top-Left : X
Turn : Alice

Amazon
DynamoDB
Gaming the System
Alice

Bob (1)

Amazon
DynamoDB

Bob (2)

Bob (3)
Gaming the System
Alice

Bob (1)

Amazon
DynamoDB

Bob (2)

Bob (3)
Gaming the System
Alice

Bob (1)

Amazon
DynamoDB

Bob (2)

Bob (3)
Gaming the System
Bob (1)

Bob (2)

State : STARTED,
Turn : Bob,
Top-Right : O
Amazon
DynamoDB

Bob (3)
Gaming the System
Bob (1)

Update:
Turn : Alice
Top-Left : X

Bob (2)

Update:
Turn : Alice
Mid : X

Bob (3)

Update:
Turn : Alice
Low-Right : X

State : STARTED,
Turn : Bob,
Top-Right : O
Amazon
DynamoDB
Gaming the System
Bob (1)

Update:
Turn : Alice
Top-Left : X

State : STARTED,
Turn : Alice,
Top-Right : O,
Top-Left : X,
Mid: X,
Low-Right: X

Bob (2)

Update:
Turn : Alice
Mid : X

Bob (3)

Update:
Turn : Alice
Low-Right : X

Amazon
DynamoDB
Conditional Writes
•
•
•
•

Accept a write only if values are as expected
Otherwise reject the write
Performance like normal writes
Single item only (no transactions)
Tic Tac Toe (Fixed)
Bob (1)

Update:
Turn : Alice
Top-Left : X
Expect:
Turn : Bob
Top-Left : null

State : STARTED,
Turn : Bob,
Top-Right : O

Bob (2)

Update:
Turn : Alice
Mid : X
Expect:
Turn : Bob
Mid : null

Bob (3)

Update:
Turn : Alice
Low-Right : X
Expect:
Turn : Bob
Low-Right : null
Amazon
DynamoDB
Tic Tac Toe (Fixed)
Bob (1)

Update:
Turn : Alice
Top-Left : X
Expect:
Turn : Bob
Top-Left : null

State : STARTED,
Turn : Bob,
Top-Right : O

Bob (2)

Update:
Turn : Alice
Mid : X
Expect:
Turn : Bob
Mid : null

Bob (3)

Update:
Turn : Alice
Low-Right : X
Expect:
Turn : Bob
Low-Right : null
Amazon
DynamoDB
Tic Tac Toe (Fixed)
Bob (1)

Update:
Turn : Alice
Top-Left : X
Expect:
Turn : Bob
Top-Left : null

State : STARTED,
Turn : Alice,
Top-Right : O,
Top-Left : X

Bob (2)

Update:
Turn : Alice
Mid : X
Expect:
Turn : Bob
Mid : null

Bob (3)

Update:
Turn : Alice
Low-Right : X
Expect:
Turn : Bob
Low-Right : null
Amazon
DynamoDB
Recap: Game State
• Conditional writes synchronize state transitions
• Multi-item transactions require application-level
coordination
User Data
fine-grained access control
User Data
Users

Your App

Amazon
DynamoDB
User Data
Users

Your App

Amazon
DynamoDB

(Cost, Ops, Latency)
User Data
Users

Amazon
DynamoDB
User Data
Users

(Access control?)

Amazon
DynamoDB
Web Identity Federation
Web identity federation
Users

AWS IAM

Amazon
DynamoDB
Web Identity Federation
Web identity federation
Users

AWS IAM

(Fine-grained access control)
Amazon
DynamoDB
Fine-Grained Access Control
• Limit access to particular hash key values
• Limit access to specific attributes
• Use policy substitution variables to write the
policy once
Fine-Grained Access Control
Images Table

User

Image

Date

Link

Bob

aed4c

2013-10-01

s3://…

Bob

5f2e2

2013-09-05

s3://…

Bob

f93bae

2013-10-08

s3://…

Alice

ca61a

2013-09-12

s3://…

“Allow all authenticated
Facebook users to Query the
Images table, but only on items
where their Facebook ID is the
hash key”
Fine-Grained Access Control
Images Table

User

Image

Date

Link

Bob

aed4c

2013-10-01

s3://…

Bob

5f2e2

2013-09-05

s3://…

Bob

f93bae

2013-10-08

s3://…

Alice

ca61a

2013-09-12

s3://…

Bob “logs in” using
web identity federation

AWS
IAM

Bob
Fine-Grained Access Control
Images Table

User

Image

Date

Link

Bob

aed4c

2013-10-01

s3://…

Bob

5f2e2

2013-09-05

s3://…

Bob

f93bae

2013-10-08

s3://…

Alice

ca61a

2013-09-12

s3://…

Bob

Bob can Query for Images
where User=“Bob”
Fine-Grained Access Control
Images Table

User

Image

Date

Link

Bob

aed4c

2013-10-01

s3://…

Bob

5f2e2

2013-09-05

s3://…

Bob

f93bae

2013-10-08

s3://…

Alice

ca61a

2013-09-12

s3://…

Bob

Bob cannot Query for Images
where User=“Alice”
Two-tier Architecture Tradeoffs
• Pros:
– Lower latency
– Lower cost
– Lower operational complexity

• Cons:
– Less visibility into application behavior
– More difficult to make changes to persistence layer
– Requires “scoping” items to a given user

Users

Amazon
DynamoDB
Recap: User Data
• Web identity federation makes it easy for endusers to call AWS directly
• Fine-grained access control supports a secure
two-tier architecture on Amazon DynamoDB
Recap (Thanks!)
•
•
•
•

Social Network (hash + range schemas)
Image Tagging (secondary indexes)
Game State (conditional writes)
User Data (fine-grained access control)
An Amazon DynamoDB Adoption Story:
Before, After, and Beyond
David Tuttle, Engineering Manager, Platform Team
Devicescape Software
•
•
•
•

Headquartered in Silicon Valley
Founded in 2005
Curate Amenity Wi-Fi into a carrier grade service
Critical services with tight uptime requirements
New York Amenity WiFi CVN Connections

(24 hours later)
An Amazon DynamoDB Adoption Story
•
•
•
•

Before: Pre-DynamoDB world
During: The move to DynamoDB
After: DynamoDB has improved our lives
Beyond: Future direction
Before: Challenges in a Pre-DynamoDB World
• Complex manual scaling

table_shardBit0_shardBit1 {
shardKey string, primary key;
}

– Scaling up was not a fast operation
– DB/DB slave maintenance was painful
– Handcrafted table sharding required to scale DB with application

• Slow queries on large tables
– Developed processes to rotate tables before they got too large
– Hindered by unpredictable query time
– Developer effort spent optimizing SQL queries

• Schema changes are difficult on large active tables
– Forced to code a workaround when we would have preferred altering a table

• Replication delay
Move to DynamoDB
• DynamoDB forced a different way of thinking about data
– Data organized into “items” around a primary key (hash key, [range key])
– Configured level of read + write throughput in DynamoDB is achievable if and
only if certain conditions are met
• Avoid sparse hash keys
• Workload evenly distributed across hash keys

• Throttled scans and queries
– A scan or a query without a limit risked consuming all of the throughput for an
internal partition of a DynamoDB table
– Parallel scans required for high-speed jobs

• Porting the application backend to use DynamoDB
– Wealth of provided AWS SDKs: Java, PHP, Python boto, etc.
– DynamoDB web service facilitates development in any programming language
Move to DynamoDB – Data Migration
• Migration performed in a single 4-hour window
– I/O overhead requires careful balancing to achieve desired processing speeds
– Provisioned throughput was orders of magnitude higher than required for
post-migration load
– Excessive internal partitioning and non-uniform workload lead to
configured/observed throughput mismatch

• Better: dual-writes with multi-phased deployment
Configured

Ideal

Actual
Alive – Client Network Health Checks
• Alive is a mission critical Devicescape service
– Use event data to both bill customers and grow our WiFi database
– 250 million events per day (and growing!)

• Reliable high performance is needed
– Alive is written to DynamoDB within the bounds of a device’s HTTP request
– It must be read from DynamoDB to support real-time processing

• Data is organized as a time series
– Each table represents a particular day in UTC
– The next day’s table is created via a Python script
– We keep up to 60 days worth of data and expire old data based on a
retention policy
Alive – Schema
• Hash key: Timestamp + UUID shard
– Indexed by time
– Writes distributed over 256 hash keys/second

alive_<YYYYMMDD> {
tsUuidShard, string hash key;
uuidIndex string, range key;
index number;
. . .
}

• Collisions are infrequent, but must be handled
– Append index to range key
– Atomic increment index in first item
tsUuidShard

uuid
uuidIndex

1382969157_e2

0e645c9c-08b9-48b4-a5b0-c310957451e2
0e645c9c-08b9-48b4-a5b0-c310957451e2_0

1382969157_1e

c349262e-75a3-444b-9716-20f09823411e
c349262e-75a3-444b-9716-20f09823411e_0

1382969157_1e

c349262e-75a3-444b-9716-20f09823411e
c349262e-75a3-444b-9716-20f09823411e_1

index

1
Alive – Plan for Failure
• Distribute HTTP front ends over 3 Availability Zones
– Amazon DynamoDB and Elastic Load Balancing inherently multi-AZ

• One “Patient uploader” per instance
– HTTPD tries once to DynamoDB ands write to local file on failure
– Patient uploader monitors local file and retries events with backoff
– Operations team alerted if patient uploader is > 1 hour behind
Elastic Load Balancing

AZ-A

AZ-B
HTTP

AZ-C
HTTP

Amazon DynamoDB

HTTP
Alive – Data Processing
• System usage and customer billing
– Alive data is a key component of our connection detail record (CDR)
– We have a processor running 2 hours behind current time that queries
each second’s event data
• Multiple threads access 1 shard each

• Near real-time WiFi data improvement
– Alive helps us quickly discover high-quality access points
– Processor running 5 minutes behind current time

• Batch processing

– Daily extraction to Amazon S3 allows us to perform counting and
aggregation of the alive data in Amazon EMR with HBase and Hive
– We can perform broader trend analysis on the data that is not feasible
in real-time
After: How Devicescape uses DynamoDB
•
•
•
•

Critical ‘online’ services principally on DynamoDB
Infrastructure cost savings of 30%
Greatly reduced DB maintenance
New developments use DynamoDB
AZ-A
Amazon EMR

Amazon
DynamoDB
Amazon S3

CloudWatch
ElastiCache
HTTP

AZ-B
Amazon
Application
HTTP
DynamoDB
Beyond: Future Plans
• Move more into DynamoDB!
– Some other data sources that we thought could remain in MySQL
(e.g. event logs) have already begun to hit pain points.

• Investigate new Geospatial Library
– We have worried about how our Geohash + Memcache + MySQL
solution for WiFi geolocation data would translate into the DynamoDB
and NoSQL worlds.
– Eventually the costs of scaling theses datasources in our handcrafted
MySQL sharding solution will become prohibitive.

• Use DynamoDB Local
– Incorporate private, local DynamoDB version into developer sandboxes
Thanks!
David Tuttle
dtuttle@devicescape.com

We are hiring!
www.devicescape.com/company/careers
@devicescape
+ Amazon DynamoDB
Greg Nelson

November 15, 2013

© 2013 Amazon.com, Inc. and its affiliates. All rights reserved. May not be copied, modified, or distributed in whole or in part without the express consent of Amazon.com, Inc.
What is Dropcam?
•
•
•
•
•

Software company in SF
Wi-Fi enabled camera
Intelligent activity recognition
Apps (iOS, Android, Web)
Cloud recording
Dropcam Uses
Home security

Burglar caught – Bellevue, WA

Pets

Woodland Park Zoo – Seattle, WA

Family

Baby

Dropcam employee

Small business

The Baconery - NYC

Kyra – N. Virginia

Just because

Toyota dealer saw I-5 bridge collapse
Cloud Recording (CVR)
• Continuous recording to the cloud
• Accessible instantly from anywhere
• Activity recognition
– Motion detection
– Machine learning

$9.95 / mo.

$29.95 / mo.
Scalability Challenges
More incoming video than YouTube
Suddenly petabytes

Move to AWS
cameras

2009

2010

2011

2012

2013
Evolution to the Cloud
Traditional managed hosting
Amazon S3

Amazon EC2

Amazon
SimpleDB

Amazon
DynamoDB
Dropcam on AWS
PostgreSQL

CVR

Nexus
(Scala)

Web
Amazon S3

Amazon
DynamoDB

Streaming

Cameras

(Python)

HTTPS

Users
Dropcam on Amazon DynamoDB
• camera_records
– metadata about cameras

• cuepoints
– metadata about activity

• recording_sessions
– metadata about CVR data in S3

• user_sessions
– session data for logged-in user

case class CameraRecord(
cameraId: Int,
// hash key
ownerId: Int,
subscribers: Set[Int],
hoursOfRecording: Int,
...
)
case class Cuepoint(
cameraId: Int,
// hash key
timestamp: Long, // range key
type: String,
...
)
Example: Cuepoints
• Activity detected  PutItem
– camera_id, timestamp, type (motion, sound, etc.), other data…

• Activity recognized  UpdateItem
– category_id

• Available via API  Query
– Get all for camera_id, or
– Get all for camera_id BETWEEN start_time and end_time

• Expire after 7 days (or 30 days)  BatchWriteItem (delete)
– Periodically, per camera: query where timestamp < now - 7 days, then delete
– Spikes chew up IOPS  self-throttling
– Another approach: table per week, DeleteTable after 5 weeks

Cuepoints
...Not That Simple
• “Eventual consistency”
• Choosing hash key == sharding
– Important up-front design decision
– Ensure uniform access over your key space!

• IOs are front-and-center
– Actually, even harder: IOs Per Second

• Throttling behavior is opaque
– Actively watch for throttled responses

• No built-in expiration
Less is More
• The right set of tradeoffs
• Managed NoSQL
– Focus on our own software and product

•
•
•
•
•

Scales easily with our business
High availability
Very fast (SSDs)
Predictable performance
Inexpensive
Thanks!
Greg Nelson
grourk@dropcam.com
We are hiring!
http://dropcam.com/jobs
@dropcam
Please give us your feedback on this
presentation

DAT304
As a thank you, we will select prize
winners daily for completed surveys!

More Related Content

What's hot

I'm in your cloud... reading everyone's email. Hacking Azure AD via Active Di...
I'm in your cloud... reading everyone's email. Hacking Azure AD via Active Di...I'm in your cloud... reading everyone's email. Hacking Azure AD via Active Di...
I'm in your cloud... reading everyone's email. Hacking Azure AD via Active Di...DirkjanMollema
 
Running Kubernetes with Amazon EKS - AWS Online Tech Talks
Running Kubernetes with Amazon EKS - AWS Online Tech TalksRunning Kubernetes with Amazon EKS - AWS Online Tech Talks
Running Kubernetes with Amazon EKS - AWS Online Tech TalksAmazon Web Services
 
높은 가용성과 성능 향상을 위한 ElastiCache 활용 팁 - 임근택, SendBird :: AWS Summit Seoul 2019
높은 가용성과 성능 향상을 위한 ElastiCache 활용 팁 - 임근택, SendBird :: AWS Summit Seoul 2019 높은 가용성과 성능 향상을 위한 ElastiCache 활용 팁 - 임근택, SendBird :: AWS Summit Seoul 2019
높은 가용성과 성능 향상을 위한 ElastiCache 활용 팁 - 임근택, SendBird :: AWS Summit Seoul 2019 Amazon Web Services Korea
 
Cross-account encryption with AWS KMS and Slack Enterprise Key Management - S...
Cross-account encryption with AWS KMS and Slack Enterprise Key Management - S...Cross-account encryption with AWS KMS and Slack Enterprise Key Management - S...
Cross-account encryption with AWS KMS and Slack Enterprise Key Management - S...Amazon Web Services
 
Architecture Patterns for Multi-Region Active-Active Applications (ARC209-R2)...
Architecture Patterns for Multi-Region Active-Active Applications (ARC209-R2)...Architecture Patterns for Multi-Region Active-Active Applications (ARC209-R2)...
Architecture Patterns for Multi-Region Active-Active Applications (ARC209-R2)...Amazon Web Services
 
Building Advanced Workflows with AWS Glue (ANT333) - AWS re:Invent 2018
Building Advanced Workflows with AWS Glue (ANT333) - AWS re:Invent 2018Building Advanced Workflows with AWS Glue (ANT333) - AWS re:Invent 2018
Building Advanced Workflows with AWS Glue (ANT333) - AWS re:Invent 2018Amazon Web Services
 
Streaming Analytics with Spark, Kafka, Cassandra and Akka by Helena Edelson
Streaming Analytics with Spark, Kafka, Cassandra and Akka by Helena EdelsonStreaming Analytics with Spark, Kafka, Cassandra and Akka by Helena Edelson
Streaming Analytics with Spark, Kafka, Cassandra and Akka by Helena EdelsonSpark Summit
 
Route53 및 CloudFront를 이용한 CDN 활용기 - AWS Summit Seoul 2017
Route53 및 CloudFront를 이용한 CDN 활용기 - AWS Summit Seoul 2017Route53 및 CloudFront를 이용한 CDN 활용기 - AWS Summit Seoul 2017
Route53 및 CloudFront를 이용한 CDN 활용기 - AWS Summit Seoul 2017Amazon Web Services Korea
 
ELK in Security Analytics
ELK in Security Analytics ELK in Security Analytics
ELK in Security Analytics nullowaspmumbai
 
How encryption works in AWS: What assurances do you have that unauthorized us...
How encryption works in AWS: What assurances do you have that unauthorized us...How encryption works in AWS: What assurances do you have that unauthorized us...
How encryption works in AWS: What assurances do you have that unauthorized us...Amazon Web Services
 
AWS Fargate와 Amazon ECS를 활용한 CI/CD 모범사례 - 유재석, AWS 솔루션즈 아키텍트 :: AWS Game Mast...
AWS Fargate와 Amazon ECS를 활용한 CI/CD 모범사례 - 유재석, AWS 솔루션즈 아키텍트 :: AWS Game Mast...AWS Fargate와 Amazon ECS를 활용한 CI/CD 모범사례 - 유재석, AWS 솔루션즈 아키텍트 :: AWS Game Mast...
AWS Fargate와 Amazon ECS를 활용한 CI/CD 모범사례 - 유재석, AWS 솔루션즈 아키텍트 :: AWS Game Mast...Amazon Web Services Korea
 
Visualizing Big Data Insights with Amazon QuickSight
Visualizing Big Data Insights with Amazon QuickSightVisualizing Big Data Insights with Amazon QuickSight
Visualizing Big Data Insights with Amazon QuickSightAmazon Web Services
 
클라우드 기반 데이터 분석 및 인공 지능을 위한 비지니스 혁신 - 윤석찬 (AWS 테크에반젤리스트)
클라우드 기반 데이터 분석 및 인공 지능을 위한 비지니스 혁신 - 윤석찬 (AWS 테크에반젤리스트)클라우드 기반 데이터 분석 및 인공 지능을 위한 비지니스 혁신 - 윤석찬 (AWS 테크에반젤리스트)
클라우드 기반 데이터 분석 및 인공 지능을 위한 비지니스 혁신 - 윤석찬 (AWS 테크에반젤리스트)Amazon Web Services Korea
 
REST Service Authetication with TLS & JWTs
REST Service Authetication with TLS & JWTsREST Service Authetication with TLS & JWTs
REST Service Authetication with TLS & JWTsJon Todd
 
From Postgres to Event-Driven: using docker-compose to build CDC pipelines in...
From Postgres to Event-Driven: using docker-compose to build CDC pipelines in...From Postgres to Event-Driven: using docker-compose to build CDC pipelines in...
From Postgres to Event-Driven: using docker-compose to build CDC pipelines in...confluent
 
Amazon EKS multi-cluster gitops-bridge
Amazon EKS multi-cluster gitops-bridgeAmazon EKS multi-cluster gitops-bridge
Amazon EKS multi-cluster gitops-bridgeCarlos Santana
 
API Security : Patterns and Practices
API Security : Patterns and PracticesAPI Security : Patterns and Practices
API Security : Patterns and PracticesPrabath Siriwardena
 

What's hot (20)

Amazon EFS: Deep Dive
Amazon EFS: Deep DiveAmazon EFS: Deep Dive
Amazon EFS: Deep Dive
 
I'm in your cloud... reading everyone's email. Hacking Azure AD via Active Di...
I'm in your cloud... reading everyone's email. Hacking Azure AD via Active Di...I'm in your cloud... reading everyone's email. Hacking Azure AD via Active Di...
I'm in your cloud... reading everyone's email. Hacking Azure AD via Active Di...
 
Running Kubernetes with Amazon EKS - AWS Online Tech Talks
Running Kubernetes with Amazon EKS - AWS Online Tech TalksRunning Kubernetes with Amazon EKS - AWS Online Tech Talks
Running Kubernetes with Amazon EKS - AWS Online Tech Talks
 
높은 가용성과 성능 향상을 위한 ElastiCache 활용 팁 - 임근택, SendBird :: AWS Summit Seoul 2019
높은 가용성과 성능 향상을 위한 ElastiCache 활용 팁 - 임근택, SendBird :: AWS Summit Seoul 2019 높은 가용성과 성능 향상을 위한 ElastiCache 활용 팁 - 임근택, SendBird :: AWS Summit Seoul 2019
높은 가용성과 성능 향상을 위한 ElastiCache 활용 팁 - 임근택, SendBird :: AWS Summit Seoul 2019
 
Cross-account encryption with AWS KMS and Slack Enterprise Key Management - S...
Cross-account encryption with AWS KMS and Slack Enterprise Key Management - S...Cross-account encryption with AWS KMS and Slack Enterprise Key Management - S...
Cross-account encryption with AWS KMS and Slack Enterprise Key Management - S...
 
Architecture Patterns for Multi-Region Active-Active Applications (ARC209-R2)...
Architecture Patterns for Multi-Region Active-Active Applications (ARC209-R2)...Architecture Patterns for Multi-Region Active-Active Applications (ARC209-R2)...
Architecture Patterns for Multi-Region Active-Active Applications (ARC209-R2)...
 
Building Advanced Workflows with AWS Glue (ANT333) - AWS re:Invent 2018
Building Advanced Workflows with AWS Glue (ANT333) - AWS re:Invent 2018Building Advanced Workflows with AWS Glue (ANT333) - AWS re:Invent 2018
Building Advanced Workflows with AWS Glue (ANT333) - AWS re:Invent 2018
 
Streaming Analytics with Spark, Kafka, Cassandra and Akka by Helena Edelson
Streaming Analytics with Spark, Kafka, Cassandra and Akka by Helena EdelsonStreaming Analytics with Spark, Kafka, Cassandra and Akka by Helena Edelson
Streaming Analytics with Spark, Kafka, Cassandra and Akka by Helena Edelson
 
Route53 및 CloudFront를 이용한 CDN 활용기 - AWS Summit Seoul 2017
Route53 및 CloudFront를 이용한 CDN 활용기 - AWS Summit Seoul 2017Route53 및 CloudFront를 이용한 CDN 활용기 - AWS Summit Seoul 2017
Route53 및 CloudFront를 이용한 CDN 활용기 - AWS Summit Seoul 2017
 
ELK in Security Analytics
ELK in Security Analytics ELK in Security Analytics
ELK in Security Analytics
 
How encryption works in AWS: What assurances do you have that unauthorized us...
How encryption works in AWS: What assurances do you have that unauthorized us...How encryption works in AWS: What assurances do you have that unauthorized us...
How encryption works in AWS: What assurances do you have that unauthorized us...
 
AWS Fargate와 Amazon ECS를 활용한 CI/CD 모범사례 - 유재석, AWS 솔루션즈 아키텍트 :: AWS Game Mast...
AWS Fargate와 Amazon ECS를 활용한 CI/CD 모범사례 - 유재석, AWS 솔루션즈 아키텍트 :: AWS Game Mast...AWS Fargate와 Amazon ECS를 활용한 CI/CD 모범사례 - 유재석, AWS 솔루션즈 아키텍트 :: AWS Game Mast...
AWS Fargate와 Amazon ECS를 활용한 CI/CD 모범사례 - 유재석, AWS 솔루션즈 아키텍트 :: AWS Game Mast...
 
Visualizing Big Data Insights with Amazon QuickSight
Visualizing Big Data Insights with Amazon QuickSightVisualizing Big Data Insights with Amazon QuickSight
Visualizing Big Data Insights with Amazon QuickSight
 
Becoming an IAM Policy Ninja
Becoming an IAM Policy NinjaBecoming an IAM Policy Ninja
Becoming an IAM Policy Ninja
 
클라우드 기반 데이터 분석 및 인공 지능을 위한 비지니스 혁신 - 윤석찬 (AWS 테크에반젤리스트)
클라우드 기반 데이터 분석 및 인공 지능을 위한 비지니스 혁신 - 윤석찬 (AWS 테크에반젤리스트)클라우드 기반 데이터 분석 및 인공 지능을 위한 비지니스 혁신 - 윤석찬 (AWS 테크에반젤리스트)
클라우드 기반 데이터 분석 및 인공 지능을 위한 비지니스 혁신 - 윤석찬 (AWS 테크에반젤리스트)
 
REST Service Authetication with TLS & JWTs
REST Service Authetication with TLS & JWTsREST Service Authetication with TLS & JWTs
REST Service Authetication with TLS & JWTs
 
From Postgres to Event-Driven: using docker-compose to build CDC pipelines in...
From Postgres to Event-Driven: using docker-compose to build CDC pipelines in...From Postgres to Event-Driven: using docker-compose to build CDC pipelines in...
From Postgres to Event-Driven: using docker-compose to build CDC pipelines in...
 
Amazon EKS multi-cluster gitops-bridge
Amazon EKS multi-cluster gitops-bridgeAmazon EKS multi-cluster gitops-bridge
Amazon EKS multi-cluster gitops-bridge
 
AWS DynamoDB and Schema Design
AWS DynamoDB and Schema DesignAWS DynamoDB and Schema Design
AWS DynamoDB and Schema Design
 
API Security : Patterns and Practices
API Security : Patterns and PracticesAPI Security : Patterns and Practices
API Security : Patterns and Practices
 

Similar to Mastering NoSQL Advanced Design

Application Development and Data Modeling on Amazon DynamoDB
Application Development and Data Modeling on Amazon DynamoDBApplication Development and Data Modeling on Amazon DynamoDB
Application Development and Data Modeling on Amazon DynamoDBAmazon Web Services Japan
 
AWS Webcast - Data Modeling and Best Practices for Scaling your Application w...
AWS Webcast - Data Modeling and Best Practices for Scaling your Application w...AWS Webcast - Data Modeling and Best Practices for Scaling your Application w...
AWS Webcast - Data Modeling and Best Practices for Scaling your Application w...Amazon Web Services
 
(BDT203) From Zero to NoSQL Hero: Amazon DynamoDB Tutorial | AWS re:Invent 2014
(BDT203) From Zero to NoSQL Hero: Amazon DynamoDB Tutorial | AWS re:Invent 2014(BDT203) From Zero to NoSQL Hero: Amazon DynamoDB Tutorial | AWS re:Invent 2014
(BDT203) From Zero to NoSQL Hero: Amazon DynamoDB Tutorial | AWS re:Invent 2014Amazon Web Services
 
DynamoDB as a Secondary Language - Pop-up Loft Tel Aviv
DynamoDB as a Secondary Language - Pop-up Loft Tel AvivDynamoDB as a Secondary Language - Pop-up Loft Tel Aviv
DynamoDB as a Secondary Language - Pop-up Loft Tel AvivAmazon Web Services
 
Neo4j 20 minutes introduction
Neo4j 20 minutes introductionNeo4j 20 minutes introduction
Neo4j 20 minutes introductionAndrás Fehér
 
DynamoDB In-depth & Developer Drill Down
DynamoDB In-depth & Developer Drill Down DynamoDB In-depth & Developer Drill Down
DynamoDB In-depth & Developer Drill Down Amazon Web Services
 
Eventual Consistency - Desining Fail Proof Systems
Eventual Consistency - Desining Fail Proof SystemsEventual Consistency - Desining Fail Proof Systems
Eventual Consistency - Desining Fail Proof SystemsGrzegorz Skorupa
 
개발자가 알아야 할 Amazon DynamoDB 활용법 :: 김일호 :: AWS Summit Seoul 2016
개발자가 알아야 할 Amazon DynamoDB 활용법 :: 김일호 :: AWS Summit Seoul 2016개발자가 알아야 할 Amazon DynamoDB 활용법 :: 김일호 :: AWS Summit Seoul 2016
개발자가 알아야 할 Amazon DynamoDB 활용법 :: 김일호 :: AWS Summit Seoul 2016Amazon Web Services Korea
 
A Little Graph Theory for the Busy Developer - Jim Webber @ GraphConnect Chic...
A Little Graph Theory for the Busy Developer - Jim Webber @ GraphConnect Chic...A Little Graph Theory for the Busy Developer - Jim Webber @ GraphConnect Chic...
A Little Graph Theory for the Busy Developer - Jim Webber @ GraphConnect Chic...Neo4j
 
Data storage systems
Data storage systemsData storage systems
Data storage systemsdelimitry
 
BUILDING WHILE FLYING
BUILDING WHILE FLYINGBUILDING WHILE FLYING
BUILDING WHILE FLYINGKamal Shannak
 
Will Lyon- Entity Resolution
Will Lyon- Entity ResolutionWill Lyon- Entity Resolution
Will Lyon- Entity ResolutionNeo4j
 
Scalable Time-Versioning Support for Property Graph Databases
Scalable Time-Versioning Support for Property Graph DatabasesScalable Time-Versioning Support for Property Graph Databases
Scalable Time-Versioning Support for Property Graph DatabasesJinho Lee
 

Similar to Mastering NoSQL Advanced Design (15)

Application Development and Data Modeling on Amazon DynamoDB
Application Development and Data Modeling on Amazon DynamoDBApplication Development and Data Modeling on Amazon DynamoDB
Application Development and Data Modeling on Amazon DynamoDB
 
AWS Webcast - Data Modeling and Best Practices for Scaling your Application w...
AWS Webcast - Data Modeling and Best Practices for Scaling your Application w...AWS Webcast - Data Modeling and Best Practices for Scaling your Application w...
AWS Webcast - Data Modeling and Best Practices for Scaling your Application w...
 
(BDT203) From Zero to NoSQL Hero: Amazon DynamoDB Tutorial | AWS re:Invent 2014
(BDT203) From Zero to NoSQL Hero: Amazon DynamoDB Tutorial | AWS re:Invent 2014(BDT203) From Zero to NoSQL Hero: Amazon DynamoDB Tutorial | AWS re:Invent 2014
(BDT203) From Zero to NoSQL Hero: Amazon DynamoDB Tutorial | AWS re:Invent 2014
 
DynamoDB as a Secondary Language - Pop-up Loft Tel Aviv
DynamoDB as a Secondary Language - Pop-up Loft Tel AvivDynamoDB as a Secondary Language - Pop-up Loft Tel Aviv
DynamoDB as a Secondary Language - Pop-up Loft Tel Aviv
 
Amazon DynamoDB Workshop
Amazon DynamoDB WorkshopAmazon DynamoDB Workshop
Amazon DynamoDB Workshop
 
Neo4j 20 minutes introduction
Neo4j 20 minutes introductionNeo4j 20 minutes introduction
Neo4j 20 minutes introduction
 
DynamoDB In-depth & Developer Drill Down
DynamoDB In-depth & Developer Drill Down DynamoDB In-depth & Developer Drill Down
DynamoDB In-depth & Developer Drill Down
 
Eventual Consistency - Desining Fail Proof Systems
Eventual Consistency - Desining Fail Proof SystemsEventual Consistency - Desining Fail Proof Systems
Eventual Consistency - Desining Fail Proof Systems
 
Neo4J
Neo4JNeo4J
Neo4J
 
개발자가 알아야 할 Amazon DynamoDB 활용법 :: 김일호 :: AWS Summit Seoul 2016
개발자가 알아야 할 Amazon DynamoDB 활용법 :: 김일호 :: AWS Summit Seoul 2016개발자가 알아야 할 Amazon DynamoDB 활용법 :: 김일호 :: AWS Summit Seoul 2016
개발자가 알아야 할 Amazon DynamoDB 활용법 :: 김일호 :: AWS Summit Seoul 2016
 
A Little Graph Theory for the Busy Developer - Jim Webber @ GraphConnect Chic...
A Little Graph Theory for the Busy Developer - Jim Webber @ GraphConnect Chic...A Little Graph Theory for the Busy Developer - Jim Webber @ GraphConnect Chic...
A Little Graph Theory for the Busy Developer - Jim Webber @ GraphConnect Chic...
 
Data storage systems
Data storage systemsData storage systems
Data storage systems
 
BUILDING WHILE FLYING
BUILDING WHILE FLYINGBUILDING WHILE FLYING
BUILDING WHILE FLYING
 
Will Lyon- Entity Resolution
Will Lyon- Entity ResolutionWill Lyon- Entity Resolution
Will Lyon- Entity Resolution
 
Scalable Time-Versioning Support for Property Graph Databases
Scalable Time-Versioning Support for Property Graph DatabasesScalable Time-Versioning Support for Property Graph Databases
Scalable Time-Versioning Support for Property Graph Databases
 

More from Amazon Web Services

Come costruire servizi di Forecasting sfruttando algoritmi di ML e deep learn...
Come costruire servizi di Forecasting sfruttando algoritmi di ML e deep learn...Come costruire servizi di Forecasting sfruttando algoritmi di ML e deep learn...
Come costruire servizi di Forecasting sfruttando algoritmi di ML e deep learn...Amazon Web Services
 
Big Data per le Startup: come creare applicazioni Big Data in modalità Server...
Big Data per le Startup: come creare applicazioni Big Data in modalità Server...Big Data per le Startup: come creare applicazioni Big Data in modalità Server...
Big Data per le Startup: come creare applicazioni Big Data in modalità Server...Amazon Web Services
 
Esegui pod serverless con Amazon EKS e AWS Fargate
Esegui pod serverless con Amazon EKS e AWS FargateEsegui pod serverless con Amazon EKS e AWS Fargate
Esegui pod serverless con Amazon EKS e AWS FargateAmazon Web Services
 
Costruire Applicazioni Moderne con AWS
Costruire Applicazioni Moderne con AWSCostruire Applicazioni Moderne con AWS
Costruire Applicazioni Moderne con AWSAmazon Web Services
 
Come spendere fino al 90% in meno con i container e le istanze spot
Come spendere fino al 90% in meno con i container e le istanze spot Come spendere fino al 90% in meno con i container e le istanze spot
Come spendere fino al 90% in meno con i container e le istanze spot Amazon Web Services
 
Rendi unica l’offerta della tua startup sul mercato con i servizi Machine Lea...
Rendi unica l’offerta della tua startup sul mercato con i servizi Machine Lea...Rendi unica l’offerta della tua startup sul mercato con i servizi Machine Lea...
Rendi unica l’offerta della tua startup sul mercato con i servizi Machine Lea...Amazon Web Services
 
OpsWorks Configuration Management: automatizza la gestione e i deployment del...
OpsWorks Configuration Management: automatizza la gestione e i deployment del...OpsWorks Configuration Management: automatizza la gestione e i deployment del...
OpsWorks Configuration Management: automatizza la gestione e i deployment del...Amazon Web Services
 
Microsoft Active Directory su AWS per supportare i tuoi Windows Workloads
Microsoft Active Directory su AWS per supportare i tuoi Windows WorkloadsMicrosoft Active Directory su AWS per supportare i tuoi Windows Workloads
Microsoft Active Directory su AWS per supportare i tuoi Windows WorkloadsAmazon Web Services
 
Database Oracle e VMware Cloud on AWS i miti da sfatare
Database Oracle e VMware Cloud on AWS i miti da sfatareDatabase Oracle e VMware Cloud on AWS i miti da sfatare
Database Oracle e VMware Cloud on AWS i miti da sfatareAmazon Web Services
 
Crea la tua prima serverless ledger-based app con QLDB e NodeJS
Crea la tua prima serverless ledger-based app con QLDB e NodeJSCrea la tua prima serverless ledger-based app con QLDB e NodeJS
Crea la tua prima serverless ledger-based app con QLDB e NodeJSAmazon Web Services
 
API moderne real-time per applicazioni mobili e web
API moderne real-time per applicazioni mobili e webAPI moderne real-time per applicazioni mobili e web
API moderne real-time per applicazioni mobili e webAmazon Web Services
 
Database Oracle e VMware Cloud™ on AWS: i miti da sfatare
Database Oracle e VMware Cloud™ on AWS: i miti da sfatareDatabase Oracle e VMware Cloud™ on AWS: i miti da sfatare
Database Oracle e VMware Cloud™ on AWS: i miti da sfatareAmazon Web Services
 
Tools for building your MVP on AWS
Tools for building your MVP on AWSTools for building your MVP on AWS
Tools for building your MVP on AWSAmazon Web Services
 
How to Build a Winning Pitch Deck
How to Build a Winning Pitch DeckHow to Build a Winning Pitch Deck
How to Build a Winning Pitch DeckAmazon Web Services
 
Building a web application without servers
Building a web application without serversBuilding a web application without servers
Building a web application without serversAmazon Web Services
 
AWS_HK_StartupDay_Building Interactive websites while automating for efficien...
AWS_HK_StartupDay_Building Interactive websites while automating for efficien...AWS_HK_StartupDay_Building Interactive websites while automating for efficien...
AWS_HK_StartupDay_Building Interactive websites while automating for efficien...Amazon Web Services
 
Introduzione a Amazon Elastic Container Service
Introduzione a Amazon Elastic Container ServiceIntroduzione a Amazon Elastic Container Service
Introduzione a Amazon Elastic Container ServiceAmazon Web Services
 

More from Amazon Web Services (20)

Come costruire servizi di Forecasting sfruttando algoritmi di ML e deep learn...
Come costruire servizi di Forecasting sfruttando algoritmi di ML e deep learn...Come costruire servizi di Forecasting sfruttando algoritmi di ML e deep learn...
Come costruire servizi di Forecasting sfruttando algoritmi di ML e deep learn...
 
Big Data per le Startup: come creare applicazioni Big Data in modalità Server...
Big Data per le Startup: come creare applicazioni Big Data in modalità Server...Big Data per le Startup: come creare applicazioni Big Data in modalità Server...
Big Data per le Startup: come creare applicazioni Big Data in modalità Server...
 
Esegui pod serverless con Amazon EKS e AWS Fargate
Esegui pod serverless con Amazon EKS e AWS FargateEsegui pod serverless con Amazon EKS e AWS Fargate
Esegui pod serverless con Amazon EKS e AWS Fargate
 
Costruire Applicazioni Moderne con AWS
Costruire Applicazioni Moderne con AWSCostruire Applicazioni Moderne con AWS
Costruire Applicazioni Moderne con AWS
 
Come spendere fino al 90% in meno con i container e le istanze spot
Come spendere fino al 90% in meno con i container e le istanze spot Come spendere fino al 90% in meno con i container e le istanze spot
Come spendere fino al 90% in meno con i container e le istanze spot
 
Open banking as a service
Open banking as a serviceOpen banking as a service
Open banking as a service
 
Rendi unica l’offerta della tua startup sul mercato con i servizi Machine Lea...
Rendi unica l’offerta della tua startup sul mercato con i servizi Machine Lea...Rendi unica l’offerta della tua startup sul mercato con i servizi Machine Lea...
Rendi unica l’offerta della tua startup sul mercato con i servizi Machine Lea...
 
OpsWorks Configuration Management: automatizza la gestione e i deployment del...
OpsWorks Configuration Management: automatizza la gestione e i deployment del...OpsWorks Configuration Management: automatizza la gestione e i deployment del...
OpsWorks Configuration Management: automatizza la gestione e i deployment del...
 
Microsoft Active Directory su AWS per supportare i tuoi Windows Workloads
Microsoft Active Directory su AWS per supportare i tuoi Windows WorkloadsMicrosoft Active Directory su AWS per supportare i tuoi Windows Workloads
Microsoft Active Directory su AWS per supportare i tuoi Windows Workloads
 
Computer Vision con AWS
Computer Vision con AWSComputer Vision con AWS
Computer Vision con AWS
 
Database Oracle e VMware Cloud on AWS i miti da sfatare
Database Oracle e VMware Cloud on AWS i miti da sfatareDatabase Oracle e VMware Cloud on AWS i miti da sfatare
Database Oracle e VMware Cloud on AWS i miti da sfatare
 
Crea la tua prima serverless ledger-based app con QLDB e NodeJS
Crea la tua prima serverless ledger-based app con QLDB e NodeJSCrea la tua prima serverless ledger-based app con QLDB e NodeJS
Crea la tua prima serverless ledger-based app con QLDB e NodeJS
 
API moderne real-time per applicazioni mobili e web
API moderne real-time per applicazioni mobili e webAPI moderne real-time per applicazioni mobili e web
API moderne real-time per applicazioni mobili e web
 
Database Oracle e VMware Cloud™ on AWS: i miti da sfatare
Database Oracle e VMware Cloud™ on AWS: i miti da sfatareDatabase Oracle e VMware Cloud™ on AWS: i miti da sfatare
Database Oracle e VMware Cloud™ on AWS: i miti da sfatare
 
Tools for building your MVP on AWS
Tools for building your MVP on AWSTools for building your MVP on AWS
Tools for building your MVP on AWS
 
How to Build a Winning Pitch Deck
How to Build a Winning Pitch DeckHow to Build a Winning Pitch Deck
How to Build a Winning Pitch Deck
 
Building a web application without servers
Building a web application without serversBuilding a web application without servers
Building a web application without servers
 
Fundraising Essentials
Fundraising EssentialsFundraising Essentials
Fundraising Essentials
 
AWS_HK_StartupDay_Building Interactive websites while automating for efficien...
AWS_HK_StartupDay_Building Interactive websites while automating for efficien...AWS_HK_StartupDay_Building Interactive websites while automating for efficien...
AWS_HK_StartupDay_Building Interactive websites while automating for efficien...
 
Introduzione a Amazon Elastic Container Service
Introduzione a Amazon Elastic Container ServiceIntroduzione a Amazon Elastic Container Service
Introduzione a Amazon Elastic Container Service
 

Recently uploaded

DevEX - reference for building teams, processes, and platforms
DevEX - reference for building teams, processes, and platformsDevEX - reference for building teams, processes, and platforms
DevEX - reference for building teams, processes, and platformsSergiu Bodiu
 
Tech-Forward - Achieving Business Readiness For Copilot in Microsoft 365
Tech-Forward - Achieving Business Readiness For Copilot in Microsoft 365Tech-Forward - Achieving Business Readiness For Copilot in Microsoft 365
Tech-Forward - Achieving Business Readiness For Copilot in Microsoft 3652toLead Limited
 
Unraveling Multimodality with Large Language Models.pdf
Unraveling Multimodality with Large Language Models.pdfUnraveling Multimodality with Large Language Models.pdf
Unraveling Multimodality with Large Language Models.pdfAlex Barbosa Coqueiro
 
Automating Business Process via MuleSoft Composer | Bangalore MuleSoft Meetup...
Automating Business Process via MuleSoft Composer | Bangalore MuleSoft Meetup...Automating Business Process via MuleSoft Composer | Bangalore MuleSoft Meetup...
Automating Business Process via MuleSoft Composer | Bangalore MuleSoft Meetup...shyamraj55
 
Bun (KitWorks Team Study 노별마루 발표 2024.4.22)
Bun (KitWorks Team Study 노별마루 발표 2024.4.22)Bun (KitWorks Team Study 노별마루 발표 2024.4.22)
Bun (KitWorks Team Study 노별마루 발표 2024.4.22)Wonjun Hwang
 
"LLMs for Python Engineers: Advanced Data Analysis and Semantic Kernel",Oleks...
"LLMs for Python Engineers: Advanced Data Analysis and Semantic Kernel",Oleks..."LLMs for Python Engineers: Advanced Data Analysis and Semantic Kernel",Oleks...
"LLMs for Python Engineers: Advanced Data Analysis and Semantic Kernel",Oleks...Fwdays
 
"Federated learning: out of reach no matter how close",Oleksandr Lapshyn
"Federated learning: out of reach no matter how close",Oleksandr Lapshyn"Federated learning: out of reach no matter how close",Oleksandr Lapshyn
"Federated learning: out of reach no matter how close",Oleksandr LapshynFwdays
 
Understanding the Laravel MVC Architecture
Understanding the Laravel MVC ArchitectureUnderstanding the Laravel MVC Architecture
Understanding the Laravel MVC ArchitecturePixlogix Infotech
 
Are Multi-Cloud and Serverless Good or Bad?
Are Multi-Cloud and Serverless Good or Bad?Are Multi-Cloud and Serverless Good or Bad?
Are Multi-Cloud and Serverless Good or Bad?Mattias Andersson
 
Powerpoint exploring the locations used in television show Time Clash
Powerpoint exploring the locations used in television show Time ClashPowerpoint exploring the locations used in television show Time Clash
Powerpoint exploring the locations used in television show Time Clashcharlottematthew16
 
SQL Database Design For Developers at php[tek] 2024
SQL Database Design For Developers at php[tek] 2024SQL Database Design For Developers at php[tek] 2024
SQL Database Design For Developers at php[tek] 2024Scott Keck-Warren
 
New from BookNet Canada for 2024: BNC CataList - Tech Forum 2024
New from BookNet Canada for 2024: BNC CataList - Tech Forum 2024New from BookNet Canada for 2024: BNC CataList - Tech Forum 2024
New from BookNet Canada for 2024: BNC CataList - Tech Forum 2024BookNet Canada
 
Pigging Solutions in Pet Food Manufacturing
Pigging Solutions in Pet Food ManufacturingPigging Solutions in Pet Food Manufacturing
Pigging Solutions in Pet Food ManufacturingPigging Solutions
 
Kotlin Multiplatform & Compose Multiplatform - Starter kit for pragmatics
Kotlin Multiplatform & Compose Multiplatform - Starter kit for pragmaticsKotlin Multiplatform & Compose Multiplatform - Starter kit for pragmatics
Kotlin Multiplatform & Compose Multiplatform - Starter kit for pragmaticscarlostorres15106
 
Advanced Test Driven-Development @ php[tek] 2024
Advanced Test Driven-Development @ php[tek] 2024Advanced Test Driven-Development @ php[tek] 2024
Advanced Test Driven-Development @ php[tek] 2024Scott Keck-Warren
 
Connect Wave/ connectwave Pitch Deck Presentation
Connect Wave/ connectwave Pitch Deck PresentationConnect Wave/ connectwave Pitch Deck Presentation
Connect Wave/ connectwave Pitch Deck PresentationSlibray Presentation
 
"Subclassing and Composition – A Pythonic Tour of Trade-Offs", Hynek Schlawack
"Subclassing and Composition – A Pythonic Tour of Trade-Offs", Hynek Schlawack"Subclassing and Composition – A Pythonic Tour of Trade-Offs", Hynek Schlawack
"Subclassing and Composition – A Pythonic Tour of Trade-Offs", Hynek SchlawackFwdays
 
Tampa BSides - Chef's Tour of Microsoft Security Adoption Framework (SAF)
Tampa BSides - Chef's Tour of Microsoft Security Adoption Framework (SAF)Tampa BSides - Chef's Tour of Microsoft Security Adoption Framework (SAF)
Tampa BSides - Chef's Tour of Microsoft Security Adoption Framework (SAF)Mark Simos
 
Streamlining Python Development: A Guide to a Modern Project Setup
Streamlining Python Development: A Guide to a Modern Project SetupStreamlining Python Development: A Guide to a Modern Project Setup
Streamlining Python Development: A Guide to a Modern Project SetupFlorian Wilhelm
 

Recently uploaded (20)

DevEX - reference for building teams, processes, and platforms
DevEX - reference for building teams, processes, and platformsDevEX - reference for building teams, processes, and platforms
DevEX - reference for building teams, processes, and platforms
 
Tech-Forward - Achieving Business Readiness For Copilot in Microsoft 365
Tech-Forward - Achieving Business Readiness For Copilot in Microsoft 365Tech-Forward - Achieving Business Readiness For Copilot in Microsoft 365
Tech-Forward - Achieving Business Readiness For Copilot in Microsoft 365
 
Unraveling Multimodality with Large Language Models.pdf
Unraveling Multimodality with Large Language Models.pdfUnraveling Multimodality with Large Language Models.pdf
Unraveling Multimodality with Large Language Models.pdf
 
Automating Business Process via MuleSoft Composer | Bangalore MuleSoft Meetup...
Automating Business Process via MuleSoft Composer | Bangalore MuleSoft Meetup...Automating Business Process via MuleSoft Composer | Bangalore MuleSoft Meetup...
Automating Business Process via MuleSoft Composer | Bangalore MuleSoft Meetup...
 
Bun (KitWorks Team Study 노별마루 발표 2024.4.22)
Bun (KitWorks Team Study 노별마루 발표 2024.4.22)Bun (KitWorks Team Study 노별마루 발표 2024.4.22)
Bun (KitWorks Team Study 노별마루 발표 2024.4.22)
 
"LLMs for Python Engineers: Advanced Data Analysis and Semantic Kernel",Oleks...
"LLMs for Python Engineers: Advanced Data Analysis and Semantic Kernel",Oleks..."LLMs for Python Engineers: Advanced Data Analysis and Semantic Kernel",Oleks...
"LLMs for Python Engineers: Advanced Data Analysis and Semantic Kernel",Oleks...
 
"Federated learning: out of reach no matter how close",Oleksandr Lapshyn
"Federated learning: out of reach no matter how close",Oleksandr Lapshyn"Federated learning: out of reach no matter how close",Oleksandr Lapshyn
"Federated learning: out of reach no matter how close",Oleksandr Lapshyn
 
DMCC Future of Trade Web3 - Special Edition
DMCC Future of Trade Web3 - Special EditionDMCC Future of Trade Web3 - Special Edition
DMCC Future of Trade Web3 - Special Edition
 
Understanding the Laravel MVC Architecture
Understanding the Laravel MVC ArchitectureUnderstanding the Laravel MVC Architecture
Understanding the Laravel MVC Architecture
 
Are Multi-Cloud and Serverless Good or Bad?
Are Multi-Cloud and Serverless Good or Bad?Are Multi-Cloud and Serverless Good or Bad?
Are Multi-Cloud and Serverless Good or Bad?
 
Powerpoint exploring the locations used in television show Time Clash
Powerpoint exploring the locations used in television show Time ClashPowerpoint exploring the locations used in television show Time Clash
Powerpoint exploring the locations used in television show Time Clash
 
SQL Database Design For Developers at php[tek] 2024
SQL Database Design For Developers at php[tek] 2024SQL Database Design For Developers at php[tek] 2024
SQL Database Design For Developers at php[tek] 2024
 
New from BookNet Canada for 2024: BNC CataList - Tech Forum 2024
New from BookNet Canada for 2024: BNC CataList - Tech Forum 2024New from BookNet Canada for 2024: BNC CataList - Tech Forum 2024
New from BookNet Canada for 2024: BNC CataList - Tech Forum 2024
 
Pigging Solutions in Pet Food Manufacturing
Pigging Solutions in Pet Food ManufacturingPigging Solutions in Pet Food Manufacturing
Pigging Solutions in Pet Food Manufacturing
 
Kotlin Multiplatform & Compose Multiplatform - Starter kit for pragmatics
Kotlin Multiplatform & Compose Multiplatform - Starter kit for pragmaticsKotlin Multiplatform & Compose Multiplatform - Starter kit for pragmatics
Kotlin Multiplatform & Compose Multiplatform - Starter kit for pragmatics
 
Advanced Test Driven-Development @ php[tek] 2024
Advanced Test Driven-Development @ php[tek] 2024Advanced Test Driven-Development @ php[tek] 2024
Advanced Test Driven-Development @ php[tek] 2024
 
Connect Wave/ connectwave Pitch Deck Presentation
Connect Wave/ connectwave Pitch Deck PresentationConnect Wave/ connectwave Pitch Deck Presentation
Connect Wave/ connectwave Pitch Deck Presentation
 
"Subclassing and Composition – A Pythonic Tour of Trade-Offs", Hynek Schlawack
"Subclassing and Composition – A Pythonic Tour of Trade-Offs", Hynek Schlawack"Subclassing and Composition – A Pythonic Tour of Trade-Offs", Hynek Schlawack
"Subclassing and Composition – A Pythonic Tour of Trade-Offs", Hynek Schlawack
 
Tampa BSides - Chef's Tour of Microsoft Security Adoption Framework (SAF)
Tampa BSides - Chef's Tour of Microsoft Security Adoption Framework (SAF)Tampa BSides - Chef's Tour of Microsoft Security Adoption Framework (SAF)
Tampa BSides - Chef's Tour of Microsoft Security Adoption Framework (SAF)
 
Streamlining Python Development: A Guide to a Modern Project Setup
Streamlining Python Development: A Guide to a Modern Project SetupStreamlining Python Development: A Guide to a Modern Project Setup
Streamlining Python Development: A Guide to a Modern Project Setup
 

Mastering NoSQL Advanced Design