SlideShare une entreprise Scribd logo
1  sur  43
Télécharger pour lire hors ligne
Global Scale ESB with Mule

      Andrew D Kennedy
      grkvlt@apache.org
         March 2011
Who Am I
•   Enterprise Java Developer
•   Apache Qpid Committer
•   Previously Security Engineer
•   Over 15 Years Java Experience
•   Worked with various Investment Banks
•   Interested in Data Mining and
    Visualisation
This Presentation
•   What is an ESB
•   What is Mule
•   Mule Applications
•   Mule Scalability
What is an ESB
• Enterprise Service Bus
• SOA
  – Service Oriented Architecture
• SEDA
  – Staged Event-Driven Architecture
• EIP
  – Enterprise Integration Patterns
Service Oriented Architecture
• Services
  – Shared Business Functions
• Decoupling
  – Local and Remote Services
• Distributed Applications
• Directory and Discovery
EIP
• Similar to Design Patterns
    – Gang of Four Book
•   Shared Terminology
•   Names for Common Concepts
•   Allows Discussion
•   Simplifies Design
(Some) Common Patterns
•   Aggregator (268)
•   Channel Adapter (127)
•   Content Based Router (230)
•   Dead Letter Channel (119)
•   Selective Consumer (515)
•   Message Translator (85)
•   Guaranteed Delivery (122)
What is Mule
• Open Source Project
• MuleSoft
  –   Mule Forge
  –   Mule Enterprise
  –   Mule MQ
  –   Tcat Server
• 2.x - Legacy Applications
• 3.1.1 - Current Community Release
• 3.2.0 - Latest Developer Build
Transports
• Carry Messages between Services
• Connector
  – Configuration
  – Threading
  – Retry
• Endpoint
  – Connects Services
  – Transform Messages
  – Transaction Boundary
Endpoint Examples
<file:inbound-endpoint path="/esb/in"
   comparator="org.mule.transport.file.comparator.Older
   FirstComparator" reverseOrder="true” />
<jetty:endpoint name="server" host="localhost"
   port="60203" path="services/Lookup" />
<imaps:endpoint name=”mail" host="localhost"
   password=”hunter2" port="123" user=”adk"/>
<quartz:endpoint name=”batch" repeatCount="10"
   repeatInterval=”60000" jobName="job"/>
<jms:inbound-endpoint queue="test.queue"/>
VM
• Communication within VM
• Synchronous or Asynchronous
• Transactional
<vm:connector name="async"
  queueEvents="true” />
<vm:inbound-endpoint path="in"
  connector-ref="async"/>
JMS
• Queues
• Topics
• Request-Response
<jms:connector name=”jms" specification="1.1"
  connectionFactory-ref=”qpid"
  username=”adk" password=”hunter2” />
<jms:outbound-endpoint queue=”audit” />
<jms:inbound-endpoint topic=”uk.*.gbp” />
Web Services
• HTTP and HTTPS
  – Custom Data Formats
• CXF
  – JAX-WS
  – SOAP
  – WSDL
• REST
CXF JAX-WS
<inbound-endpoint
   address="http://localhost:63081/hello" />
<cxf:jaxws-service
   serviceClass="org.example.ServiceImpl” />
<cxf:jaxws-client clientClass=”com.example.Client”
   wsdlPort="SoapPort”
   wsdlLocation="classpath:/save.wsdl”
   operation=”output” />
<outbound-endpoint
   address="http://www.example.com/services/save” />
File System
• Poll Directory for Input
<file:connector name="input" fileAge="500"
   autoDelete="true" pollingFrequency="100"
   moveToDirectory="/backup"
   moveToPattern="#[header:originalFilename].backup”
   />
• Write Output File
<file:connector name="output" outputAppend="true"
   outputPattern="#[function:datestamp]-
   #[header:originalFilename]" />
Other Transports
•   AJAX              •   TCP
•   jBPM              •   UDP
•   JDBC              •   FTP
•   Quartz            •   POP3
•   STDIO             •   IMAP
•   RMI               •   SMTP
•   Servlet           •   XMPP
Transformers
•   Change message content
•   XML to POJO via JAXB
•   Applied to endpoints
•   Efficient mechanism for processing
•   Similar to AOP
Transformer Types
•   Encryption and Decryption
•   ByteArray to Object
•   Expression Evaluator
•   XML and JSON
•   Compression
•   Encoding and Decoding
Filtering
• Apply to endpoints
• Payload Type
• Expression
    – XPath, OGNL, JXPath
•   RegEx
•   Wildcard
•   Message Property
•   Logical Operators
    – And, Or, Not
Filtering Examples
<and-filter>
    <message-property-filter
        pattern="JMSCorrelationID=1234567890"/>
    <message-property-filter pattern="JMSReplyTo=null"/>
</and-filter>
<or-filter>
    <payload-type-filter expectedType="java.lang.String"/>
    <payload-type-filter expectedType="java.lang.StringBuffer"/>
</or-filter>
<not-filter>
    <wildcard-filter pattern=”com.example.*"/>
