SlideShare a Scribd company logo
Lecture 13
Session State and Distribution
Strategies
Session State
Reading
 Fowler 6
– Session State

 Fowler 17
– Session State Patterns
Agenda
 Session State
– Business transactions

 Session State Patterns
– Client Session State
– Server Session State
– Database Session State
Business Transactions
 Transactions that expand more than one request
– User is working with data before they are committed
to the database
• Example: User logs in, puts products in a shopping cart,
buys, and logs out

– Where do we keep the state between transactions?
State
 Server with state vs. stateless server
– Stateful server must keep the state between requests

 Problem with stateful servers
– Need more resources, limit scalability
Stateless Servers
 Stateless servers scale much better
 Use fewer resources
 Example:
– View book information
– Each request is separate
Stateful Servers
 Stateful servers are the norm
 Not easy to get rid of them
 Problem: they take resources and cause server
affinity
 Example:
– 100 users make request every 10 second, each
request takes 1 second
– One stateful object per user
– Object are Idle 90% of the time
Session State
 State that is relevant to a session
– State used in business transactions and belong to a
specific client
– Data structure belonging to a client
– May not be consistent until they are persisted

 Session is distinct from record data
– Record data is a long-term persistent data in a
database
– Session state might en up as record data
EXCERISE
Question:
Where do you store the session?
Ways to Store Session State
 We have three players
– The client using a web browser
– The Server running the web application and domain
– The database storing all the data
Ways to Store Session State
 Three basic choices
– Client Session State (456)
– Server Session State (458)
– Database Session State (462)
Client Session State
Store session state on the client
 How It Works
– Desktop applications can store the state in memory
– Web solutions can store state in cookies, hide it in the
web page, or use the URL
– Data Transfer Object can be used
– Session ID is the minimum client state
– Works well with REST
Client Session State
 When to Use It
– Works well if server is stateless
– Maximal clustering and failover resiliency

 Drawbacks
– Does not work well for large amount of data
– Data gets lost if client crashes
– Security issues
Server Session State
Store session state on a server in a
serialized form
 How It Works
– Session Objects – data structures on the server
keyed to session Id

 Format of data
– Can be binary, objects or XML

 Where to store session
– Application server, file or local database
Server Session State
 Specific Implementations
– HttpSession
– Stateful Session Beans – EJB

 When to Use It
– Simplicity, it is easy to store and receive data

 Drawbacks
–
–
–
–

Data can get lost if server goes down
Clustering and session migration becomes difficult
Space complexity (memory of server)
Inactive sessions need to be cleaned up
Database Session State
Store session data as committed data in the database
 How It Works

– Session State stored in the database
– Can be stored as temporary data to distinguish from
committed record data

 Pending session data

– Pending session data might violate integrity rules
– Use of pending field or pending tables

• When pending session data becomes record data it is save in
the real tables
Database Session State
 When to Use It
– Improved scalability – easy to add servers
– Works well in clusters
– Data is persisted, even if data centre goes down

 Drawbacks
– Database becomes a bottleneck
– Need of clean up procedure of pending data that did
not become record data – user just left
What about dead sessions?
 Client session
– No our problem

 Server session
– Web servers will send inactive message upon timeout

 Database session
– Need to be clean up
– Retention routines
Caching
 Caching is temporary data that is kept in
memory between requests for performance
reasons
– Not session data
– Can be thrown away and retrieved any time

 Saves the round-trip to the database
 Can become stale or old and out-dated
– Distributed caching is one way to solve that
Practical Example
 Client session
– For preferences,
user selections

 Server session
– Used for browsing and
caching
– Logged in customer

 Database
– “Legal” session
– Stored, tracked, need to survive between sessions
QUIZ
We are building an application for processing development
grants. The application is complicated and users can login any
time and continue work on their application. What design
pattern would we use for storing the session?
A)
B)
✔ C)
D)

Client Session State
Server Session State
Database Session State
No state required
Distribution Strategies
Reading
 Fowler 7
– Distribution Strategies

 Fowler 15
– Distribution Patterns
– Remote Façade (388)
Agenda
 Distributed Architectures
