73
Vineet Gupta | GM – Software Engineering | Directi http://vineetgupta.spaces.live.com Licensed under Creative Commons Attribution Sharealike Noncommercial Intelligent People. Uncommon Ideas.

Intelligent People. Uncommon Ideas.docshare01.docshare.tips/files/13460/134609747.pdf · • Pros – Increases per application Availability – Task-based specialization, optimization

  • Upload
    others

  • View
    0

  • Download
    0

Embed Size (px)

Citation preview

Page 1: Intelligent People. Uncommon Ideas.docshare01.docshare.tips/files/13460/134609747.pdf · • Pros – Increases per application Availability – Task-based specialization, optimization

Vineet Gupta | GM – Software Engineering | Directi

http://vineetgupta.spaces.live.com

Licensed under Creative Commons Attribution Sharealike Noncommercial

Intelligent People. Uncommon Ideas.

Page 2: Intelligent People. Uncommon Ideas.docshare01.docshare.tips/files/13460/134609747.pdf · • Pros – Increases per application Availability – Task-based specialization, optimization

• Characteristics

• App Tier Scaling

• Replication

• Partitioning

• Consistency

• Normalization

• Caching

• Data Engine Types

Page 3: Intelligent People. Uncommon Ideas.docshare01.docshare.tips/files/13460/134609747.pdf · • Pros – Increases per application Availability – Task-based specialization, optimization

• Offline Processing (Batching / Queuing)

• Distributed Processing – Map Reduce

• Non-blocking IO

• Fault Detection, Tolerance and Recovery

Page 4: Intelligent People. Uncommon Ideas.docshare01.docshare.tips/files/13460/134609747.pdf · • Pros – Increases per application Availability – Task-based specialization, optimization

• Characteristics

• App Tier Scaling

• Replication

• Partitioning

• Consistency

• Normalization

• Caching

• Data Engine Types

Page 5: Intelligent People. Uncommon Ideas.docshare01.docshare.tips/files/13460/134609747.pdf · • Pros – Increases per application Availability – Task-based specialization, optimization

• 22M+ users

• Dozens of DB servers

• Dozens of Web servers

• Six specialized graph database servers to run recommendations engine

Source: http://highscalability.com/digg-architecture

Page 8: Intelligent People. Uncommon Ideas.docshare01.docshare.tips/files/13460/134609747.pdf · • Pros – Increases per application Availability – Task-based specialization, optimization

• Virtualized database spans 600 production instances residing in 100+ server clusters distributed over 8 datacenters

• 2 PB of data

• 26 B SQL queries / day

• 1 B page views / day

• 3 B API calls / month

• 15,000 App servers

Source: http://highscalability.com/ebay-architecture/

Page 9: Intelligent People. Uncommon Ideas.docshare01.docshare.tips/files/13460/134609747.pdf · • Pros – Increases per application Availability – Task-based specialization, optimization

• 450,000 low cost commodity servers in 2006 • Indexed 8 B web-pages in 2005 • 200 GFS clusters (1 cluster = 1,000 – 5,000

machines) • Read / write thruput = 40 GB / sec across a

cluster • Map-Reduce

– 100k jobs / day – 20 PB of data processed / day – 10k MapReduce programs

Source: http://highscalability.com/google-architecture/

Page 10: Intelligent People. Uncommon Ideas.docshare01.docshare.tips/files/13460/134609747.pdf · • Pros – Increases per application Availability – Task-based specialization, optimization

• Data Size ~ PB

• Data Growth ~ TB / day

• No of servers – 10s to 10,000

• No of datacenters – 1 to 10

• Queries – B+ / day

• Specialized needs – more / other than RDBMS

Page 11: Intelligent People. Uncommon Ideas.docshare01.docshare.tips/files/13460/134609747.pdf · • Pros – Increases per application Availability – Task-based specialization, optimization

• Characteristics

• App Tier Scaling

• Replication

• Partitioning

• Consistency

• Normalization

• Caching

• Data Engine Types

Page 12: Intelligent People. Uncommon Ideas.docshare01.docshare.tips/files/13460/134609747.pdf · • Pros – Increases per application Availability – Task-based specialization, optimization