</not-filter>
Routers
•   Control message flow at endpoints
•   Used to link services
•   Both inbound and outbound
•   Specify Filtering and Transformations
Selective Consumer
<inbound>
    <selective-consumer-router>
        <mulexml:jxpath-filter
          expression="msg/header/resultcode =
          'success'"/>
    </selective-consumer-router>
    <forwarding-catch-all-strategy>
        <jms:endpoint topic="error.topic"/>
    </forwarding-catch-all-strategy>
</inbound>
Idempotent Filter
<inbound>
    <idempotent-receiver-router
      idExpression="#[message:id]-#[header:foo]">
        <simple-text-file-store directory="./idempotent” />
    </idempotent-receiver-router>
</inbound>
Filtering Router
<outbound>
     <forwarding-catch-all-strategy>
            <jms:outbound-endpoint queue="error.queue"/>
     </forwarding-catch-all-strategy>
     <filtering-router>
            <smtp:outbound-endpoint to=”adk@example.com"/>
            <payload-type-filter expectedType="java.lang.Exception"/>
     </filtering-router>
     <filtering-router>
            <jms:outbound-endpoint queue="string.queue"/>
            <and-filter>
                 <payload-type-filter expectedType="java.lang.String"/>
                 <regex-filter pattern="the quick brown (.*)"/>
            </and-filter>
     </filtering-router>
</outbound>
Services
• Combine Endpoints, Routers and
  Components
• Mule 2.0 idiom
• Replaced with Flows and Patterns
  – Simpler to use and configure
  – Some features still not available
Flows
• Mule 3 idiom
• Inbound endpoint
• Message processors
  – Chained execution
  – Components
• Outbound endpoint for one-way
• Response for request-response
Components
• Carry out actions
• Business logic in a flow
• Simple components
  – Logging
  – Passthrough
  – Testing
• Spring or POJO
• Web services
Message Processors
•   Aggregator and Splitter
•   Message Filters
•   Recipient List
•   Resequencer
•   Round Robin
•   Wire Tap
Example Flow
<flow name=”OrderFlow">
      <file:inbound-endpoint path="/incoming">
              <file:filename-filter name=”order-*.xml"/>
      </file:inbound-endpoint>
      <xml:xslt-transformer xsl-file=”order-transform.xsl"/>
      <splitter expression="xpath://order"/>
      <!-- The following message processors will be invoked for each order in the xml file -->
      <expression-filter expression="xpath://order[@type='book']"/>
      <component class=”com.example.BookOrderProcessor"/>
      <smtp:outbound-endpoint subject="Order Confirmation" address="#[variable:email]"/>
      <jdbc:outbound-endpoint ref=“saveOrder"/ >
      <default-exception-strategy>
              <jms:outbound-endpoint queue="failedOrders"/>
      </default-exception-strategy>
</flow>
JMS Flow
<flow name=”JmsFlow">
      <jms:inbound-endpoint queue="in">
            <jms:transaction action="ALWAYS_BEGIN" />
      </jms:inbound-endpoint>
      <component class="com.example.ProcessMessage" />
      <jms:outbound-endpoint queue="out">
            <jms:transaction action="ALWAYS_JOIN" />
      </jms:outbound-endpoint>
      <default-exception-strategy>
            <commit-transaction exception-pattern="com.example.ExampleException” />
            <jms:outbound-endpoint queue="dead.letter">
                  <jms:transaction action="JOIN_IF_POSSIBLE" />
            </jms:outbound-endpoint>
      </default-exception-strategy>
</flow>
Complex Flow
<flow name=”TwitterFlow”>
      <poll frequency="5000">
             <twitter:search query=”example" />
      </poll>
      <splitter evaluator="json" expression="results" />
      <idempotent-message-filter idExpression="#[json:id]" />
      <enricher target="#[variable:userDescription]" source="#[json:description]">
             <twitter:user userId="#[json:from_user]" />
      </enricher>
      <salesforce:create type="Opportunity">
             <salesforce:sObject>
                   <salesforce:field key="Name" value="#[json:from_user]" />
                   <salesforce:field key="Description" value="#[variable:userDescription]" />
             </salesforce:sObject>
      </salesforce:create>
</flow>
Patterns
• Specific integration Features
• Simple Service
  – Exposes Components as Web Services
• Web Service Proxy
• Bridge
  – Message Adapter and Transformer
• Validator
  – Validates inbound messages synchronously
  – Processes asynchronously
Questions?
Mule Application

Mule 2 Application Design
Mule Scalability
• Global Enterprises
• Performance
• Multiple Data Locations, Sources,
  Destinations and Owners
• Services
  – Software as a Service
  – Infrastructure as a Service
  – Platform as a Service
Problems
• Performance
  –   Computation
  –   Latency
  –   Throughput
  –   Infrastructure
• Integration
  – Adding Functionality
  – Collecting Data
• Security and Identity
• Transactions
Transactions
• ACID
  – Atomicity, Consistency, Isolation, Durability
• Easy on one system
• Hard with distributed systems
  – Pick your boundaries
