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

Everything You Didn't Know About Entity SEO
Everything You Didn't Know About Entity SEO Everything You Didn't Know About Entity SEO
Everything You Didn't Know About Entity SEO Sara Taher
 
Hadoop World 2011: Advanced HBase Schema Design
Hadoop World 2011: Advanced HBase Schema DesignHadoop World 2011: Advanced HBase Schema Design
Hadoop World 2011: Advanced HBase Schema DesignCloudera, Inc.
 
MongoDB WiredTiger Internals: Journey To Transactions
MongoDB WiredTiger Internals: Journey To TransactionsMongoDB WiredTiger Internals: Journey To Transactions
MongoDB WiredTiger Internals: Journey To TransactionsMydbops
 
Lazy Load '22 - Performance Mistakes - An HTTP Archive Deep Dive
Lazy Load  '22 - Performance Mistakes - An HTTP Archive Deep DiveLazy Load  '22 - Performance Mistakes - An HTTP Archive Deep Dive
Lazy Load '22 - Performance Mistakes - An HTTP Archive Deep DivePaul Calvano
 
MongoDB Aggregation Performance
MongoDB Aggregation PerformanceMongoDB Aggregation Performance
MongoDB Aggregation PerformanceMongoDB
 
Mining a Large Web Corpus
Mining a Large Web CorpusMining a Large Web Corpus
Mining a Large Web CorpusRobert Meusel
 
Intro to Neo4j and Graph Databases
Intro to Neo4j and Graph DatabasesIntro to Neo4j and Graph Databases
Intro to Neo4j and Graph DatabasesNeo4j
 
MongoDB WiredTiger Internals
MongoDB WiredTiger InternalsMongoDB WiredTiger Internals
MongoDB WiredTiger InternalsNorberto Leite
 
SEO Migration 101, not 404 | BrightonSEO 2021
SEO Migration 101, not 404 | BrightonSEO 2021SEO Migration 101, not 404 | BrightonSEO 2021
SEO Migration 101, not 404 | BrightonSEO 2021Stickyeyes
 
MongoDB World 2019: Tips and Tricks++ for Querying and Indexing MongoDB
MongoDB World 2019: Tips and Tricks++ for Querying and Indexing MongoDBMongoDB World 2019: Tips and Tricks++ for Querying and Indexing MongoDB
MongoDB World 2019: Tips and Tricks++ for Querying and Indexing MongoDBMongoDB
 
The Really Advanced Technical SEO Presentation
The Really Advanced Technical SEO PresentationThe Really Advanced Technical SEO Presentation
The Really Advanced Technical SEO PresentationRohan Ayyar
 
BlueHat v18 || Return of the kernel rootkit malware (on windows 10)
BlueHat v18 || Return of the kernel rootkit malware (on windows 10)BlueHat v18 || Return of the kernel rootkit malware (on windows 10)
BlueHat v18 || Return of the kernel rootkit malware (on windows 10)BlueHat Security Conference
 
[BrightonSEO 2019] Restructuring Websites to Improve Indexability
[BrightonSEO 2019] Restructuring Websites to Improve Indexability[BrightonSEO 2019] Restructuring Websites to Improve Indexability
[BrightonSEO 2019] Restructuring Websites to Improve IndexabilityAreej AbuAli
 
Neo4j Stored Procedure Training Part 1
Neo4j Stored Procedure Training Part 1Neo4j Stored Procedure Training Part 1
Neo4j Stored Procedure Training Part 1Max De Marzi
 
Debugging rendering problems at scale
Debugging rendering problems at scaleDebugging rendering problems at scale
Debugging rendering problems at scaleGiacomo Zecchini
 
MongoDB SoCal 2020: A Complete Methodology of Data Modeling for MongoDB
MongoDB SoCal 2020: A Complete Methodology of Data Modeling for MongoDBMongoDB SoCal 2020: A Complete Methodology of Data Modeling for MongoDB
MongoDB SoCal 2020: A Complete Methodology of Data Modeling for MongoDBMongoDB
 
Value objects in JS - an ES7 work in progress
Value objects in JS - an ES7 work in progressValue objects in JS - an ES7 work in progress
Value objects in JS - an ES7 work in progressBrendan Eich
 