Host

App Server

DB Server

RAM CPU CPU

CPU RAM

RAM

Page 13: Intelligent People. Uncommon Ideas.docshare01.docshare.tips/files/13460/134609747.pdf · • Pros – Increases per application Availability – Task-based specialization, optimization

Sunfire E20k

$450,000 - $2,500,000

36x 1.8GHz processors

PowerEdge SC1435

Dualcore 1.8 GHz processor

Around $1,500

Page 14: Intelligent People. Uncommon Ideas.docshare01.docshare.tips/files/13460/134609747.pdf · • Pros – Increases per application Availability – Task-based specialization, optimization

• Increasing the hardware resources on a host • Pros

– Simple to implement – Fast turnaround time

• Cons – Finite limit – Hardware does not scale linearly (diminishing returns

for each incremental unit) – Requires downtime – Increases Downtime Impact – Incremental costs increase exponentially

Page 15: Intelligent People. Uncommon Ideas.docshare01.docshare.tips/files/13460/134609747.pdf · • Pros – Increases per application Availability – Task-based specialization, optimization

Host Host

App Server

DB Server

Page 16: Intelligent People. Uncommon Ideas.docshare01.docshare.tips/files/13460/134609747.pdf · • Pros – Increases per application Availability – Task-based specialization, optimization

• Split services on separate nodes

– Each node performs different tasks

• Pros – Increases per application Availability

– Task-based specialization, optimization and tuning possible

– Reduces context switching

– Simple to implement for out of band processes

– No changes to App required

– Flexibility increases

• Cons – Sub-optimal resource utilization

– May not increase overall availability

– Finite Scalability

Page 17: Intelligent People. Uncommon Ideas.docshare01.docshare.tips/files/13460/134609747.pdf · • Pros – Increases per application Availability – Task-based specialization, optimization

Web Server

DB Server

Web Server

Web Server

Load Balancer

Page 18: Intelligent People. Uncommon Ideas.docshare01.docshare.tips/files/13460/134609747.pdf · • Pros – Increases per application Availability – Task-based specialization, optimization

• Add more nodes for the same service

– Identical, doing the same task

• Load Balancing

– Hardware balancers are faster

– Software balancers are more customizable

Page 19: Intelligent People. Uncommon Ideas.docshare01.docshare.tips/files/13460/134609747.pdf · • Pros – Increases per application Availability – Task-based specialization, optimization

User 1

User 2

Web Server

DB Server

Web Server

Web Server

Load Balancer

Page 20: Intelligent People. Uncommon Ideas.docshare01.docshare.tips/files/13460/134609747.pdf · • Pros – Increases per application Availability – Task-based specialization, optimization

User 1

User 2

Web Server

DB Server

Web Server

Web Server

Load Balancer

• Asymmetrical load distribution

• Downtime

Page 21: Intelligent People. Uncommon Ideas.docshare01.docshare.tips/files/13460/134609747.pdf · • Pros – Increases per application Availability – Task-based specialization, optimization

User 1

User 2

Web Server

Session Store

Web Server

Web Server

Load Balancer

• SPOF • Reads and Writes generate

network + disk IO

Page 22: Intelligent People. Uncommon Ideas.docshare01.docshare.tips/files/13460/134609747.pdf · • Pros – Increases per application Availability – Task-based specialization, optimization

User 1

User 2

Web Server

Web Server

Web Server

Load Balancer

Page 23: Intelligent People. Uncommon Ideas.docshare01.docshare.tips/files/13460/134609747.pdf · • Pros – Increases per application Availability – Task-based specialization, optimization

• Pros

– No SPOF

– Easier to setup

– Fast Reads

• Cons

– n x Writes

– Increase in network IO with increase in nodes

– Stale data (rare)

Page 24: Intelligent People. Uncommon Ideas.docshare01.docshare.tips/files/13460/134609747.pdf · • Pros – Increases per application Availability – Task-based specialization, optimization

User 1

User 2

Web Server

DB Server

Web Server

Web Server

Load Balancer

Page 25: Intelligent People. Uncommon Ideas.docshare01.docshare.tips/files/13460/134609747.pdf · • Pros – Increases per application Availability – Task-based specialization, optimization