• Robust failure handling
Computation
• Parallel Processing
• Asynchronous Tasks
• Orchestration
  – Workflow
• Pooling and Threading
• More and faster is better
Bottlenecks
• Bandwidth
  – Networking
  – Latency and Throughput
• External service providers
• Data sources
  – Database
• Messaging
Messaging Backbone
• Sets scalability limits
• Message flow through system
• Infrastructure choices
  –   JMS
  –   Web based
  –   AMQP
  –   XMPP
  –   TIBCO
• Hardware solutions available
Clustering
• Various external components
  – Database
  – Messaging
  – Web Services
• Business logic components
  – Terracotta
  – GigaSpaces XAP
Load Balancing
• Web Services
• Software
• Hardware
  – XML Transformation
  – SSL
• Round Robin
Questions?

Thanks for Listening
Andrew D Kennedy
grkvlt@apache.org

Contenu connexe

Tendances

Mule ESB
Mule ESBMule ESB
Mule ESB
niravn
 

Tendances (19)

Mule ESB
Mule ESBMule ESB
Mule ESB
 
Message properties component in mule
Message properties component in muleMessage properties component in mule
Message properties component in mule
 
Overview of Mule
Overview of MuleOverview of Mule
Overview of Mule
 
ESB introduction using Mule
ESB introduction using MuleESB introduction using Mule
ESB introduction using Mule
 
Mule overview-ppt
Mule overview-pptMule overview-ppt
Mule overview-ppt
 
A Workhorse Named Mule
A Workhorse Named MuleA Workhorse Named Mule
A Workhorse Named Mule
 
Introduction to es bs mule
Introduction to es bs   muleIntroduction to es bs   mule
Introduction to es bs mule
 
Database component in mule
Database component in muleDatabase component in mule
Database component in mule
 
Junit in mule demo
Junit in mule demo Junit in mule demo
Junit in mule demo
 
Mule soa
Mule soaMule soa
Mule soa
 
Mule soft esb – data validation best practices
Mule soft esb – data validation best practicesMule soft esb – data validation best practices
Mule soft esb – data validation best practices
 
Mule soa
Mule soaMule soa
Mule soa
 
Mule integration
Mule integrationMule integration
Mule integration
 
Mule agent notifications
Mule agent notificationsMule agent notifications
Mule agent notifications
 
Webservice vm in mule
Webservice vm in muleWebservice vm in mule
Webservice vm in mule
 
Mule and web services
Mule and web servicesMule and web services
Mule and web services
 
Send email attachment using smtp in mule esb
Send email attachment using smtp in mule esbSend email attachment using smtp in mule esb
Send email attachment using smtp in mule esb
 
Send email attachment using smtp in mule esb
Send email attachment using smtp  in mule esbSend email attachment using smtp  in mule esb
Send email attachment using smtp in mule esb
 
Mulesoft idempotent Message Filter
Mulesoft idempotent Message FilterMulesoft idempotent Message Filter
Mulesoft idempotent Message Filter
 

En vedette

Mule ESB Tutorial Part 2
Mule ESB Tutorial Part 2Mule ESB Tutorial Part 2
Mule ESB Tutorial Part 2
Srikanth N
 
Un MóN De Sentiments
Un MóN De SentimentsUn MóN De Sentiments
Un MóN De Sentiments
lalvar25
 
Death of Balzac - Victor Hugo
Death of Balzac - Victor HugoDeath of Balzac - Victor Hugo
Death of Balzac - Victor Hugo
honore
 

En vedette (20)

Complete integration with mule esb
Complete integration with mule esbComplete integration with mule esb
Complete integration with mule esb
 
Fundamentals of Mule Esb
Fundamentals of Mule EsbFundamentals of Mule Esb
Fundamentals of Mule Esb
 
Mule Esb Basics
Mule Esb BasicsMule Esb Basics
Mule Esb Basics
 
Muleesb
MuleesbMuleesb
Muleesb
 
Integration with Dropbox using Mule ESB
Integration with Dropbox using Mule ESBIntegration with Dropbox using Mule ESB
Integration with Dropbox using Mule ESB
 
Mule esb basic introduction
Mule esb basic introductionMule esb basic introduction
Mule esb basic introduction
 
Mule ESB Training
Mule ESB TrainingMule ESB Training
Mule ESB Training
 
Mule ESB Tutorial Part 2
Mule ESB Tutorial Part 2Mule ESB Tutorial Part 2
Mule ESB Tutorial Part 2
 
Mule esb presentation
Mule esb presentationMule esb presentation
Mule esb presentation
 
Mulesoft ppt
Mulesoft pptMulesoft ppt
Mulesoft ppt
 
Mule ESB Tutorial Part 1
Mule ESB Tutorial Part 1Mule ESB Tutorial Part 1
Mule ESB Tutorial Part 1
 
Mule ESB Fundamentals
Mule ESB FundamentalsMule ESB Fundamentals
Mule ESB Fundamentals
 
Mule ESB - Integration Simplified
Mule ESB - Integration SimplifiedMule ESB - Integration Simplified
Mule ESB - Integration Simplified
 