– Remote and Local Interfaces
– Where You Have to Distribute
– Remote Façade

 Scalablity
 DEMO
Distributed Architecture
 Distribute processing by placing objects different
nodes
Distributed Architecture
 Distribute processing by placing objects on
different nodes
 Benefits
– Load is distributed between different nodes giving
overall better performance
– It is easy to add new nodes
– Middleware products make calls between nodes
transparent

But is this true?
Distributed Architecture
 Distribute processing by placing objects different
nodes
“This design sucks like an inverted hurricane” –
Fowler
Fowler’s First Law of Distributed Object Design:
Don't Distribute your objects!
Remote and Local Interfaces
 Local calls
– Calls between components on the same node are
local

 Remote calls
– Calls between components on different machines are
remote

 Objects Oriented programming
– Promotes fine-grained objects
Remote and Local Interfaces
 Local call within a process is very, very fast
 Remote call between two processes is order-ofmagnitude s l o w e r
– Marshalling and un-marshalling of objects
– Data transfer over the network

 With fine-grained object oriented design, remote
components can kill performance
 Example

– Address object has get and set method for each member,
city, street, and so on
– Will result in many remote calls
Remote and Local Interfaces
 With distributed architectures, interfaces must
be course-grained
– Minimizing remote function calls

 Example
– Instead of having getters and setters for each field,
bulk assessors are used
Example
 Sun Application Model
– “The Canonical Architecture”

 Entity Beans
– Each bean maps to row in the database
– find methods returns
Collection of
Remote interfaces
Example
 Result
– Architecture that does not perform very well

 Suggested solution was
– Use session beans to call entity beans
Distributed Architecture
 Better distribution model
– Load Balancing or Clustering the application involves
putting several copies of the same application on
different nodes
Where You Have to Distribute
 As architect, try to eliminate as many remote call
as possible
– If this cannot be archived choose carefully where the
distribution boundaries lay

 Distribution Boundaries
–
–
–
–
–

Client/Server
Server/Database
Web Server/Application Server
Separation due to vendor differences
There might be some genuine reason
Optimizing Remote Calls
 We know remote calls are expensive
 How can we minimize the cost of remote calls?
 The overhead is
– Marshaling or serializing data
– Network transfer

 Put as much data into the call
– Course grained call

 Remote Façade
Remote Façade
Provides a coarse-grained facade on
fine-grained objects to improve efficiency
over a network
 The façade is a thin wrapper that provides
coarse-grained interface to a system
– In an object-oriented model, you do best with small
objects that have small methods
– Can cause great deal of interaction between objects
and method invocations
Remote Façade
 How It Works
– Allows efficient remote access with coarse-grained
interface
– Façade will use the fine-grained object to build and
return object like Data Transfer Object
– Should not contain any domain logic
Remote Façade
 When to Use It
– Whenever you need remote access to fine grained
object model
– Most common use is between UI and domain model
Remote Façade
 Remote method invocation are expensive
– Performance killer
RMI
Client

JVM
Entity
Entity
Session
Session

Entity
Remote Façade
 Coarse grained interface
JVM
Client

RMI

Local calls

Entity

Remote
Façade

Entity
Session
Session

Entity
Remote Façade
 Benefits
– Net traffic is reduced
– Transactions are closer to the database

 Drawbacks
– Limitations on object oriented programming
– Solution is based on limitations of the network
Interfaces for Distribution
 XML over HTTP is a common interface
– XML is structured and allows for lot of data
– XML is common format, well known
– HTTP is common and esay to use

 XML has overhead
– Parsing and manipulation of strings is expensive
– Overhead if not needed

 Approches like REST are more efficient
– Use HTTP right
Scalability
Scaling the application
 Today’s web sites must handle multiple
simulations users
 Examples:
– All web based apps must handle several users
– mbl.is handles ~180.000 users/day
– Betware must handle up to 100.000 simultaneous
users
The World we Live in
 Average number of tweets per day 58
million
 Total number of minutes spent on
Facebook each month 700 billion
 SnapChat has five million daily active
users who send 200 million photos per
day.
 Instagram has over 150 million users
on the platform and1 billion likes
happening each day
Scalability
 Scalability is the measure of how adding