SEO Restart 2024: Roman Teuschel - Mezinárodní SEO v kontextu expanze
SEO Restart 2024: Roman Teuschel - Mezinárodní SEO v kontextu expanzeSEO Restart 2024: Roman Teuschel - Mezinárodní SEO v kontextu expanze
SEO Restart 2024: Roman Teuschel - Mezinárodní SEO v kontextu expanzeTaste
 
Semantic keyword research for e commerce site architecture planning
Semantic keyword research for e commerce site architecture planningSemantic keyword research for e commerce site architecture planning
Semantic keyword research for e commerce site architecture planningSemrush
 

What's hot (20)

Everything You Didn't Know About Entity SEO
Everything You Didn't Know About Entity SEO Everything You Didn't Know About Entity SEO
Everything You Didn't Know About Entity SEO
 
Hadoop World 2011: Advanced HBase Schema Design
Hadoop World 2011: Advanced HBase Schema DesignHadoop World 2011: Advanced HBase Schema Design
Hadoop World 2011: Advanced HBase Schema Design
 
MongoDB WiredTiger Internals: Journey To Transactions
MongoDB WiredTiger Internals: Journey To TransactionsMongoDB WiredTiger Internals: Journey To Transactions
MongoDB WiredTiger Internals: Journey To Transactions
 
Lazy Load '22 - Performance Mistakes - An HTTP Archive Deep Dive
Lazy Load  '22 - Performance Mistakes - An HTTP Archive Deep DiveLazy Load  '22 - Performance Mistakes - An HTTP Archive Deep Dive
Lazy Load '22 - Performance Mistakes - An HTTP Archive Deep Dive
 
MongoDB Aggregation Performance
MongoDB Aggregation PerformanceMongoDB Aggregation Performance
MongoDB Aggregation Performance
 
DynamodbDB Deep Dive
DynamodbDB Deep DiveDynamodbDB Deep Dive
DynamodbDB Deep Dive
 
Mining a Large Web Corpus
Mining a Large Web CorpusMining a Large Web Corpus
Mining a Large Web Corpus
 
Intro to Neo4j and Graph Databases
Intro to Neo4j and Graph DatabasesIntro to Neo4j and Graph Databases
Intro to Neo4j and Graph Databases
 
MongoDB WiredTiger Internals
MongoDB WiredTiger InternalsMongoDB WiredTiger Internals
MongoDB WiredTiger Internals
 
SEO Migration 101, not 404 | BrightonSEO 2021
SEO Migration 101, not 404 | BrightonSEO 2021SEO Migration 101, not 404 | BrightonSEO 2021
SEO Migration 101, not 404 | BrightonSEO 2021
 
MongoDB World 2019: Tips and Tricks++ for Querying and Indexing MongoDB
MongoDB World 2019: Tips and Tricks++ for Querying and Indexing MongoDBMongoDB World 2019: Tips and Tricks++ for Querying and Indexing MongoDB
MongoDB World 2019: Tips and Tricks++ for Querying and Indexing MongoDB
 
The Really Advanced Technical SEO Presentation
The Really Advanced Technical SEO PresentationThe Really Advanced Technical SEO Presentation
The Really Advanced Technical SEO Presentation
 
BlueHat v18 || Return of the kernel rootkit malware (on windows 10)
BlueHat v18 || Return of the kernel rootkit malware (on windows 10)BlueHat v18 || Return of the kernel rootkit malware (on windows 10)
BlueHat v18 || Return of the kernel rootkit malware (on windows 10)
 
[BrightonSEO 2019] Restructuring Websites to Improve Indexability
[BrightonSEO 2019] Restructuring Websites to Improve Indexability[BrightonSEO 2019] Restructuring Websites to Improve Indexability
[BrightonSEO 2019] Restructuring Websites to Improve Indexability
 
Neo4j Stored Procedure Training Part 1
Neo4j Stored Procedure Training Part 1Neo4j Stored Procedure Training Part 1
Neo4j Stored Procedure Training Part 1
 
Debugging rendering problems at scale
Debugging rendering problems at scaleDebugging rendering problems at scale
Debugging rendering problems at scale
 