Why Transliteracy? An Introduction for Librarians
Why Transliteracy? An Introduction for LibrariansWhy Transliteracy? An Introduction for Librarians
Why Transliteracy? An Introduction for Librarians
 
My Presentation for PYP2013
My Presentation for PYP2013My Presentation for PYP2013
My Presentation for PYP2013
 
OCC Presentation
OCC PresentationOCC Presentation
OCC Presentation
 
Un MóN De Sentiments
Un MóN De SentimentsUn MóN De Sentiments
Un MóN De Sentiments
 
Ubuntu
UbuntuUbuntu
Ubuntu
 
Death of Balzac - Victor Hugo
Death of Balzac - Victor HugoDeath of Balzac - Victor Hugo
Death of Balzac - Victor Hugo
 
Measuring Your Nonprofit Marketing Success
Measuring Your Nonprofit Marketing SuccessMeasuring Your Nonprofit Marketing Success
Measuring Your Nonprofit Marketing Success
 

Similaire à Global Scale ESB with Mule

Nuxeo JavaOne 2007
Nuxeo JavaOne 2007Nuxeo JavaOne 2007
Nuxeo JavaOne 2007
Stefane Fermigier
 
Lifecycle Management of SOA Artifacts for WSO2 Products
Lifecycle Management of SOA Artifacts for WSO2 ProductsLifecycle Management of SOA Artifacts for WSO2 Products
Lifecycle Management of SOA Artifacts for WSO2 Products
WSO2
 
01 apache camel-intro
01 apache camel-intro01 apache camel-intro
01 apache camel-intro
RedpillLinpro
 
Better Enterprise Integration With the WSO2 ESB 4.5.1
Better Enterprise Integration With the WSO2 ESB 4.5.1Better Enterprise Integration With the WSO2 ESB 4.5.1
Better Enterprise Integration With the WSO2 ESB 4.5.1
WSO2
 

Similaire à Global Scale ESB with Mule (20)

Mule esb introduction
Mule esb introductionMule esb introduction
Mule esb introduction
 
Spring integration
Spring integrationSpring integration
Spring integration
 
Camel as a_glue
Camel as a_glueCamel as a_glue
Camel as a_glue
 
Nuxeo JavaOne 2007
Nuxeo JavaOne 2007Nuxeo JavaOne 2007
Nuxeo JavaOne 2007
 
Spring Web Service, Spring Integration and Spring Batch
Spring Web Service, Spring Integration and Spring BatchSpring Web Service, Spring Integration and Spring Batch
Spring Web Service, Spring Integration and Spring Batch
 
Mule enterprise service bus
Mule enterprise service busMule enterprise service bus
Mule enterprise service bus
 
OData: Universal Data Solvent or Clunky Enterprise Goo? (GlueCon 2015)
OData: Universal Data Solvent or Clunky Enterprise Goo? (GlueCon 2015)OData: Universal Data Solvent or Clunky Enterprise Goo? (GlueCon 2015)
OData: Universal Data Solvent or Clunky Enterprise Goo? (GlueCon 2015)
 
Rich Portlet Development in uPortal
Rich Portlet Development in uPortalRich Portlet Development in uPortal
Rich Portlet Development in uPortal
 
Lifecycle Management of SOA Artifacts for WSO2 Products
Lifecycle Management of SOA Artifacts for WSO2 ProductsLifecycle Management of SOA Artifacts for WSO2 Products
Lifecycle Management of SOA Artifacts for WSO2 Products
 
01 apache camel-intro
01 apache camel-intro01 apache camel-intro
01 apache camel-intro
 
EIP In Practice
EIP In PracticeEIP In Practice
EIP In Practice
 
Webservices Workshop - september 2014
Webservices Workshop -  september 2014Webservices Workshop -  september 2014
Webservices Workshop - september 2014
 
Mule esb
Mule esbMule esb
Mule esb
 
Nick harris-sic-2011
Nick harris-sic-2011Nick harris-sic-2011
Nick harris-sic-2011
 
Mule overview
Mule overviewMule overview
Mule overview
 
Mule Overview
Mule OverviewMule Overview
Mule Overview
 
Mule overview
Mule overviewMule overview
Mule overview
 
IT talk SPb "Full text search for lazy guys"
IT talk SPb "Full text search for lazy guys" IT talk SPb "Full text search for lazy guys"
IT talk SPb "Full text search for lazy guys"
 
Better Enterprise Integration With the WSO2 ESB 4.5.1
Better Enterprise Integration With the WSO2 ESB 4.5.1Better Enterprise Integration With the WSO2 ESB 4.5.1
Better Enterprise Integration With the WSO2 ESB 4.5.1
 
Toulouse Java User Group
Toulouse Java User GroupToulouse Java User Group
Toulouse Java User Group
 

Plus de Andrew Kennedy

Plus de Andrew Kennedy (20)

Hyperledger Lightning Talk
Hyperledger Lightning TalkHyperledger Lightning Talk
Hyperledger Lightning Talk
 