resource (usually hardware) affects the
performance
– Vertical scalability (up) – increase server power
– Horizontal scalability (out) – increase the servers

 Session migration
– Move the session for one server to another

 Server affinity
– Keep the session on one server and make the client
always use the same server
Scalability Example
Load Distribution
 Use number of machines to handle requests
 Load Balancer directs all
request to particular server
– All requests in one session go
to the same server
– Server affinity

 Benefits

– Load can be increased
– Easy to add new pairs
– Uptime is increased

 Drawbacks

– Database is a bootleneck
Clustering
 Distributing components
– Each node has one
component
– Increased performance
is not guaranteed

 Using cluster
– Have all components
in each node and use
local calls
Clustering
 With clustering, servers
are connected together
as they were a single
computer

– Request can be handled
by any server
– Sessions are stored on
multiple servers
– Servers can be added and
removed any time

 Problem is with state

– State in application servers reduces scalability
– Clients become dependant on particular nodes
Clustering State
 Application functionality
– Handle it yourself, but this is complicated, not worth
the effort

 Shared resources
– Well-known pattern (Database Session State)
– Problem with bottlenecks limits scalablity

 Clustering Middleware
– Several solutions, for example JBoss, Terracotta

 Clustering JVM or network
– Low levels, transparent to applications
Scalability Example
Measuring Scalability
 The only meaningful way to know about
system’s performance is to measure it
 Performance Tools can help this process
– Give indication of scalability
– Identify bottlenecks
Example tool: LoadRunner
Example tool: JMeter
QUIZ
Which is true when you are clustering your application?
A) Make sure all requests goes to the same machine
B) Deploy each component on separate machine to distribute
load
C) You try to minimize network traffic to avoid latency
problems
D) Deploy the whole solution on many machines
Real World Examples:
Betware Iceland Data Center
ISP1

ISP2
Hardware
firewall
Load
balancer

Backup
Software
System
DB

16 port 2Gbps
SAN switch
QLogic

CMS
DB

12 x 300GB
SAS 15K
24 x 300GB
SAS 15K

Pair of each
server on
separate blade

IBM Blade
Chassis
L12 Session State and Distributation Strategies
L12 Session State and Distributation Strategies
L12 Session State and Distributation Strategies
Summary
 Session State
– Business transactions

 Session State Patterns
– Client Session State
– Server Session State
– Database Session State

 Distribution Strategies
– How to distribute

More Related Content

PPTX
L21 scalability
PDF
L20 Scalability
PDF
Lecture 11 client_server_interaction
PPT
Storage, San And Business Continuity Overview
PPTX
Client Server System Development
PPTX
PPT
Client-Server Computing
PPTX
Cloud computing
L21 scalability
L20 Scalability
Lecture 11 client_server_interaction
Storage, San And Business Continuity Overview
Client Server System Development
Client-Server Computing
Cloud computing

What's hot (20)

PPT
Client Server Architecture1
PPTX
Patterns of enterprise application architecture
PPTX
Designing distributed systems
PPT
saito_porcupine
PDF
Bridging the Developer and the Datacenter
DOCX
Introduction to the client server computing By Attaullah Hazrat
DOC
pramod
PPT
ScalabilityAvailability
PPTX
Client computing evolution ppt11
PDF
L19 Application Architecture
PPTX
Creating a Centralized Consumer Profile Management Service with WebSphere Dat...
PPT
Why Now May Be The Time To Consider A Managed Services Approach to Database A...
PDF
Scalability Design Principles - Internal Session
PDF
Using Distributed In-Memory Computing for Fast Data Analysis
PDF
What is a database server and client ?
PPTX
Scalable Web Architecture and Distributed Systems
DOCX
Mohammed Abdul Faheem
PPTX
Client server architecture
PPTX
Coherence Overview - OFM Canberra July 2014
Client Server Architecture1
Patterns of enterprise application architecture
Designing distributed systems
saito_porcupine
Bridging the Developer and the Datacenter
Introduction to the client server computing By Attaullah Hazrat
pramod
ScalabilityAvailability
Client computing evolution ppt11
L19 Application Architecture
Creating a Centralized Consumer Profile Management Service with WebSphere Dat...
Why Now May Be The Time To Consider A Managed Services Approach to Database A...
Scalability Design Principles - Internal Session
Using Distributed In-Memory Computing for Fast Data Analysis
What is a database server and client ?
Scalable Web Architecture and Distributed Systems
Mohammed Abdul Faheem
Client server architecture
Coherence Overview - OFM Canberra July 2014
Ad