• No Sessions

– Stuff state in a cookie and sign it!

– Cookie is sent with every request / response

• Super Slim Sessions

– Keep small amount of frequently used data in cookie

– Pull rest from DB (or central session store)

Page 26: Intelligent People. Uncommon Ideas.docshare01.docshare.tips/files/13460/134609747.pdf · • Pros – Increases per application Availability – Task-based specialization, optimization

• Bad – Sticky sessions

• Good – Clustered sessions for small number of nodes and

/ or small write volume

– Central sessions for large number of nodes or large write volume

• Great – No Sessions!

Page 27: Intelligent People. Uncommon Ideas.docshare01.docshare.tips/files/13460/134609747.pdf · • Pros – Increases per application Availability – Task-based specialization, optimization

• HTTP Accelerators / Reverse Proxy – Static content caching, redirect to lighter HTTP

– Async NIO on user-side, Keep-alive connection pool

• CDN – Get closer to your user

– Akamai, Limelight

• IP Anycasting

• Async NIO

Page 28: Intelligent People. Uncommon Ideas.docshare01.docshare.tips/files/13460/134609747.pdf · • Pros – Increases per application Availability – Task-based specialization, optimization

• App-Layer

– Add more nodes and load balance!

– Avoid Sticky Sessions

– Avoid Sessions!!

• Data Store

– Tricky! Very Tricky!!!

Page 29: Intelligent People. Uncommon Ideas.docshare01.docshare.tips/files/13460/134609747.pdf · • Pros – Increases per application Availability – Task-based specialization, optimization

• Characteristics

• App Tier Scaling

• Replication

• Partitioning

• Consistency

• Normalization

• Caching

• Data Engine Types

Page 30: Intelligent People. Uncommon Ideas.docshare01.docshare.tips/files/13460/134609747.pdf · • Pros – Increases per application Availability – Task-based specialization, optimization

T1, T2, T3, T4

App Layer

Page 31: Intelligent People. Uncommon Ideas.docshare01.docshare.tips/files/13460/134609747.pdf · • Pros – Increases per application Availability – Task-based specialization, optimization

T1, T2, T3, T4

App Layer

T1, T2, T3, T4

T1, T2, T3, T4

T1, T2, T3, T4

T1, T2, T3, T4

• Each node has its own copy of data

• Shared Nothing Cluster

Page 32: Intelligent People. Uncommon Ideas.docshare01.docshare.tips/files/13460/134609747.pdf · • Pros – Increases per application Availability – Task-based specialization, optimization

• Read : Write = 4:1 – Scale reads at cost of writes!

• Duplicate Data – each node has its own copy

• Master Slave – Writes sent to one node, cascaded to others

• Multi-Master

– Writes can be sent to multiple nodes – Can lead to deadlocks – Requires conflict management

Page 33: Intelligent People. Uncommon Ideas.docshare01.docshare.tips/files/13460/134609747.pdf · • Pros – Increases per application Availability – Task-based specialization, optimization

Master

App Layer

Slave Slave Slave Slave

• n x Writes – Async vs. Sync • SPOF • Async - Critical Reads from Master!

Page 34: Intelligent People. Uncommon Ideas.docshare01.docshare.tips/files/13460/134609747.pdf · • Pros – Increases per application Availability – Task-based specialization, optimization

Master

App Layer

Master Slave Slave Slave

• n x Writes – Async vs. Sync • No SPOF • Conflicts!

Page 35: Intelligent People. Uncommon Ideas.docshare01.docshare.tips/files/13460/134609747.pdf · • Pros – Increases per application Availability – Task-based specialization, optimization

• Asynchronous – Guaranteed, but out-of-band replication from Master to Slave

– Master updates its own db and returns a response to client

– Replication from Master to Slave takes place asynchronously

– Faster response to a client

– Slave data is marginally behind the Master

– Requires modification to App to send critical reads and writes to master, and load balance all other reads

• Synchronous – Guaranteed, in-band replication from Master to Slave

– Master updates its own db, and confirms all slaves have updated their db before returning a response to client

– Slower response to a client

– Slaves have the same data as the Master at all times

