integration solution patterns

59
Integration Solution Patterns © WSO2 2013. Not for redistribution. Commercial in Confidence. May 2013 Nadeesha Gamage Dakshitha Ratnayake

Upload: wso2

Post on 29-Nov-2014

1.021 views

Category:

Documents


3 download

DESCRIPTION

 

TRANSCRIPT

Page 1: Integration Solution Patterns

Integration Solution Patterns

© WSO2 2013. Not for redistribution. Commercial in Confidence.

May 2013 Nadeesha Gamage Dakshitha Ratnayake

Page 2: Integration Solution Patterns

About WSO2

•  Providing the only complete open source componentized cloud platform •  Dedicated to removing all the stumbling blocks to enterprise agility •  Enabling you to focus on business logic and business value

•  Recognized by leading analyst firms as visionaries and leaders

•  Gartner cites WSO2 as visionaries in all 3 categories of application infrastructure

•  Forrester places WSO2 in top 2 for API Management •  Global corporation with offices in USA, UK & Sri Lanka

•  200+ employees and growing •  Business model of selling comprehensive support & maintenance for our products

Page 3: Integration Solution Patterns

150+ globally positioned support customers

Page 4: Integration Solution Patterns

Integration

Image Source - http://blog.bootstraptoday.com/2013/01/03/considering-saas-3-tips-for-your-data-integration-strategy/

Page 5: Integration Solution Patterns

Integration – Why?

•  Business applications rarely live in isolation.

•  Users expect instant access to all business functions an enterprise can offer.

•  Functionality may reside in different systems.

•  Requires disparate applications to be connected into a larger, integrated solution.

Page 6: Integration Solution Patterns

Integration – How?

•  Architecting integration solutions is a complex task.

•  There are many conflicting drivers and even more possible 'right' solutions.

•  No "cookbook" for enterprise integration solutions.

•  Asynchronous messaging architectures have proven to be the best strategy for enterprise integration because they allow for a loosely coupled solution that overcomes the limitations of remote communication, such as latency and unreliability.

Page 7: Integration Solution Patterns

Why Patterns?

Patterns are an excellent way to ensure: 1. Everyone understands the model taken – poses a design

problem and presents a solution 2. Common vocabulary 3. Use of best practices - experience base that architects have

gained by repeatedly building solutions and learning from mistakes.

4. Faster development time – reuse of patterns and not reinvent patterns

Page 8: Integration Solution Patterns

Outline §  Enterprise Integration Patterns (EIP) – Gregor Hohpe

§  Message Translator, Content-Based Router, etc.

§  Implementation of EIPs in WSO2 ESB §  Low level patterns §  Using functional components such as mediators, sequences

etc.

§  High level solution patterns §  ESB Patterns – Concentrator, Security Proxy etc. §  Overall Integration Patterns

§ e.g. API Gateway, Trusted subsystem etc. § Also see Integration Styles from EIP §  Implementation of integration patterns using WSO2

products

Page 9: Integration Solution Patterns

Enterprise Integration Patterns

http://www.eaipatterns.com/

"The core language of EAI, defined in the book Enterprise Integration Patterns by Gregor Hohpe and Bobby Woolf, is also the core language of defining ESB flows and orchestrations, as seen in the ESB's developer tooling."

Page 10: Integration Solution Patterns

Enterprise Integration Patterns

§  EIPs are patterns using asynchronous messaging as the style of integration.

§  They are technology-agnostic which means it does not matter what programming language or operating system you use.

§  Categorization of Patterns •  Messaging Channels •  Message Constructions •  Message Routing •  Message Transformation •  Messaging Endpoints •  System Management

Page 11: Integration Solution Patterns

WSO2 ESB is…

•  A lightweight, high performance ESB •  Feature rich and standards compliant

•  SOAP and WS-* standards •  REST support •  Domain specific protocol support (eg: FIX)

•  User friendly and highly extensible •  100% free and open source with commercial support

Page 12: Integration Solution Patterns

WSO2 ESB - Functional Components

•  Mediators

•  Sequences

•  Endpoints

•  Proxy Services

•  Event Sources

•  Priority Executors

•  Message Stores

•  Tasks

•  Local Entries

•  Registry

Page 13: Integration Solution Patterns

More on Functional Components

•  Each functional component serves a specific purpose

•  Functional components can be mixed and matched to implement various integration scenarios and patterns

•  Configuring WSO2 ESB for a given scenario requires: •  Identifying the right set of components •  Putting them together in the optimal manner

Page 14: Integration Solution Patterns

Mediators