Similar to L12 Session State and Distributation Strategies (20)

PPTX
Scaling Systems: Architectures that Grow
PDF
Architecting for scalability in cf
PDF
Smith Scaling Java Applications With Coherence
PPTX
Enterprise Software Development Patterns
PPTX
From cache to in-memory data grid. Introduction to Hazelcast.
PDF
Scalability Considerations
PPT
Virtual classroom
PDF
Caching in Distributed Environment
PPTX
Scaling High Traffic Web Applications
PPTX
Scaling a High Traffic Web Application: Our Journey from Java to PHP
PPTX
Application architecture for the rest of us - php xperts devcon 2012
PPT
Part 1 network computing
PPT
4. system models
PPT
J2EE Performance And Scalability Bp
PDF
Don’t give up, You can... Cache!
PPT
2010 05-21, object-relational mapping using hibernate v2
PPTX
Clustered PHP - DC PHP 2009
PPT
9. Distributed Systems Architecture.pptnnihi
PPTX
Distributed architecture (SAD)
KEY
Web frameworks don't matter
Scaling Systems: Architectures that Grow
Architecting for scalability in cf
Smith Scaling Java Applications With Coherence
Enterprise Software Development Patterns
From cache to in-memory data grid. Introduction to Hazelcast.
Scalability Considerations
Virtual classroom
Caching in Distributed Environment
Scaling High Traffic Web Applications
Scaling a High Traffic Web Application: Our Journey from Java to PHP
Application architecture for the rest of us - php xperts devcon 2012
Part 1 network computing
4. system models
J2EE Performance And Scalability Bp
Don’t give up, You can... Cache!
2010 05-21, object-relational mapping using hibernate v2
Clustered PHP - DC PHP 2009
9. Distributed Systems Architecture.pptnnihi
Distributed architecture (SAD)
Web frameworks don't matter
Ad

More from Ólafur Andri Ragnarsson (20)

PDF
Nýsköpun - Leiðin til framfara
PDF
Nýjast tækni og framtíðin
PDF
New Technology Summer 2020 Course Introduction
PDF
L01 Introduction
PDF
L23 Robotics and Drones
PDF
L22 Augmented and Virtual Reality
PDF
L20 Personalised World
PDF
L19 Network Platforms
PDF
L18 Big Data and Analytics
PDF
L17 Algorithms and AI
PDF
L16 Internet of Things
PDF
L14 From the Internet to Blockchain
PDF
L14 The Mobile Revolution
PDF
New Technology 2019 L13 Rise of the Machine
PDF
L12 digital transformation
PDF
L10 The Innovator's Dilemma
PDF
L09 Disruptive Technology
PDF
L09 Technological Revolutions
PDF
L07 Becoming Invisible
PDF
L06 Diffusion of Innovation
Nýsköpun - Leiðin til framfara
Nýjast tækni og framtíðin
New Technology Summer 2020 Course Introduction
L01 Introduction
L23 Robotics and Drones
L22 Augmented and Virtual Reality
L20 Personalised World
L19 Network Platforms
L18 Big Data and Analytics
L17 Algorithms and AI
L16 Internet of Things
L14 From the Internet to Blockchain
L14 The Mobile Revolution
New Technology 2019 L13 Rise of the Machine
L12 digital transformation
L10 The Innovator's Dilemma
L09 Disruptive Technology
L09 Technological Revolutions
L07 Becoming Invisible
L06 Diffusion of Innovation

Recently uploaded (20)