– Requires modification to App to send writes to master and load balance all reads

Page 36: Intelligent People. Uncommon Ideas.docshare01.docshare.tips/files/13460/134609747.pdf · • Pros – Increases per application Availability – Task-based specialization, optimization

• Replication at RDBMS level – Support may exists in RDBMS or through 3rd party tool – Faster and more reliable – App must send writes to Master, reads to any db and

critical reads to Master

• Replication at Driver / DAO level – Driver / DAO layer ensures

• writes are performed on all connected DBs • Reads are load balanced

– Critical reads are sent to a Master – In most cases RDBMS agnostic – Slower and in some cases less reliable

Page 37: Intelligent People. Uncommon Ideas.docshare01.docshare.tips/files/13460/134609747.pdf · • Pros – Increases per application Availability – Task-based specialization, optimization

Write

Read

Write

Read

Write

Read

Write

Read

Write

Read

Write

Read

Write

Read

Per Server:

• 4R, 1W

• 2R, 1W

• 1R, 1W

Page 38: Intelligent People. Uncommon Ideas.docshare01.docshare.tips/files/13460/134609747.pdf · • Pros – Increases per application Availability – Task-based specialization, optimization

• Characteristics

• App Tier Scaling

• Replication

• Partitioning

• Consistency

• Normalization

• Caching

• Data Engine Types

Page 39: Intelligent People. Uncommon Ideas.docshare01.docshare.tips/files/13460/134609747.pdf · • Pros – Increases per application Availability – Task-based specialization, optimization

• Vertical Partitioning

– Divide data on tables / columns

– Scale to as many boxes as there are tables or columns

– Finite

• Horizontal Partitioning

– Divide data on rows

– Scale to as many boxes as there are rows!

– Limitless scaling

Page 40: Intelligent People. Uncommon Ideas.docshare01.docshare.tips/files/13460/134609747.pdf · • Pros – Increases per application Availability – Task-based specialization, optimization

T1, T2, T3, T4,

T5

App Layer

• Note: A node here typically represents a shared nothing cluster

Page 41: Intelligent People. Uncommon Ideas.docshare01.docshare.tips/files/13460/134609747.pdf · • Pros – Increases per application Availability – Task-based specialization, optimization

T3

App Layer

T4 T5 T2 T1

• Facebook - User table, posts table can be on separate nodes

• Joins need to be done in code (Why have them?)

Page 42: Intelligent People. Uncommon Ideas.docshare01.docshare.tips/files/13460/134609747.pdf · • Pros – Increases per application Availability – Task-based specialization, optimization

T3

App Layer

T4 T5 T2 T1 First million rows

T3 T4 T5 T2 T1 Second million rows

T3 T4 T5 T2 T1 Third million rows

Page 43: Intelligent People. Uncommon Ideas.docshare01.docshare.tips/files/13460/134609747.pdf · • Pros – Increases per application Availability – Task-based specialization, optimization

• Value Based

– Split on timestamp of posts

– Split on first alphabet of user name

• Hash Based

– Use a hash function to determine cluster

• Lookup Map

– First Come First Serve

– Round Robin

Page 44: Intelligent People. Uncommon Ideas.docshare01.docshare.tips/files/13460/134609747.pdf · • Pros – Increases per application Availability – Task-based specialization, optimization

• Characteristics

• App Tier Scaling

• Replication

• Partitioning

• Consistency

• Normalization

• Caching

• Data Engine Types

Page 45: Intelligent People. Uncommon Ideas.docshare01.docshare.tips/files/13460/134609747.pdf · • Pros – Increases per application Availability – Task-based specialization, optimization

Consistency

Partition Tolerance

Availability

Source: http://citeseerx.ist.psu.edu/viewdoc/summary?doi=10.1.1.20.1495

Page 46: Intelligent People. Uncommon Ideas.docshare01.docshare.tips/files/13460/134609747.pdf · • Pros – Increases per application Availability – Task-based specialization, optimization

• Transactions make you feel alone – No one else manipulates the data when you are

• Transactional serializability – The behavior is as if a serial order exists

Tk

Tl

Tm

Tn

ToTh

Tg TjTe

Tf