Orchestraing the Blockchain Using Containers
Orchestraing the Blockchain Using ContainersOrchestraing the Blockchain Using Containers
Orchestraing the Blockchain Using Containers
 
Multi-Container Applications Spanning Docker, Mesos and OpenStack
Multi-Container Applications Spanning Docker, Mesos and OpenStackMulti-Container Applications Spanning Docker, Mesos and OpenStack
Multi-Container Applications Spanning Docker, Mesos and OpenStack
 
Containers: Beyond the Basics
Containers: Beyond the BasicsContainers: Beyond the Basics
Containers: Beyond the Basics
 
Running Docker in Production
Running Docker in ProductionRunning Docker in Production
Running Docker in Production
 
Using Clocker with Project Calico - Running Production Workloads in the Cloud
Using Clocker with Project Calico - Running Production Workloads in the CloudUsing Clocker with Project Calico - Running Production Workloads in the Cloud
Using Clocker with Project Calico - Running Production Workloads in the Cloud
 
Clocker Now and Next
Clocker Now and NextClocker Now and Next
Clocker Now and Next
 
Clocker, Calico and Docker
Clocker, Calico and DockerClocker, Calico and Docker
Clocker, Calico and Docker
 
Introducing the Open Container Project
Introducing the Open Container ProjectIntroducing the Open Container Project
Introducing the Open Container Project
 
Docker Networking with Project Calico
Docker Networking with Project CalicoDocker Networking with Project Calico
Docker Networking with Project Calico
 
Clocker 1.0.0 Preview
Clocker 1.0.0 PreviewClocker 1.0.0 Preview
Clocker 1.0.0 Preview
 
Bringing Docker to the Cloud
Bringing Docker to the CloudBringing Docker to the Cloud
Bringing Docker to the Cloud
 
Simulating Production with Clocker
Simulating Production with ClockerSimulating Production with Clocker
Simulating Production with Clocker
 
Metaswitch Project Calico
Metaswitch Project CalicoMetaswitch Project Calico
Metaswitch Project Calico
 
Clocker - How to Train your Docker Cloud
Clocker - How to Train your Docker CloudClocker - How to Train your Docker Cloud
Clocker - How to Train your Docker Cloud
 
Clocker - The Docker Cloud Maker
Clocker - The Docker Cloud MakerClocker - The Docker Cloud Maker
Clocker - The Docker Cloud Maker
 
Docker Networking with Clocker and Weave
Docker Networking with Clocker and WeaveDocker Networking with Clocker and Weave
Docker Networking with Clocker and Weave
 
Deploying Complex Applications on Docker using Apache Brooklyn
Deploying Complex Applications on Docker using Apache BrooklynDeploying Complex Applications on Docker using Apache Brooklyn
Deploying Complex Applications on Docker using Apache Brooklyn
 
Deploying Complex Applications on Docker using Apache Brooklyn
Deploying Complex Applications on Docker using Apache BrooklynDeploying Complex Applications on Docker using Apache Brooklyn
Deploying Complex Applications on Docker using Apache Brooklyn
 
Clocker Evolution
Clocker EvolutionClocker Evolution
Clocker Evolution
 

Dernier

Finding Java's Hidden Performance Traps @ DevoxxUK 2024
Finding Java's Hidden Performance Traps @ DevoxxUK 2024Finding Java's Hidden Performance Traps @ DevoxxUK 2024
Finding Java's Hidden Performance Traps @ DevoxxUK 2024
Victor Rentea
 
Why Teams call analytics are critical to your entire business
Why Teams call analytics are critical to your entire businessWhy Teams call analytics are critical to your entire business
Why Teams call analytics are critical to your entire business
panagenda
 
+971581248768>> SAFE AND ORIGINAL ABORTION PILLS FOR SALE IN DUBAI AND ABUDHA...
+971581248768>> SAFE AND ORIGINAL ABORTION PILLS FOR SALE IN DUBAI AND ABUDHA...+971581248768>> SAFE AND ORIGINAL ABORTION PILLS FOR SALE IN DUBAI AND ABUDHA...
+971581248768>> SAFE AND ORIGINAL ABORTION PILLS FOR SALE IN DUBAI AND ABUDHA...
?#DUbAI#??##{{(☎️+971_581248768%)**%*]'#abortion pills for sale in dubai@
 

Dernier (20)

Strategies for Landing an Oracle DBA Job as a Fresher
Strategies for Landing an Oracle DBA Job as a FresherStrategies for Landing an Oracle DBA Job as a Fresher
Strategies for Landing an Oracle DBA Job as a Fresher
 
Apidays New York 2024 - Scaling API-first by Ian Reasor and Radu Cotescu, Adobe
Apidays New York 2024 - Scaling API-first by Ian Reasor and Radu Cotescu, AdobeApidays New York 2024 - Scaling API-first by Ian Reasor and Radu Cotescu, Adobe
Apidays New York 2024 - Scaling API-first by Ian Reasor and Radu Cotescu, Adobe
 
ICT role in 21st century education and its challenges
ICT role in 21st century education and its challengesICT role in 21st century education and its challenges
ICT role in 21st century education and its challenges
 