http://docs.wso2.org/wiki/display/ESB460/Mediators

Rich mediator library, wherein most cases a single mediator can be directly mapped to an EIP.

Page 15: Integration Solution Patterns

List of Mediators

•  Send •  Log •  Property •  Sequence •  Event •  Drop •  Enrich •  Filter •  Out •  In •  Switch •  Router •  Conditional Router

•  XSLT •  URLRewrite •  XQuery •  Header •  Fault •  Cache •  Clone •  Store •  Iterate •  Aggregate •  Callout •  Transaction •  Throttle

•  RMSequence •  DBReport •  DBLookup •  Rule •  Entitlement •  OAuth •  Class •  POJOCommand •  Script •  Spring •  Smooks

Page 16: Integration Solution Patterns

Sequences

•  A chain of mediators

•  Messages are sent through all the mediators in the sequence, in the order they appear

Page 17: Integration Solution Patterns

Enterprise Integration Patterns with WSO2 ESB

Complete Guide - http://docs.wso2.org/wiki/display/IntegrationPatterns/Enterprise

+Integration+Patterns+with+WSO2+ESB The guide shows how each pattern in the patterns catalog can be

simulated using various constructs in WSO2 ESB. A selected few of the patterns will be discussed in this webinar.

Page 18: Integration Solution Patterns

Message Channel

A message channel is a logical channel which is used to connect the applications. One application writes messages to the channel and the other one (or others) reads that message from the channel. Message queue and message topic are examples of message channels.

Page 19: Integration Solution Patterns

•  Queues - •  With WSO2 ESB, a common pattern is to persist the

message from an incoming HTTP request into a persistent message queue, and then process from there.

•  WSO2 Message Broker, ActiveMQ etc. can provide the persistent queue.

•  Topics – Supported by ESB and Message Broker •  WSO2 ESB has an event distribution model and eventing

support. •  WSO2 Message Broker, the Apache QPid-based broker,

provides higher performance as well as supporting the JMS API.

Message Channel continued

Page 20: Integration Solution Patterns

Message Translator

Message translator transforms messages in one format to another. Can be implemented through several Mediators in WSO2 ESB – • Enrich • XSLT • Smooks • Payloadfactory • XQuery

Page 21: Integration Solution Patterns

Publish-Subscribe Channel

•  This type of channel broadcasts an event or notification to all subscribed receivers.

•  This is in contrast with a point-to-point channel. Each subscriber receives the message once.

•  The most common implementation of this pattern is messaging topic.

•  Event mediator. •  Topics – WSO2 ESB/ WSO2 Message Broker

Page 22: Integration Solution Patterns

Publish-Subscribe Channel continued

Page 23: Integration Solution Patterns

Dead Letter Channel

The Dead Letter Channel describes how messaging system determines how to deliver a dead message to the specified recipient. This may be caused by connection problems or other exception like overflowed memory or disc space.

Page 24: Integration Solution Patterns

Dead Letter Channel continued

Page 25: Integration Solution Patterns

Content-Based Router

Content-Based Router examines message contents and route messages based on data contained in the message.

Page 26: Integration Solution Patterns

Content-Based Router continued

Message routing is simulated by Switch and Send mediators of the WSO2 ESB. The Switch Mediator depicts the Router and observes the content of the message while the Send Mediator is used to send the message to a selected recipient. Each case defined should decide on routing the message to the appropriate service.

Page 27: Integration Solution Patterns

Content Enricher

Content Enricher as the name suggests enrich message with missing information. Usually an external data source like a database or a web service is used.

Page 28: Integration Solution Patterns

Content Enricher continued

Page 29: Integration Solution Patterns

Message Filter

Message Filter EIP checks an incoming message against a certain criteria that the message should adhere to. If the criteria is not met, the filter will discard the message. Else, it will route the message to the output channel. The Filter mediator in the ESB will check on the criteria.

Page 30: Integration Solution Patterns

Splitter/Aggregator

The Splitter EIP - Processes messages containing multiple elements. Breaks out the composite message into a series of individual messages. The Aggregator EIP - Combines the results of individual messages so that they can be processed as a whole.

Page 31: Integration Solution Patterns

Splitter/Aggregator continued

Splitter

Aggregator

Page 32: Integration Solution Patterns

Composed Message Processor

The Composed Msg. Processor EIP is used to process a composite message. It maintains the overall message flow when processing a message consisting of multiple elements.

Page 33: Integration Solution Patterns

Composed Message Processor continues

•  Use of Sequences •  Named Sequences •  Sequences in Proxy Services – In Sequence, Out

Sequence, Fault Sequence