Tb

Ta

Tc

Td

Ti

These Transactions

Precede Ti

These Transactions

Follow Ti

Ti Doesn’t Know About TheseTransactions and They Don’t

Know About Ti

TransactionSerializability

Tk

Tl

Tm

Tn

ToThTh

Tg TjTe

Tf

Tb

Ta

Tc

Td

Ti

These Transactions

Precede Ti

These Transactions

Follow Ti

Ti Doesn’t Know About TheseTransactions and They Don’t

Know About Ti

TransactionSerializability

Slide 46 Source: http://blogs.msdn.com/pathelland/

Page 47: Intelligent People. Uncommon Ideas.docshare01.docshare.tips/files/13460/134609747.pdf · • Pros – Increases per application Availability – Task-based specialization, optimization

• Transactions live in the “now” inside services – Time marches forward

– Transactions commit

– Advancing time

– Transactions see the committed transactions

• A service’s biz-logic lives in the “now”

Service

Each Transaction

Only Sees a Simple

Advancing of Time

with a Clear Set of

Preceding

Transactions

ServiceServiceService

Each Transaction

Only Sees a Simple

Advancing of Time

with a Clear Set of

Preceding

Transactions

Slide 47 Source: http://blogs.msdn.com/pathelland/

Page 48: Intelligent People. Uncommon Ideas.docshare01.docshare.tips/files/13460/134609747.pdf · • Pros – Increases per application Availability – Task-based specialization, optimization

• Messages contain unlocked data – Assume no shared transactions

• Unlocked data may change – Unlocking it allows change

• Messages are not from the “now” – They are from the past

There is no simultaneity at a distance!

• Similar to speed of light

• Knowledge travels at speed of light

• By the time you see a distant object it may have changed!

• By the time you see a message, the data may have changed!

Services, transactions, and locks bound simultaneity!

• Inside a transaction, things appear simultaneous (to others)

• Simultaneity only inside a transaction!

• Simultaneity only inside a service!

Slide 48 Source: http://blogs.msdn.com/pathelland/

Page 49: Intelligent People. Uncommon Ideas.docshare01.docshare.tips/files/13460/134609747.pdf · • Pros – Increases per application Availability – Task-based specialization, optimization

• All data seen from a distant service is from the “past” – By the time you see it, it has been unlocked and may change

• Each service has its own perspective – Inside data is “now”; outside data is “past”

– My inside is not your inside; my outside is not your outside

All data from distant stars is from the past

• 10 light years away; 10 year old knowledge

• The sun may have blown up 5 minutes ago

• We won’t know for 3 minutes more…

This is like going from Newtonian to Einstonian physics

• Newton’s time marched forward uniformly

• Instant knowledge

• Classic distributed computing: many systems look like one

• RPC, 2-phase commit, remote method calls…

• In Einstein’s world, everything is “relative” to one’s perspective

• Today: No attempt to blur the boundary

Slide 49 Source: http://blogs.msdn.com/pathelland/

Page 50: Intelligent People. Uncommon Ideas.docshare01.docshare.tips/files/13460/134609747.pdf · • Pros – Increases per application Availability – Task-based specialization, optimization

• Can’t have “the same” data at many locations

– Unless it is a snapshot

• Changing distributed data needs versions

– Creates a snapshot…

Listening

Partner

Service-1

Listening

Partner

Service-5

Listening

Partner

Service-7

Listening

Partner

Service-8

Tuesday’s

Price-List

Wednesday’s

Price-List

Wednesday’s

Price-List

Wednesday’s

Price-List

Monday’s

Price-List

Tuesday’s

Price-List

Wednesday’s

Price-List

Monday’s

Price-List

Tuesday’s

Price-List

Data Owning Service

Price-List

Listening

Partner

Service-1

Listening

Partner

Service-5

Listening

Partner

Service-7

Listening

Partner

Service-8

Tuesday’s

Price-List

Tuesday’s

Price-List

Tuesday’s

Price-List

Wednesday’s

Price-List

Wednesday’s

Price-List

Wednesday’s

Price-List

Wednesday’s

Price-List

Wednesday’s

Price-List

Wednesday’s

Price-List