MongoDB SoCal 2020: A Complete Methodology of Data Modeling for MongoDB
MongoDB SoCal 2020: A Complete Methodology of Data Modeling for MongoDBMongoDB SoCal 2020: A Complete Methodology of Data Modeling for MongoDB
MongoDB SoCal 2020: A Complete Methodology of Data Modeling for MongoDB
 
Value objects in JS - an ES7 work in progress
Value objects in JS - an ES7 work in progressValue objects in JS - an ES7 work in progress
Value objects in JS - an ES7 work in progress
 
SEO Restart 2024: Roman Teuschel - Mezinárodní SEO v kontextu expanze
SEO Restart 2024: Roman Teuschel - Mezinárodní SEO v kontextu expanzeSEO Restart 2024: Roman Teuschel - Mezinárodní SEO v kontextu expanze
SEO Restart 2024: Roman Teuschel - Mezinárodní SEO v kontextu expanze
 
Semantic keyword research for e commerce site architecture planning
Semantic keyword research for e commerce site architecture planningSemantic keyword research for e commerce site architecture planning
Semantic keyword research for e commerce site architecture planning
 

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

Integration and Automation in Practice: CI/CD in Mule Integration and Automat...
Integration and Automation in Practice: CI/CD in Mule Integration and Automat...Integration and Automation in Practice: CI/CD in Mule Integration and Automat...
Integration and Automation in Practice: CI/CD in Mule Integration and Automat...Patryk Bandurski
 
My Hashitalk Indonesia April 2024 Presentation
My Hashitalk Indonesia April 2024 PresentationMy Hashitalk Indonesia April 2024 Presentation
My Hashitalk Indonesia April 2024 PresentationRidwan Fadjar
 
"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
 
AI as an Interface for Commercial Buildings
AI as an Interface for Commercial BuildingsAI as an Interface for Commercial Buildings
AI as an Interface for Commercial BuildingsMemoori
 
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
 
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
 
SAP Build Work Zone - Overview L2-L3.pptx
SAP Build Work Zone - Overview L2-L3.pptxSAP Build Work Zone - Overview L2-L3.pptx
SAP Build Work Zone - Overview L2-L3.pptxNavinnSomaal
 
WordPress Websites for Engineers: Elevate Your Brand
WordPress Websites for Engineers: Elevate Your BrandWordPress Websites for Engineers: Elevate Your Brand
WordPress Websites for Engineers: Elevate Your Brandgvaughan
 
Beyond Boundaries: Leveraging No-Code Solutions for Industry Innovation
Beyond Boundaries: Leveraging No-Code Solutions for Industry InnovationBeyond Boundaries: Leveraging No-Code Solutions for Industry Innovation
Beyond Boundaries: Leveraging No-Code Solutions for Industry InnovationSafe Software
 
Dev Dives: Streamline document processing with UiPath Studio Web
Dev Dives: Streamline document processing with UiPath Studio WebDev Dives: Streamline document processing with UiPath Studio Web
Dev Dives: Streamline document processing with UiPath Studio WebUiPathCommunity
 
Search Engine Optimization SEO PDF for 2024.pdf
Search Engine Optimization SEO PDF for 2024.pdfSearch Engine Optimization SEO PDF for 2024.pdf
Search Engine Optimization SEO PDF for 2024.pdfRankYa
 
Scanning the Internet for External Cloud Exposures via SSL Certs
Scanning the Internet for External Cloud Exposures via SSL CertsScanning the Internet for External Cloud Exposures via SSL Certs
Scanning the Internet for External Cloud Exposures via SSL CertsRizwan Syed
 
Vector Databases 101 - An introduction to the world of Vector Databases
Vector Databases 101 - An introduction to the world of Vector DatabasesVector Databases 101 - An introduction to the world of Vector Databases
Vector Databases 101 - An introduction to the world of Vector DatabasesZilliz
 
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
 
"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
 
Leverage Zilliz Serverless - Up to 50X Saving for Your Vector Storage Cost
Leverage Zilliz Serverless - Up to 50X Saving for Your Vector Storage CostLeverage Zilliz Serverless - Up to 50X Saving for Your Vector Storage Cost
Leverage Zilliz Serverless - Up to 50X Saving for Your Vector Storage CostZilliz
 
What's New in Teams Calling, Meetings and Devices March 2024
What's New in Teams Calling, Meetings and Devices March 2024What's New in Teams Calling, Meetings and Devices March 2024
What's New in Teams Calling, Meetings and Devices March 2024Stephanie Beckett
 
