Web architecture - overview of techniques.

35
Web application architecure: overview of techniques Ruslan Shevchenko. <[email protected]> GoSave, Inc: http://www.gosave.com

description

Talk about architectural patterns in modern web applications on Developers Day Odessa Innovation Week webcamp

Transcript of Web architecture - overview of techniques.

Page 1: Web architecture - overview of  techniques.

Web application architecure: overview of techniques Ruslan Shevchenko. <[email protected]>!

GoSave, Inc: http://www.gosave.com!

Page 2: Web architecture - overview of  techniques.

Themes❖ What are current architecture patterns, which !

❖ can be used!

❖ can be reused ( in other languages or frameworks other than origin)!

!

❖ Client/Service interaction. !

❖ Reactivity

Page 3: Web architecture - overview of  techniques.

What is in mainstream now ?❖ Sinatra-like frameworks!❖ Server:!

❖ REST !❖ Client: MVC!

❖ yesterday: backbone!❖ today: angular!❖ tomorrow: react.js + something

Page 4: Web architecture - overview of  techniques.

shiny• http://shiny.rstudio.com/!

• live example: http://shiny.rstudio.com/gallery/telephones-by-region.html!

• R language!

• X LOC : server!

• Y LOC: UI

Page 5: Web architecture - overview of  techniques.

shiny• http://shiny.rstudio.com/!

• live example: http://shiny.rstudio.com/gallery/telephones-by-region.html!

• R language!

• 8 LOC : server!

• 12 LOC: UI

Page 6: Web architecture - overview of  techniques.

shiny: UI.Rlibrary(shiny) library(datasets) !shinyUI( fluidPage( titlePanel("Telephones by region"), sidebarLayout( sidebarPanel( selectInput("region", "Region:", choices=colnames(WorldPhones)), hr(), helpText("Data from AT&T (1961) The World's Telephones.") ), mainPanel( plotOutput("phonePlot") ) ) ))

Page 7: Web architecture - overview of  techniques.

shiny: Server.R

library(shiny) !# Rely on the 'WorldPhones' dataset in the datasets # package (which generally comes preloaded). library(datasets) !shinyServer(function(input, output) { output$phonePlot <- renderPlot({ barplot(WorldPhones[,input$region]*1000, main=input$region, ylab="Number of Telephones", xlab="Year") }) })

Page 8: Web architecture - overview of  techniques.

Shiny: notes

❖ DSL for HTML!

❖ Reactive!

❖ Websocket transport instead request/reply (?)

Page 9: Web architecture - overview of  techniques.

Shiny: notes

❖ DSL for HTML!

❖ Reactive!

❖ Websocket transport instead request/reply

❖ Predefined UI skin (twitter bootstrap)!❖ Narrow applicability

Page 10: Web architecture - overview of  techniques.

Conway law

Organizations which design systems ... are constrained to produce designs which are copies of the communication structures of these organizations ……! (Conway, 1968)!

Organization communication !structure

Software structure

Shiny <=> existence of data analysis department

Page 11: Web architecture - overview of  techniques.

max. enterprise: Java

❖ dropwizard: https://dropwizard.github.io/dropwizard/!

❖ spring: http://www.spring.io!

❖ J2EE %-)

(Server-centric)!

Page 12: Web architecture - overview of  techniques.

max. enterprise: javaRelative good and applicable:

@Path(“/users”) @GET @Produces({MediaType.APPLICATION_JSON}) @ApiOperation(nickname = "getUsers", value = "get list of users", httpMethod = "GET", response = UsersSortDTO.class, responseContainer = “List") public List<UserDTO> list(@ApiParam SelectorDTO selector) { CriteriaQuery<UserDTO> = … ………. return q.getResultList(); }

Page 13: Web architecture - overview of  techniques.

max. enterprise: javaRelative good and applicable:

❖ Jersey: https://jersey.java.net/!

❖ request bind to method.!

❖ routing is set via annotations.!

❖ Jackson: https://github.com/FasterXML/jackson!

❖ annotation-based json serializer with good defaults!

❖ Swagger: https://helloreverb.com/developers/swagger

Page 14: Web architecture - overview of  techniques.

Client/Server API issues.REST - is not fit for all

What we do with operations, other than CRUD over resources ?

❖ RPC on some language on top of javascript [?]!

❖ adopt IDL protocol [?]!

❖ fix REST [?]

Ideal solution yet not exists….

Page 15: Web architecture - overview of  techniques.

Client/Server API: One Language

• Javascript (node.js) !• ClojureScript/ Clojure: http://clojure.org/!• Kotlin: http://kotlin-web-site.jetbrains.org/ !• Scala (!

• scala.js [http://www.scala-js.org/], !• jscala [ https://github.com/nau/jscala ] !

• R !• etc …

Many implementations

❖ Conway law, !❖ Not one ‘ideal’ language for all

Page 16: Web architecture - overview of  techniques.

Client/Server API: IDLIDL == Interface Definition Language

struct ProfileInfo!{! 1: required string uid;! 2: optional string firstName;! 3: optional string middleName;! 4: optional string lastName;! 5: optional string email;! 6: optional string phone;! 7: optional string addrPostal;!}! !

service SelfCare!{! ProfileInfo getProfileInfo(required string authToken)! throws(OperationException)! …………

Implementations:!

thrift: http://thrift.apache.org/!

RSDL, WADL (xml-based)

Page 17: Web architecture - overview of  techniques.

Client/Server: Fix RESTREST without PUT

RPC call = create event (i.e. POST /event )! seqence of events instead PUT

CQRS = Command Query Responsibility

Events State

Query

rdonly

Page 18: Web architecture - overview of  techniques.

Client/Server: StreamingExample: sparkle. https://github.com/mighdoll/sparkle

Visualization of data stream, ! coming from server via websocket transport

Server (scala)

Client (javascript)

Server -> Client : Data Stream, !(reply to control messages)!

!Client -> Server: Control messages!

(subscribe/unsubscribe/transform)

Page 19: Web architecture - overview of  techniques.

Reactivity: client.Shiny: one circuit with client and server.

More common: client-only reactive interactions, ! REST/RPC with server

❖ Angular.js [2/way binding]!

❖ React.js [1/way binding] !

❖ (model => view)!

❖ OM: https://github.com/swannodette/om!

❖ RFP!

❖ backon.js [ http://baconjs.github.io/], RxJs!

❖ ELM (language) http://elm-lang.org!

Page 20: Web architecture - overview of  techniques.

Reactivity: client: Omhttps://github.com/swannodette/om

Clojure!!!

Application state = Tree, bound to clojure atom!!UI component state = path inside application state!!Use React.js for updating UI from change in application state!

Page 21: Web architecture - overview of  techniques.

Reactivity: serverReactivity on server - more about C10K !

• http://www.reactivemanifesto.org/!

• http://en.wikipedia.org/wiki/C10k_problem

No blocking ….!event oriented …

Page 22: Web architecture - overview of  techniques.

Unreactive pseudocode: 1def listUsers(r: Request): RequestResult = listForm.bind(request){ ! success(form) => Ok (ToJson( users.filter(_.name contains form.q). page(form.offset,form.limit) ) ), ! failure(f,message, ex) => Error(403, message) !}

Page 23: Web architecture - overview of  techniques.

Unreactive pseudocode: 1def listUsers(r: Request): RequestResult = listForm.bind(request){ ! success(form) => Ok (ToJson( users.filter(_.name contains form.q). page(form.offset,form.limit) ) ), ! failure(f,message, ex) => Error(403, message) !}

SQL

Page 24: Web architecture - overview of  techniques.

Nonreactive: 1

Application ServerClient Database

Page 25: Web architecture - overview of  techniques.

Nonreactive: 1 / overload

Application ServerClient Database

Page 26: Web architecture - overview of  techniques.

Reactive code: 2

def listUsers = Action { request => listForm.bind(request){ ! success(form) => Ok (ToJson( users.filter(_.name contains form.q). page(form.offset,form.limit) ) ), ! failure(f,message, ex) => Error(403, message) !}

latest Play:

Page 27: Web architecture - overview of  techniques.

Reactive code: 2

def listUsers = Action { request => listForm.bind(request){ ! success(form) => Ok (ToJson( users.filter(_.name contains form.q). page(form.offset,form.limit) ) ), ! failure(f,message, ex) => Error(403, message) !}

callback

latest Play:

Page 28: Web architecture - overview of  techniques.

Non-reactive: 1 / overload

Application ServerClient Database

Page 29: Web architecture - overview of  techniques.

Reactive: 2 / overload

Application ServerClient Database

Page 30: Web architecture - overview of  techniques.

Reactive pseudocode: 3

def listUsers = Action { request => listForm.bind(request){ ! success(form) => Ok ( db.query( users.filter(_.name contains form.q). page(form.offset,form.limit) ) map ( x => ToJson(x) ) ), ! failure(f,message, ex) => Error(403, message) !}

Imagine, we have reactive db driver:callback

callback

Page 31: Web architecture - overview of  techniques.

Reactive: 3 / overload

Application ServerClient Database

Page 32: Web architecture - overview of  techniques.

Server: reactivity

• 2 callbacks instead sequential code!• (welcome to callback hell ?)!• functional programming is really needed!

• Infrastructure is not mature yet.!• reactive-mongo, reactive-postgres,!• but we have no reactivity suport in jdbc!

Page 33: Web architecture - overview of  techniques.

Server: reactivity

Other computation models:!• Actors [Erlang, Scala Akka]!• Channels [Go, Closure core.async]!• Language reactive extensions!

• [RxNet, RxJava, RxScala]

Page 34: Web architecture - overview of  techniques.

Web architecture: overview of techniques

❖ Can’t say that we have some ‘Canonical ideal architecture’.!

❖ Non-ideal techniques are still interesting.!

❖ Invention/Reinvention cycle => !

❖ Hope we will see something new!

❖ Take care

Page 35: Web architecture - overview of  techniques.

Web architecture: overview of techniques

Thanks for attention.!

!

Ruslan Shevchenko, <[email protected]>!

https://github.com/rssh!

@rssh1!

//this talk was bought to you by GoSave: http://www.gosave.com ;)!