Wednesday’s

Price-List

Wednesday’s

Price-List

Wednesday’s

Price-List

Monday’s

Price-List

Monday’s

Price-List

Monday’s

Price-List

Tuesday’s

Price-List

Tuesday’s

Price-List

Tuesday’s

Price-List

Wednesday’s

Price-List

Wednesday’s

Price-List

Wednesday’s

Price-List

Monday’s

Price-List

Monday’s

Price-List

Monday’s

Price-List

Tuesday’s

Price-List

Tuesday’s

Price-List

Tuesday’s

Price-List

Data Owning Service

Price-List

Data Owning Service

Price-List

Source: http://blogs.msdn.com/pathelland/

Page 51: Intelligent People. Uncommon Ideas.docshare01.docshare.tips/files/13460/134609747.pdf · • Pros – Increases per application Availability – Task-based specialization, optimization

Subjective Consistency Given the information I have at hand, make a decision and act on it ! Remember the information at hand !

• Given what I know here and now, make a decision

– Remember the versions of all the data used to make this decision

– Record the decision as being predicated on these versions

• Other copies of the object may make divergent decisions

– Try to sort out conflicts within the family

– If necessary, programmatically apologize

– Very rarely, whine and fuss for human help

Ambassadors Had Authority Back before radio, it could be months between communication with the king.

Ambassadors would make treaties and much more... They had binding authority. The mess was sorted out later!

Source: http://blogs.msdn.com/pathelland/

Page 52: Intelligent People. Uncommon Ideas.docshare01.docshare.tips/files/13460/134609747.pdf · • Pros – Increases per application Availability – Task-based specialization, optimization

• Eventually, all the copies of the object share their changes

– “I’ll show you mine if you show me yours!”

• Now, apply subjective consistency:

– “Given the information I have at hand, make a decision and act on it!”

– Everyone has the same information, everyone comes to the same conclusion about the decisions to take…

This is NOT magic; it is a design requirement ! Idempotence, commutativity, and associativity of the operations

(decisions made) are all implied by this requirement

Eventual Consistency Given the same knowledge, produce the same result !

Everyone sharing their knowledge leads to the same result...

Source: http://blogs.msdn.com/pathelland/

Page 53: Intelligent People. Uncommon Ideas.docshare01.docshare.tips/files/13460/134609747.pdf · • Pros – Increases per application Availability – Task-based specialization, optimization

• Characteristics

• App Tier Scaling

• Replication

• Partitioning

• Consistency

• Normalization

• Caching

• Data Engine Types

Page 54: Intelligent People. Uncommon Ideas.docshare01.docshare.tips/files/13460/134609747.pdf · • Pros – Increases per application Availability – Task-based specialization, optimization

• Normalization’s Goal Is Eliminating Update Anomalies – Can Be Changed Without “Funny Behavior”

– Each Data Item Lives in One Place

Emp # Emp Name Mgr # Mgr Name Emp Phone Mgr Phone

47 Joe 13 Sam 5-1234 6-9876

18 Sally 38 Harry 3-3123 5-6782

91 Pete 13 Sam 2-1112 6-9876

66 Mary 02 Betty 5-7349 4-0101

Classic problem

with de-normalization

Can’t update

Sam’s phone #

since there are

many copies

De-normalization is

OK if you aren’t going to update!

Source: http://blogs.msdn.com/pathelland/

Page 55: Intelligent People. Uncommon Ideas.docshare01.docshare.tips/files/13460/134609747.pdf · • Pros – Increases per application Availability – Task-based specialization, optimization

user table

user_id

first_name

last_name

sex hometown

relationship_status

interested_in

religious_views

political_views

12345

John Doe Male Atlanta, GA

married

women

(null) (null)

user_affiliations table

user_id (foreign_key)

affiliation_id (foreign key)

12345 42

12345 598

affiliations table

affiliation_id description member_count

42 Microsoft 18,656

598 Georgia Tech 23,488

user_phone_numbers table

user_id (foreign_key)

phone_number phone_type

12345 425-555-1203 Home

12345 425-555-6161 Work

12345 206-555-0932 Cell

user_screen_names table

user_id (foreign_key)