AWS Community Day CPH - Three problems of Terraform
AWS Community Day CPH - Three problems of TerraformAWS Community Day CPH - Three problems of Terraform
AWS Community Day CPH - Three problems of Terraform
 
FWD Group - Insurer Innovation Award 2024
FWD Group - Insurer Innovation Award 2024FWD Group - Insurer Innovation Award 2024
FWD Group - Insurer Innovation Award 2024
 
Biography Of Angeliki Cooney | Senior Vice President Life Sciences | Albany, ...
Biography Of Angeliki Cooney | Senior Vice President Life Sciences | Albany, ...Biography Of Angeliki Cooney | Senior Vice President Life Sciences | Albany, ...
Biography Of Angeliki Cooney | Senior Vice President Life Sciences | Albany, ...
 
Finding Java's Hidden Performance Traps @ DevoxxUK 2024
Finding Java's Hidden Performance Traps @ DevoxxUK 2024Finding Java's Hidden Performance Traps @ DevoxxUK 2024
Finding Java's Hidden Performance Traps @ DevoxxUK 2024
 
Boost Fertility New Invention Ups Success Rates.pdf
Boost Fertility New Invention Ups Success Rates.pdfBoost Fertility New Invention Ups Success Rates.pdf
Boost Fertility New Invention Ups Success Rates.pdf
 
Why Teams call analytics are critical to your entire business
Why Teams call analytics are critical to your entire businessWhy Teams call analytics are critical to your entire business
Why Teams call analytics are critical to your entire business
 
Spring Boot vs Quarkus the ultimate battle - DevoxxUK
Spring Boot vs Quarkus the ultimate battle - DevoxxUKSpring Boot vs Quarkus the ultimate battle - DevoxxUK
Spring Boot vs Quarkus the ultimate battle - DevoxxUK
 
Exploring Multimodal Embeddings with Milvus
Exploring Multimodal Embeddings with MilvusExploring Multimodal Embeddings with Milvus
Exploring Multimodal Embeddings with Milvus
 
Strategize a Smooth Tenant-to-tenant Migration and Copilot Takeoff
Strategize a Smooth Tenant-to-tenant Migration and Copilot TakeoffStrategize a Smooth Tenant-to-tenant Migration and Copilot Takeoff
Strategize a Smooth Tenant-to-tenant Migration and Copilot Takeoff
 
+971581248768>> SAFE AND ORIGINAL ABORTION PILLS FOR SALE IN DUBAI AND ABUDHA...
+971581248768>> SAFE AND ORIGINAL ABORTION PILLS FOR SALE IN DUBAI AND ABUDHA...+971581248768>> SAFE AND ORIGINAL ABORTION PILLS FOR SALE IN DUBAI AND ABUDHA...
+971581248768>> SAFE AND ORIGINAL ABORTION PILLS FOR SALE IN DUBAI AND ABUDHA...
 
TrustArc Webinar - Unlock the Power of AI-Driven Data Discovery
TrustArc Webinar - Unlock the Power of AI-Driven Data DiscoveryTrustArc Webinar - Unlock the Power of AI-Driven Data Discovery
TrustArc Webinar - Unlock the Power of AI-Driven Data Discovery
 
Apidays New York 2024 - The value of a flexible API Management solution for O...
Apidays New York 2024 - The value of a flexible API Management solution for O...Apidays New York 2024 - The value of a flexible API Management solution for O...
Apidays New York 2024 - The value of a flexible API Management solution for O...
 
EMPOWERMENT TECHNOLOGY GRADE 11 QUARTER 2 REVIEWER
EMPOWERMENT TECHNOLOGY GRADE 11 QUARTER 2 REVIEWEREMPOWERMENT TECHNOLOGY GRADE 11 QUARTER 2 REVIEWER
EMPOWERMENT TECHNOLOGY GRADE 11 QUARTER 2 REVIEWER
 
2024: Domino Containers - The Next Step. News from the Domino Container commu...
2024: Domino Containers - The Next Step. News from the Domino Container commu...2024: Domino Containers - The Next Step. News from the Domino Container commu...
2024: Domino Containers - The Next Step. News from the Domino Container commu...
 
DEV meet-up UiPath Document Understanding May 7 2024 Amsterdam
DEV meet-up UiPath Document Understanding May 7 2024 AmsterdamDEV meet-up UiPath Document Understanding May 7 2024 Amsterdam
DEV meet-up UiPath Document Understanding May 7 2024 Amsterdam
 
Emergent Methods: Multi-lingual narrative tracking in the news - real-time ex...
Emergent Methods: Multi-lingual narrative tracking in the news - real-time ex...Emergent Methods: Multi-lingual narrative tracking in the news - real-time ex...
Emergent Methods: Multi-lingual narrative tracking in the news - real-time ex...
 
ProductAnonymous-April2024-WinProductDiscovery-MelissaKlemke
ProductAnonymous-April2024-WinProductDiscovery-MelissaKlemkeProductAnonymous-April2024-WinProductDiscovery-MelissaKlemke
ProductAnonymous-April2024-WinProductDiscovery-MelissaKlemke
 