Page 34: Integration Solution Patterns

WSO2 ESB Configuration Documented as EIPs

Page 35: Integration Solution Patterns

ESB Patterns

•  It’s worth understanding the way the ESB is being used: •  ESB are not the same as network routers •  Can be used in multiple ways for Routing, Traffic filtering,

Transformation, Protocol Switching, Load balancing. •  More like a Swiss-army knife •  Be clear about how you intend to use it •  The same ESB can be implementing multiple patterns

•  Anti-Patterns •  Implement all your business logic in the ESB

Page 36: Integration Solution Patterns

The Concentrator Pattern

Page 37: Integration Solution Patterns

EAI Hub

•  Request Transformation •  ESB can split and clone messages.

•  Response Transformation •  ESB can aggregate messages.

•  Service chaining •  ESB can act as a lightweight orchestration engine.

Page 38: Integration Solution Patterns

Federated ESB Pattern

Enterprise ESB

Routing and Audit

Department ESB

Department ESB

Department ESB

Page 39: Integration Solution Patterns

Overall Integration Patterns

•  API Gateway •  Service Broker/Trusted Subsystem •  Service Firewall •  Master Data Management •  Security Gateway •  Dual Channel/ Claim Check

Page 40: Integration Solution Patterns

WSO2 Product Stack

Page 41: Integration Solution Patterns

API Gateway

Business Problem •  Different Service platforms run on a variety of server hardware,

operating systems and development platforms. •  Services expose different communication and security patterns. •  Complexity in exposing the SOA to internal and external

consumers.

Page 42: Integration Solution Patterns

API Gateway

Solution •  An Approach to simplify and normalize interaction with

heterogeneous services. •  Define a unified generic service layer on-top of the existing

services to expose to the consumers. •  API Gateway Pattern is able to solve this business problem.

Page 43: Integration Solution Patterns

API Gateway

Page 44: Integration Solution Patterns

Service Broker/ Trusted Subsystem

Business Problem •  Backend services need to be relieved from authentication of

service clients. •  Security authentication needs to be handled before the call

reach the backend service.

Solution •  User authentication to be handled at the ESB layer. •  Backend service trust the ESB. •  ESB access backend service on-behalf of the authenticated

user.

Page 45: Integration Solution Patterns

Service Broker/ Trusted Subsystem

Page 46: Integration Solution Patterns

Service Firewall Pattern

Business Problem •  To expose internal business services to external service

consumers. •  To ensure that only authorized users access the services

exposed. •  To validate the user credentials before reaching the internal

network. Solution •  Deploy a separate ESB to validate user requests. •  Achieve this by using a Service Firewall Pattern.

Page 47: Integration Solution Patterns

Service Firewall Pattern

Page 48: Integration Solution Patterns

Security Gateway Pattern

Page 49: Integration Solution Patterns

Master Data Management (MDM)

Business Problem •  Business organizations have legacy applications and databases

that store and manage master data. •  Managing master data is critical to make successful business

decisions. •  Present IT infrastructure is depended on SOA. •  Need a way to connect the Master Data with the SOA.

Page 50: Integration Solution Patterns

Master Data Management (MDM)

Traditional Approach

Page 51: Integration Solution Patterns

Master Data Management (MDM)

Solution •  To expose Master data as services in a SOA. •  Master Data Management Pattern is able to solve this problem.

Page 52: Integration Solution Patterns

Dual Channeling

Business Problem •  When large files are required to go through a workflow process. •  Moving files through the workflow is inefficient, creates

additional traffic, reduce the throughput.

Page 53: Integration Solution Patterns

Dual Channeling Solution •  Dual Channel pattern avoids the above mentioned problems by

having two channels. •  For the metadata on file •  For the actual file

•  A light-weight message with the file related metadata, to process within the workflow.

•  Metadata contains the pointer reference to the actual file.

Page 54: Integration Solution Patterns

Dual Channeling

Page 55: Integration Solution Patterns

Dual Channeling

Page 56: Integration Solution Patterns

Resources

•  http://wso2.com/blogs/architecture

•  http://www.eaipatterns.com/

•  http://docs.wso2.org/wiki/display/IntegrationPatterns/Enterprise+Integration+Patterns+with+WSO2+ESB

Page 57: Integration Solution Patterns

Questions?

Page 58: Integration Solution Patterns

Engage with WSO2

•  Helping you get the most out of your deployments •  From project evaluation and inception to development

and going into production, WSO2 is your partner in ensuring 100% project success

Page 59: Integration Solution Patterns

59

lean . enterprise . middleware