screen_name im_service

12345 [email protected]

AIM

12345 [email protected]

Skype

user_work_history table

user_id (foreign_key)

company_affiliation_id (foreign key)

company_name

job_title

12345 42 Microsoft Program Manager

12345 78 i2 Technologies

Quality Assurance Engineer

Page 56: Intelligent People. Uncommon Ideas.docshare01.docshare.tips/files/13460/134609747.pdf · • Pros – Increases per application Availability – Task-based specialization, optimization

• 6 joins for 1 query! – Do you think FB would do this?

– And how would you do joins with partitioned data?

• De-normalization removes joins

• But increases data volume – But disk is cheap and getting cheaper

• And can lead to inconsistent data – If you are lazy

– However this is not really an issue

Page 57: Intelligent People. Uncommon Ideas.docshare01.docshare.tips/files/13460/134609747.pdf · • Pros – Increases per application Availability – Task-based specialization, optimization

• Many Kinds of Computing are “Append-Only”

– Lots of observations are made about the world

• Debits, credits, Purchase-Orders, Customer-Change-Requests, etc

– As time moves on, more observations are added

• You can’t change the history but you can add new observations

• Derived Results May Be Calculated

– Estimate of the “current” inventory

– Frequently inaccurate

• Historic Rollups Are Calculated

– Monthly bank statements

Page 58: Intelligent People. Uncommon Ideas.docshare01.docshare.tips/files/13460/134609747.pdf · • Pros – Increases per application Availability – Task-based specialization, optimization

• Transaction Logs Are the Truth

– High-performance & write-only

– Describe ALL the changes to the data

• Data-Base the Current Opinion

– Describes the latest value of the data as perceived by the application

Log

DB The Database Is a Caching

of the Transaction Log !

It is the subset of the latest committed values represented in the transaction log…

Source: http://blogs.msdn.com/pathelland/

Page 59: Intelligent People. Uncommon Ideas.docshare01.docshare.tips/files/13460/134609747.pdf · • Pros – Increases per application Availability – Task-based specialization, optimization

Listening

Partner

Service-1

Listening

Partner

Service-5

Listening

Partner

Service-7

Listening

Partner

Service-8

Tuesday’s

Price-List

Wednesday’s

Price-List

Wednesday’s

Price-List

Wednesday’s

Price-List

Monday’s

Price-List

Tuesday’s

Price-List

Wednesday’s

Price-List

Monday’s

Price-List

Tuesday’s

Price-List

Data Owning Service

Price-List

Listening

Partner

Service-1

Listening

Partner

Service-5

Listening

Partner

Service-7

Listening

Partner

Service-8

Tuesday’s

Price-List

Tuesday’s

Price-List

Tuesday’s

Price-List

Wednesday’s

Price-List

Wednesday’s

Price-List

Wednesday’s

Price-List

Wednesday’s

Price-List

Wednesday’s

Price-List

Wednesday’s

Price-List

Wednesday’s

Price-List

Wednesday’s

Price-List

Wednesday’s

Price-List

Monday’s

Price-List

Monday’s

Price-List

Monday’s

Price-List

Tuesday’s

Price-List

Tuesday’s

Price-List

Tuesday’s

Price-List

Wednesday’s

Price-List

Wednesday’s

Price-List

Wednesday’s

Price-List

Monday’s

Price-List

Monday’s

Price-List

Monday’s

Price-List

Tuesday’s

Price-List

Tuesday’s

Price-List

Tuesday’s

Price-List

Data Owning Service

Price-List

Data Owning Service

Price-List

Source: http://blogs.msdn.com/pathelland/

Page 60: Intelligent People. Uncommon Ideas.docshare01.docshare.tips/files/13460/134609747.pdf · • Pros – Increases per application Availability – Task-based specialization, optimization

• Characteristics

• App Tier Scaling

• Replication

• Partitioning

• Consistency

• Normalization

• Caching

• Data Engine Types

Page 61: Intelligent People. Uncommon Ideas.docshare01.docshare.tips/files/13460/134609747.pdf · • Pros – Increases per application Availability – Task-based specialization, optimization

• Makes scaling easier (cheaper)

• Core Idea