Anypoint Exchange: It’s Not Just a Repo!
Anypoint Exchange: It’s Not Just a Repo!Anypoint Exchange: It’s Not Just a Repo!
Anypoint Exchange: It’s Not Just a Repo!Manik S Magar
 
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
 
Commit 2024 - Secret Management made easy
Commit 2024 - Secret Management made easyCommit 2024 - Secret Management made easy
Commit 2024 - Secret Management made easyAlfredo García Lavilla
 

Recently uploaded (20)

Integration and Automation in Practice: CI/CD in Mule Integration and Automat...
Integration and Automation in Practice: CI/CD in Mule Integration and Automat...Integration and Automation in Practice: CI/CD in Mule Integration and Automat...
Integration and Automation in Practice: CI/CD in Mule Integration and Automat...
 
My Hashitalk Indonesia April 2024 Presentation
My Hashitalk Indonesia April 2024 PresentationMy Hashitalk Indonesia April 2024 Presentation
My Hashitalk Indonesia April 2024 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
 
AI as an Interface for Commercial Buildings
AI as an Interface for Commercial BuildingsAI as an Interface for Commercial Buildings
AI as an Interface for Commercial Buildings
 
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
 
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
 
SAP Build Work Zone - Overview L2-L3.pptx
SAP Build Work Zone - Overview L2-L3.pptxSAP Build Work Zone - Overview L2-L3.pptx
SAP Build Work Zone - Overview L2-L3.pptx
 
WordPress Websites for Engineers: Elevate Your Brand
WordPress Websites for Engineers: Elevate Your BrandWordPress Websites for Engineers: Elevate Your Brand
WordPress Websites for Engineers: Elevate Your Brand
 
Beyond Boundaries: Leveraging No-Code Solutions for Industry Innovation
Beyond Boundaries: Leveraging No-Code Solutions for Industry InnovationBeyond Boundaries: Leveraging No-Code Solutions for Industry Innovation
Beyond Boundaries: Leveraging No-Code Solutions for Industry Innovation
 
Dev Dives: Streamline document processing with UiPath Studio Web
Dev Dives: Streamline document processing with UiPath Studio WebDev Dives: Streamline document processing with UiPath Studio Web
Dev Dives: Streamline document processing with UiPath Studio Web
 
Search Engine Optimization SEO PDF for 2024.pdf
Search Engine Optimization SEO PDF for 2024.pdfSearch Engine Optimization SEO PDF for 2024.pdf
Search Engine Optimization SEO PDF for 2024.pdf
 
Scanning the Internet for External Cloud Exposures via SSL Certs
Scanning the Internet for External Cloud Exposures via SSL CertsScanning the Internet for External Cloud Exposures via SSL Certs
Scanning the Internet for External Cloud Exposures via SSL Certs
 
Vector Databases 101 - An introduction to the world of Vector Databases
Vector Databases 101 - An introduction to the world of Vector DatabasesVector Databases 101 - An introduction to the world of Vector Databases
Vector Databases 101 - An introduction to the world of Vector Databases
 
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
 
"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
 
Leverage Zilliz Serverless - Up to 50X Saving for Your Vector Storage Cost
Leverage Zilliz Serverless - Up to 50X Saving for Your Vector Storage CostLeverage Zilliz Serverless - Up to 50X Saving for Your Vector Storage Cost
Leverage Zilliz Serverless - Up to 50X Saving for Your Vector Storage Cost
 
What's New in Teams Calling, Meetings and Devices March 2024
What's New in Teams Calling, Meetings and Devices March 2024What's New in Teams Calling, Meetings and Devices March 2024
What's New in Teams Calling, Meetings and Devices March 2024
 
Anypoint Exchange: It’s Not Just a Repo!
Anypoint Exchange: It’s Not Just a Repo!Anypoint Exchange: It’s Not Just a Repo!
Anypoint Exchange: It’s Not Just a Repo!
 
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
 
Commit 2024 - Secret Management made easy
Commit 2024 - Secret Management made easyCommit 2024 - Secret Management made easy
Commit 2024 - Secret Management made easy
 

Mastering NoSQL Advanced Design