Global Scale ESB with Mule

  • 1. Global Scale ESB with Mule Andrew D Kennedy grkvlt@apache.org March 2011
  • 2. Who Am I • Enterprise Java Developer • Apache Qpid Committer • Previously Security Engineer • Over 15 Years Java Experience • Worked with various Investment Banks • Interested in Data Mining and Visualisation
  • 3. This Presentation • What is an ESB • What is Mule • Mule Applications • Mule Scalability
  • 4. What is an ESB • Enterprise Service Bus • SOA – Service Oriented Architecture • SEDA – Staged Event-Driven Architecture • EIP – Enterprise Integration Patterns
  • 5. Service Oriented Architecture • Services – Shared Business Functions • Decoupling – Local and Remote Services • Distributed Applications • Directory and Discovery
  • 6. EIP • Similar to Design Patterns – Gang of Four Book • Shared Terminology • Names for Common Concepts • Allows Discussion • Simplifies Design
  • 7. (Some) Common Patterns • Aggregator (268) • Channel Adapter (127) • Content Based Router (230) • Dead Letter Channel (119) • Selective Consumer (515) • Message Translator (85) • Guaranteed Delivery (122)
  • 8. What is Mule • Open Source Project • MuleSoft – Mule Forge – Mule Enterprise – Mule MQ – Tcat Server • 2.x - Legacy Applications • 3.1.1 - Current Community Release • 3.2.0 - Latest Developer Build
  • 9. Transports • Carry Messages between Services • Connector – Configuration – Threading – Retry • Endpoint – Connects Services – Transform Messages – Transaction Boundary
  • 10. Endpoint Examples <file:inbound-endpoint path="/esb/in" comparator="org.mule.transport.file.comparator.Older FirstComparator" reverseOrder="true” /> <jetty:endpoint name="server" host="localhost" port="60203" path="services/Lookup" /> <imaps:endpoint name=”mail" host="localhost" password=”hunter2" port="123" user=”adk"/> <quartz:endpoint name=”batch" repeatCount="10" repeatInterval=”60000" jobName="job"/> <jms:inbound-endpoint queue="test.queue"/>
  • 11. VM • Communication within VM • Synchronous or Asynchronous • Transactional <vm:connector name="async" queueEvents="true” /> <vm:inbound-endpoint path="in" connector-ref="async"/>
  • 12. JMS • Queues • Topics • Request-Response <jms:connector name=”jms" specification="1.1" connectionFactory-ref=”qpid" username=”adk" password=”hunter2” /> <jms:outbound-endpoint queue=”audit” /> <jms:inbound-endpoint topic=”uk.*.gbp” />
  • 13. Web Services • HTTP and HTTPS – Custom Data Formats • CXF – JAX-WS – SOAP – WSDL • REST
  • 14. CXF JAX-WS <inbound-endpoint address="http://localhost:63081/hello" /> <cxf:jaxws-service serviceClass="org.example.ServiceImpl” /> <cxf:jaxws-client clientClass=”com.example.Client” wsdlPort="SoapPort” wsdlLocation="classpath:/save.wsdl” operation=”output” /> <outbound-endpoint address="http://www.example.com/services/save” />
  • 15. File System • Poll Directory for Input <file:connector name="input" fileAge="500" autoDelete="true" pollingFrequency="100" moveToDirectory="/backup" moveToPattern="#[header:originalFilename].backup” /> • Write Output File <file:connector name="output" outputAppend="true" outputPattern="#[function:datestamp]- #[header:originalFilename]" />
  • 16. Other Transports • AJAX • TCP • jBPM • UDP • JDBC • FTP • Quartz • POP3 • STDIO • IMAP • RMI • SMTP • Servlet • XMPP
  • 17. Transformers • Change message content • XML to POJO via JAXB • Applied to endpoints • Efficient mechanism for processing • Similar to AOP
  • 18. Transformer Types • Encryption and Decryption • ByteArray to Object • Expression Evaluator • XML and JSON • Compression • Encoding and Decoding
  • 19. Filtering • Apply to endpoints • Payload Type • Expression – XPath, OGNL, JXPath • RegEx • Wildcard • Message Property • Logical Operators – And, Or, Not
  • 20. Filtering Examples <and-filter> <message-property-filter pattern="JMSCorrelationID=1234567890"/> <message-property-filter pattern="JMSReplyTo=null"/> </and-filter> <or-filter> <payload-type-filter expectedType="java.lang.String"/> <payload-type-filter expectedType="java.lang.StringBuffer"/> </or-filter> <not-filter> <wildcard-filter pattern=”com.example.*"/> </not-filter>
  • 21. Routers • Control message flow at endpoints • Used to link services • Both inbound and outbound • Specify Filtering and Transformations
  • 22. Selective Consumer <inbound> <selective-consumer-router> <mulexml:jxpath-filter expression="msg/header/resultcode = 'success'"/> </selective-consumer-router> <forwarding-catch-all-strategy> <jms:endpoint topic="error.topic"/> </forwarding-catch-all-strategy> </inbound>
  • 23. Idempotent Filter <inbound> <idempotent-receiver-router idExpression="#[message:id]-#[header:foo]"> <simple-text-file-store directory="./idempotent” /> </idempotent-receiver-router> </inbound>
  • 24. Filtering Router <outbound> <forwarding-catch-all-strategy> <jms:outbound-endpoint queue="error.queue"/> </forwarding-catch-all-strategy> <filtering-router> <smtp:outbound-endpoint to=”adk@example.com"/> <payload-type-filter expectedType="java.lang.Exception"/> </filtering-router> <filtering-router> <jms:outbound-endpoint queue="string.queue"/> <and-filter> <payload-type-filter expectedType="java.lang.String"/> <regex-filter pattern="the quick brown (.*)"/> </and-filter> </filtering-router> </outbound>
  • 25. Services • Combine Endpoints, Routers and Components • Mule 2.0 idiom • Replaced with Flows and Patterns – Simpler to use and configure – Some features still not available
  • 26. Flows • Mule 3 idiom • Inbound endpoint • Message processors – Chained execution – Components • Outbound endpoint for one-way • Response for request-response
  • 27. Components • Carry out actions • Business logic in a flow • Simple components – Logging – Passthrough – Testing • Spring or POJO • Web services
  • 28. Message Processors • Aggregator and Splitter • Message Filters • Recipient List • Resequencer • Round Robin • Wire Tap
  • 29. Example Flow <flow name=”OrderFlow"> <file:inbound-endpoint path="/incoming"> <file:filename-filter name=”order-*.xml"/> </file:inbound-endpoint> <xml:xslt-transformer xsl-file=”order-transform.xsl"/> <splitter expression="xpath://order"/> <!-- The following message processors will be invoked for each order in the xml file --> <expression-filter expression="xpath://order[@type='book']"/> <component class=”com.example.BookOrderProcessor"/> <smtp:outbound-endpoint subject="Order Confirmation" address="#[variable:email]"/> <jdbc:outbound-endpoint ref=“saveOrder"/ > <default-exception-strategy> <jms:outbound-endpoint queue="failedOrders"/> </default-exception-strategy> </flow>
  • 30. JMS Flow <flow name=”JmsFlow"> <jms:inbound-endpoint queue="in"> <jms:transaction action="ALWAYS_BEGIN" /> </jms:inbound-endpoint> <component class="com.example.ProcessMessage" /> <jms:outbound-endpoint queue="out"> <jms:transaction action="ALWAYS_JOIN" /> </jms:outbound-endpoint> <default-exception-strategy> <commit-transaction exception-pattern="com.example.ExampleException” /> <jms:outbound-endpoint queue="dead.letter"> <jms:transaction action="JOIN_IF_POSSIBLE" /> </jms:outbound-endpoint> </default-exception-strategy> </flow>
  • 31. Complex Flow <flow name=”TwitterFlow”> <poll frequency="5000"> <twitter:search query=”example" /> </poll> <splitter evaluator="json" expression="results" /> <idempotent-message-filter idExpression="#[json:id]" /> <enricher target="#[variable:userDescription]" source="#[json:description]"> <twitter:user userId="#[json:from_user]" /> </enricher> <salesforce:create type="Opportunity"> <salesforce:sObject> <salesforce:field key="Name" value="#[json:from_user]" /> <salesforce:field key="Description" value="#[variable:userDescription]" /> </salesforce:sObject> </salesforce:create> </flow>
  • 32. Patterns • Specific integration Features • Simple Service – Exposes Components as Web Services • Web Service Proxy • Bridge – Message Adapter and Transformer • Validator – Validates inbound messages synchronously – Processes asynchronously
  • 34. Mule Application Mule 2 Application Design
  • 35. Mule Scalability • Global Enterprises • Performance • Multiple Data Locations, Sources, Destinations and Owners • Services – Software as a Service – Infrastructure as a Service – Platform as a Service
  • 36. Problems • Performance – Computation – Latency – Throughput – Infrastructure • Integration – Adding Functionality – Collecting Data • Security and Identity • Transactions
  • 37. Transactions • ACID – Atomicity, Consistency, Isolation, Durability • Easy on one system • Hard with distributed systems – Pick your boundaries • Robust failure handling
  • 38. Computation • Parallel Processing • Asynchronous Tasks • Orchestration – Workflow • Pooling and Threading • More and faster is better
  • 39. Bottlenecks • Bandwidth – Networking – Latency and Throughput • External service providers • Data sources – Database • Messaging
  • 40. Messaging Backbone • Sets scalability limits • Message flow through system • Infrastructure choices – JMS – Web based – AMQP – XMPP – TIBCO • Hardware solutions available
  • 41. Clustering • Various external components – Database – Messaging – Web Services • Business logic components – Terracotta – GigaSpaces XAP
  • 42. Load Balancing • Web Services • Software • Hardware – XML Transformation – SSL • Round Robin
  • 43. Questions? Thanks for Listening Andrew D Kennedy grkvlt@apache.org