PDF
Empathic Computing: Creating Shared Understanding
PDF
Approach and Philosophy of On baking technology
PDF
Peak of Data & AI Encore- AI for Metadata and Smarter Workflows
PPTX
VMware vSphere Foundation How to Sell Presentation-Ver1.4-2-14-2024.pptx
PDF
Dropbox Q2 2025 Financial Results & Investor Presentation
PPT
“AI and Expert System Decision Support & Business Intelligence Systems”
PDF
Blue Purple Modern Animated Computer Science Presentation.pdf.pdf
PDF
Encapsulation_ Review paper, used for researhc scholars
PDF
KodekX | Application Modernization Development
PPTX
MYSQL Presentation for SQL database connectivity
PDF
Building Integrated photovoltaic BIPV_UPV.pdf
PPTX
Programs and apps: productivity, graphics, security and other tools
PDF
Machine learning based COVID-19 study performance prediction
PDF
Per capita expenditure prediction using model stacking based on satellite ima...
DOCX
The AUB Centre for AI in Media Proposal.docx
PPTX
Detection-First SIEM: Rule Types, Dashboards, and Threat-Informed Strategy
PDF
Optimiser vos workloads AI/ML sur Amazon EC2 et AWS Graviton
PDF
Review of recent advances in non-invasive hemoglobin estimation
PPTX
sap open course for s4hana steps from ECC to s4
PPTX
20250228 LYD VKU AI Blended-Learning.pptx
Empathic Computing: Creating Shared Understanding
Approach and Philosophy of On baking technology
Peak of Data & AI Encore- AI for Metadata and Smarter Workflows
VMware vSphere Foundation How to Sell Presentation-Ver1.4-2-14-2024.pptx
Dropbox Q2 2025 Financial Results & Investor Presentation
“AI and Expert System Decision Support & Business Intelligence Systems”
Blue Purple Modern Animated Computer Science Presentation.pdf.pdf
Encapsulation_ Review paper, used for researhc scholars
KodekX | Application Modernization Development
MYSQL Presentation for SQL database connectivity
Building Integrated photovoltaic BIPV_UPV.pdf
Programs and apps: productivity, graphics, security and other tools
Machine learning based COVID-19 study performance prediction
Per capita expenditure prediction using model stacking based on satellite ima...
The AUB Centre for AI in Media Proposal.docx
Detection-First SIEM: Rule Types, Dashboards, and Threat-Informed Strategy
Optimiser vos workloads AI/ML sur Amazon EC2 et AWS Graviton
Review of recent advances in non-invasive hemoglobin estimation
sap open course for s4hana steps from ECC to s4
20250228 LYD VKU AI Blended-Learning.pptx