– Read data from persistent store into memory

– Store in a hash-table

– Read first from cache, if not, load from persistent store

Page 62: Intelligent People. Uncommon Ideas.docshare01.docshare.tips/files/13460/134609747.pdf · • Pros – Increases per application Availability – Task-based specialization, optimization

App Server

Cache

Page 63: Intelligent People. Uncommon Ideas.docshare01.docshare.tips/files/13460/134609747.pdf · • Pros – Increases per application Availability – Task-based specialization, optimization

App Server

Cache

Page 64: Intelligent People. Uncommon Ideas.docshare01.docshare.tips/files/13460/134609747.pdf · • Pros – Increases per application Availability – Task-based specialization, optimization

App Server

Cache

Page 65: Intelligent People. Uncommon Ideas.docshare01.docshare.tips/files/13460/134609747.pdf · • Pros – Increases per application Availability – Task-based specialization, optimization
Page 66: Intelligent People. Uncommon Ideas.docshare01.docshare.tips/files/13460/134609747.pdf · • Pros – Increases per application Availability – Task-based specialization, optimization

• In-memory Distributed Hash Table

• Memcached instance manifests as a process (often on the same machine as web-server)

• Memcached Client maintains a hash table

– Which item is stored on which instance

• Memcached Server maintains a hash table

– Which item is stored in which memory location

Page 67: Intelligent People. Uncommon Ideas.docshare01.docshare.tips/files/13460/134609747.pdf · • Pros – Increases per application Availability – Task-based specialization, optimization

• Characteristics

• App Tier Scaling

• Replication

• Partitioning

• Consistency

• Normalization

• Caching

• Data Engine Types

Page 68: Intelligent People. Uncommon Ideas.docshare01.docshare.tips/files/13460/134609747.pdf · • Pros – Increases per application Availability – Task-based specialization, optimization

• Amazon - S3, SimpleDb, Dynamo

• Google - App Engine Datastore, BigTable

• Microsoft – SQL Data Services, Azure Storages

• Facebook – Cassandra

• LinkedIn - Project Voldemort

• Ringo, Scalaris, Kai, Dynomite, MemcacheDB, ThruDB, CouchDB, Hbase, Hypertable

Page 69: Intelligent People. Uncommon Ideas.docshare01.docshare.tips/files/13460/134609747.pdf · • Pros – Increases per application Availability – Task-based specialization, optimization

• Basic Concepts – No tables - Containers-Entity – No schema - each tuple has its own set of properties

• Amazon SimpleDB – strings only

• Microsoft Azure SQL Data Services – Strings, blob, datetime, bool, int, double, etc. – No x-container joins as of now

• Google App Engine Datastore – Strings, blob, datetime, bool, int, double, etc.

Page 70: Intelligent People. Uncommon Ideas.docshare01.docshare.tips/files/13460/134609747.pdf · • Pros – Increases per application Availability – Task-based specialization, optimization

• Google BigTable – Sparse, Distributed, multi-dimensional sorted map – Indexed by row key, column key, timestamp – Each value is an un-interpreted array of bytes

• Amazon Dynamo – Data partitioned and replicated using consistent hashing – Decentralized replica sync protocol – Consistency thru versioning

• Facebook Cassandra – Used for Inbox search – Open Source

• Scalaris – Keys stored in lexicographical order – Improved Paxos to provide ACID – Memory resident, no persistence

Page 71: Intelligent People. Uncommon Ideas.docshare01.docshare.tips/files/13460/134609747.pdf · • Pros – Increases per application Availability – Task-based specialization, optimization

• Real Life Scaling requires trade offs

• No Silver Bullet

• Need to learn new things

• Need to un-learn

• Balance!

Page 72: Intelligent People. Uncommon Ideas.docshare01.docshare.tips/files/13460/134609747.pdf · • Pros – Increases per application Availability – Task-based specialization, optimization
Page 73: Intelligent People. Uncommon Ideas.docshare01.docshare.tips/files/13460/134609747.pdf · • Pros – Increases per application Availability – Task-based specialization, optimization

Intelligent People. Uncommon Ideas.

Licensed under Creative Commons Attribution Sharealike Noncommercial