L12 Session State and Distributation Strategies

  • 1. Lecture 13 Session State and Distribution Strategies
  • 3. Reading  Fowler 6 – Session State  Fowler 17 – Session State Patterns
  • 4. Agenda  Session State – Business transactions  Session State Patterns – Client Session State – Server Session State – Database Session State
  • 5. Business Transactions  Transactions that expand more than one request – User is working with data before they are committed to the database • Example: User logs in, puts products in a shopping cart, buys, and logs out – Where do we keep the state between transactions?
  • 6. State  Server with state vs. stateless server – Stateful server must keep the state between requests  Problem with stateful servers – Need more resources, limit scalability
  • 7. Stateless Servers  Stateless servers scale much better  Use fewer resources  Example: – View book information – Each request is separate
  • 8. Stateful Servers  Stateful servers are the norm  Not easy to get rid of them  Problem: they take resources and cause server affinity  Example: – 100 users make request every 10 second, each request takes 1 second – One stateful object per user – Object are Idle 90% of the time
  • 9. Session State  State that is relevant to a session – State used in business transactions and belong to a specific client – Data structure belonging to a client – May not be consistent until they are persisted  Session is distinct from record data – Record data is a long-term persistent data in a database – Session state might en up as record data
  • 10. EXCERISE Question: Where do you store the session?
  • 11. Ways to Store Session State  We have three players – The client using a web browser – The Server running the web application and domain – The database storing all the data
  • 12. Ways to Store Session State  Three basic choices – Client Session State (456) – Server Session State (458) – Database Session State (462)
  • 13. Client Session State Store session state on the client  How It Works – Desktop applications can store the state in memory – Web solutions can store state in cookies, hide it in the web page, or use the URL – Data Transfer Object can be used – Session ID is the minimum client state – Works well with REST
  • 14. Client Session State  When to Use It – Works well if server is stateless – Maximal clustering and failover resiliency  Drawbacks – Does not work well for large amount of data – Data gets lost if client crashes – Security issues
  • 15. Server Session State Store session state on a server in a serialized form  How It Works – Session Objects – data structures on the server keyed to session Id  Format of data – Can be binary, objects or XML  Where to store session – Application server, file or local database
  • 16. Server Session State  Specific Implementations – HttpSession – Stateful Session Beans – EJB  When to Use It – Simplicity, it is easy to store and receive data  Drawbacks – – – – Data can get lost if server goes down Clustering and session migration becomes difficult Space complexity (memory of server) Inactive sessions need to be cleaned up
  • 17. Database Session State Store session data as committed data in the database  How It Works – Session State stored in the database – Can be stored as temporary data to distinguish from committed record data  Pending session data – Pending session data might violate integrity rules – Use of pending field or pending tables • When pending session data becomes record data it is save in the real tables
  • 18. Database Session State  When to Use It – Improved scalability – easy to add servers – Works well in clusters – Data is persisted, even if data centre goes down  Drawbacks – Database becomes a bottleneck – Need of clean up procedure of pending data that did not become record data – user just left
  • 19. What about dead sessions?  Client session – No our problem  Server session – Web servers will send inactive message upon timeout  Database session – Need to be clean up – Retention routines
  • 20. Caching  Caching is temporary data that is kept in memory between requests for performance reasons – Not session data – Can be thrown away and retrieved any time  Saves the round-trip to the database  Can become stale or old and out-dated – Distributed caching is one way to solve that
  • 21. Practical Example  Client session – For preferences, user selections  Server session – Used for browsing and caching – Logged in customer  Database – “Legal” session – Stored, tracked, need to survive between sessions
  • 22. QUIZ We are building an application for processing development grants. The application is complicated and users can login any time and continue work on their application. What design pattern would we use for storing the session? A) B) ✔ C) D) Client Session State Server Session State Database Session State No state required
  • 24. Reading  Fowler 7 – Distribution Strategies  Fowler 15 – Distribution Patterns – Remote Façade (388)
  • 25. Agenda  Distributed Architectures – Remote and Local Interfaces – Where You Have to Distribute – Remote Façade  Scalablity  DEMO
  • 26. Distributed Architecture  Distribute processing by placing objects different nodes
  • 27. Distributed Architecture  Distribute processing by placing objects on different nodes  Benefits – Load is distributed between different nodes giving overall better performance – It is easy to add new nodes – Middleware products make calls between nodes transparent But is this true?
  • 28. Distributed Architecture  Distribute processing by placing objects different nodes “This design sucks like an inverted hurricane” – Fowler Fowler’s First Law of Distributed Object Design: Don't Distribute your objects!
  • 29. Remote and Local Interfaces  Local calls – Calls between components on the same node are local  Remote calls – Calls between components on different machines are remote  Objects Oriented programming – Promotes fine-grained objects
  • 30. Remote and Local Interfaces  Local call within a process is very, very fast  Remote call between two processes is order-ofmagnitude s l o w e r – Marshalling and un-marshalling of objects – Data transfer over the network  With fine-grained object oriented design, remote components can kill performance  Example – Address object has get and set method for each member, city, street, and so on – Will result in many remote calls
  • 31. Remote and Local Interfaces  With distributed architectures, interfaces must be course-grained – Minimizing remote function calls  Example – Instead of having getters and setters for each field, bulk assessors are used
  • 32. Example  Sun Application Model – “The Canonical Architecture”  Entity Beans – Each bean maps to row in the database – find methods returns Collection of Remote interfaces
  • 33. Example  Result – Architecture that does not perform very well  Suggested solution was – Use session beans to call entity beans
  • 34. Distributed Architecture  Better distribution model – Load Balancing or Clustering the application involves putting several copies of the same application on different nodes
  • 35. Where You Have to Distribute  As architect, try to eliminate as many remote call as possible – If this cannot be archived choose carefully where the distribution boundaries lay  Distribution Boundaries – – – – – Client/Server Server/Database Web Server/Application Server Separation due to vendor differences There might be some genuine reason
  • 36. Optimizing Remote Calls  We know remote calls are expensive  How can we minimize the cost of remote calls?  The overhead is – Marshaling or serializing data – Network transfer  Put as much data into the call – Course grained call  Remote Façade
  • 37. Remote Façade Provides a coarse-grained facade on fine-grained objects to improve efficiency over a network  The façade is a thin wrapper that provides coarse-grained interface to a system – In an object-oriented model, you do best with small objects that have small methods – Can cause great deal of interaction between objects and method invocations
  • 38. Remote Façade  How It Works – Allows efficient remote access with coarse-grained interface – Façade will use the fine-grained object to build and return object like Data Transfer Object – Should not contain any domain logic
  • 39. Remote Façade  When to Use It – Whenever you need remote access to fine grained object model – Most common use is between UI and domain model
  • 40. Remote Façade  Remote method invocation are expensive – Performance killer RMI Client JVM Entity Entity Session Session Entity
  • 41. Remote Façade  Coarse grained interface JVM Client RMI Local calls Entity Remote Façade Entity Session Session Entity
  • 42. Remote Façade  Benefits – Net traffic is reduced – Transactions are closer to the database  Drawbacks – Limitations on object oriented programming – Solution is based on limitations of the network
  • 43. Interfaces for Distribution  XML over HTTP is a common interface – XML is structured and allows for lot of data – XML is common format, well known – HTTP is common and esay to use  XML has overhead – Parsing and manipulation of strings is expensive – Overhead if not needed  Approches like REST are more efficient – Use HTTP right
  • 45. Scaling the application  Today’s web sites must handle multiple simulations users  Examples: – All web based apps must handle several users – mbl.is handles ~180.000 users/day – Betware must handle up to 100.000 simultaneous users
  • 46. The World we Live in  Average number of tweets per day 58 million  Total number of minutes spent on Facebook each month 700 billion  SnapChat has five million daily active users who send 200 million photos per day.  Instagram has over 150 million users on the platform and1 billion likes happening each day
  • 47. Scalability  Scalability is the measure of how adding resource (usually hardware) affects the performance – Vertical scalability (up) – increase server power – Horizontal scalability (out) – increase the servers  Session migration – Move the session for one server to another  Server affinity – Keep the session on one server and make the client always use the same server
  • 49. Load Distribution  Use number of machines to handle requests  Load Balancer directs all request to particular server – All requests in one session go to the same server – Server affinity  Benefits – Load can be increased – Easy to add new pairs – Uptime is increased  Drawbacks – Database is a bootleneck
  • 50. Clustering  Distributing components – Each node has one component – Increased performance is not guaranteed  Using cluster – Have all components in each node and use local calls
  • 51. Clustering  With clustering, servers are connected together as they were a single computer – Request can be handled by any server – Sessions are stored on multiple servers – Servers can be added and removed any time  Problem is with state – State in application servers reduces scalability – Clients become dependant on particular nodes
  • 52. Clustering State  Application functionality – Handle it yourself, but this is complicated, not worth the effort  Shared resources – Well-known pattern (Database Session State) – Problem with bottlenecks limits scalablity  Clustering Middleware – Several solutions, for example JBoss, Terracotta  Clustering JVM or network – Low levels, transparent to applications
  • 54. Measuring Scalability  The only meaningful way to know about system’s performance is to measure it  Performance Tools can help this process – Give indication of scalability – Identify bottlenecks
  • 57. QUIZ Which is true when you are clustering your application? A) Make sure all requests goes to the same machine B) Deploy each component on separate machine to distribute load C) You try to minimize network traffic to avoid latency problems D) Deploy the whole solution on many machines
  • 58. Real World Examples: Betware Iceland Data Center
  • 59. ISP1 ISP2 Hardware firewall Load balancer Backup Software System DB 16 port 2Gbps SAN switch QLogic CMS DB 12 x 300GB SAS 15K 24 x 300GB SAS 15K Pair of each server on separate blade IBM Blade Chassis
  • 63. Summary  Session State – Business transactions  Session State Patterns – Client Session State – Server Session State – Database Session State  Distribution Strategies – How to distribute