SlideShare une entreprise Scribd logo
1  sur  58
All contents © MuleSoft Inc.
Mule: Building blocks for microservices
January 2016
Anirudh Pandit
All contents © MuleSoft Inc.2
•  Debunking the myth that Mule is only an ESB:
– There is ESB as a product, and ESB as an architectural pattern.
– Vendors that had ESBs were heavyweight EAI products.
– Mule is a lightweight runtime, with integration and connectivity patterns built in.
– Mule is NOT an ESB. Mule can be implemented as an ESB architectural pattern.
– Mule is flexible to be implemented as a micro-entity or as a central-entity.
•  Mule is an ideal fit for a foundation for microservices strategy
– Mule provides flexibility by offering various building block forms
•  Mule runtime Natural fit for containers
– How Mule and PaaS go hand in hand to deliver a microservices platform
Context
All contents © MuleSoft Inc.3
Mule building block forms
Managed API
Flow Logic
Connectivity
Anypoint Management Center
Design-time
tools & services
Analytics Services
PaaS runtime
services
Engagement tools & services
Identity Services
API runtime
services
API management
Organization and business groups
All contents © MuleSoft Inc.4
Mule building block possibilities
Managed API
Flow Logic
Connectivity
•  Central API gateway ( global )
•  Micro API gateway ( local )
•  Managed microservice (if combined )
•  ESB architecture implementation ( global )
•  Micro ESB architecture implementation (local)
•  Un-managed microservice ( local)
All contents © MuleSoft Inc.5
Focus of this document is on microservices only
Managed API
Flow Logic
Connectivity
•  Central API gateway ( global )
•  Micro API gateway ( local )
•  Managed microservice (if combined )
•  ESB architecture implementation ( global )
•  Micro ESB architecture implementation (local)
•  Un-managed microservice ( local)
All contents © MuleSoft Inc.6
Runtime engine
What goes into a Mule microservice?
Connectivity
•  MQ, Database, SOAP,
HTTP, SaaS, OTS
software
•  Protocol
implementation
•  Connections/resources
management
•  Pooling
…
RAML specification
•  Traits
•  ResourceTypes
•  SecuritySchemes
•  Re-usable properties
•  ….
Logic
Business Logic flows
•  Routing
•  Enrichment
•  Transformation
•  Aggregation
•  Parallel execution
•  Splitting
•  ….
Connectivity
API Contract
Mule
deployable
archive
(.zip)
All contents © MuleSoft Inc.7
VM
OS
Container
Java Virtual Machine
Runtime engine
Mule microservice platform
Logic
Connectivity
API Contract
… PaaS
All contents © MuleSoft Inc.8
Microservices with Mule
Legacy EAI middleware
System/data
microservices
Process
microservices
Experience
microservices
Reverse Proxy Mule Custom ( e.g., Node.js, C# , Java etc. )
Databases, Business Apps and Legacy Systems
Legend:
Using Mule for both managed
and un-managed microservices
(including API management)
All contents © MuleSoft Inc.
Level setting
Proxy
This is the protection above the microservice
MicroService
This is actually the service
Data / System / Backend
Consumer
Mobile, web, or even another service / API
All contents © MuleSoft Inc.
Possible deployment options
11
Mule Proxy API
Mule Service API
Other Service API
Business
IT
•  LOB may own the gateway/proxies
•  Typically done in settings where
there is little to no LOB IT
•  ESB architectural pattern
•  IT owns all the services
Edge gateway and services runtimes deployed in ESB pattern
All contents © MuleSoft Inc.
Possible deployment options
Mule Proxy API
Mule Service API
Other Service API
Business
IT
•  LOB may own some lightweight
orchestration services
•  LOB may own the gateway/proxies
•  LOB owns IT resources
•  ESB architectural pattern for the
lower level services. IT owns all the
services at the lower levels.
Combination of edge gateways at different logical levels and services
runtimes in a similar pattern as the overlaying gateways
All contents © MuleSoft Inc.
Each level has separate governance patterns
Mule Proxy API
Mule Service API
Other Service API
Business
IT
•  LOB may own some lightweight
orchestration services
•  Collaboration between LOB and
central IT
•  IT owns all the services at the
lower levels.
Combination of edge gateways at different logical levels and services
runtimes in a similar pattern as the overlaying gateways
All contents © MuleSoft Inc.
Possible deployment options
Mule Proxy API
Mule Service API
Other Service API
Business
IT
•  Each group ( LOB, and IT ) will be
responsible for their own destinies
•  Microservice runtimes
•  Micro-gateway implementations
•  DevOps at scale
•  Heavy dependence on PaaS
platforms
Micro-gateway and runtime entities at each logical level
Microservices 101
All contents © MuleSoft Inc.16
Microservices – what are they?
-  Smaller services, with a clear business capability purpose
-  Bounded context
-  Single purpose
-  Experience APIs
-  Loosely coupled
-  Autonomous / Loosely held dependencies
-  Explicitly addressing dependencies and minimising their impact through tooling
and practice
-  Technology agnostic
-  There are no hard rules
-  Design for change and replacement
-  Iterate and improve
-  No need to be religious
All contents © MuleSoft Inc.17
APIs in a microservices context
•  APIs are a technology-agnostic way to interface between two software
components. These can be implicit or explicit (i.e. formally defined by a
machine-readable specification and managed).
•  In this context, we note that microservices are implementations of APIs.
-  APIs don’t have to be synchronous (although they could be)
-  APIs don’t have to be request-reply (although they could be)
-  APIs don’t have to implement specific protocols
•  … in other words, they conform to the microservices definition of loose
coupling: APIs are completely appropriate as a way of defining a microservice
boundary.
All contents © MuleSoft Inc.18
API first microservices
-  We can apply the API-first approach to microservices, where we
specify microservices by their interface (their only touchpoint with the
outside world) before we implement them. A single-purpose design
makes this even easier than before.
-  Smaller services are inherently defined by their boundary (contract)
-  Start with an API specification
-  API contracts make it easier to manage change
-  Automation and policies over microservices streamlines coupling and allows
easy linking
-  API-based testing improves quality and predictability and can act as
heartbeats
All contents © MuleSoft Inc.19
Productized APIs with microservices
-  API specification defines precise functional contract between the creator of
the API and its consumers
-  what are the operations, what data do they require or provide, and what happens when
you invoke them?
-  Access control (authentication, authorization, tokens)
-  SLA definition and management (e.g. rate limiting or caching)
-  Dependency tracking, collaboration and change notification
-  Provides primitives to manage change (API specifications, versions)
-  A powerful counterpart to operational automation for a resilient system
All contents © MuleSoft Inc.20
Connecting microservices
- Microservices aren’t “islands” - they work together for
customer and business outcomes
-  And most of the time, with things that aren’t microservices
- There are three key areas that Anypoint makes easy:
-  connecting microservices
-  connecting mixed models (microservices with non-
microservices)
-  building microservices
API Led Capability Architecture
All contents © MuleSoft Inc.
API Consumer Capabilities
API-led microservices and connectivity reference
API
API Provider Capabilities
All contents © MuleSoft Inc.
Application development accelerators
API Consumer ( App Developer) Portal
API-led connectivity reference capabilities
API Connectivity
API
Design
Runtime
Policy
Mgmt
Security
API Gateway
API
API Discovery API Onboarding
API Provider ( Administrator ) Portal
API Build
Operational
Management
AnalyticsAnalytics
All contents © MuleSoft Inc.
API-led connectivity reference capabilities
API spec creation
API doc
generation
API mocking
API use case
modelling
API design
patterns
Traffic mgmt.
Custom runtime
policy
SLA/contract
mgmt.
Dev portal
generation
Multi-org setup
Authentication
Authorization
IP white/black list
Digital certificates
Payload encryption
Protocol connectors
SaaS / On-prem
connectors
Custom connectors
Caching
Transformation Orchestration Routing
Runtime policy enforcement gateway
API
Connectivity patterns
Versionings
Environment
promotion
Deprecation
Design
API provider / administrator portal
Manage Security Gateway Lifecycle
API façade
mapping
Server side
generation
Backend
modelling
Deployment
automation
API backend
patterns
Implement
API catalog/registry
API Directory Text search
Metadata / tag search Application registry
Portal theming
API key management
Indexed facet searchAPI rating
Developer Portal
API Portal
Forums
Blogs Code samples
Clients, SDKs Interactive docs
Shareable use cases
Static docsAPI Sandbox Self service sign-up
Portal Branding URL customization
Applicationconsumption
dashboard
Analytics
Providersideanalytics.
Customizationdashboardsand
exportablereporting.
End–Endbackendeventtracking,visualizationanderrorreporting
Synchronization Service
Optimization &
Transformation
Mobile Services (Push, GIS,
IDM)
App container & hosting
Aggregation &
Normalization
Platform libraries MDM
All contents © MuleSoft Inc.
MuleSoft
API spec creation
API doc
generation
API mocking
API use case
modelling
API design
patterns
Traffic mgmt.
Custom runtime
policy
SLA/contract
mgmt.
Dev portal
generation
Multi-org setup
Authentication
Authorization
IP white/black list
Digital certificates
Payload
encryption
Protocol connectors
SaaS / On-prem
connectors
Custom connectors
Caching
Transformation Orchestration Routing
Runtime policy enforcement gateway
API
Integration patterns
Versioning
Environment
promotion
Deprecation
API consumer / developer portal
Design
API provider / administrator portal
Manage Security Gateway Lifecycle
API façade
mapping
Server side
generation
Backend
modelling
Deployment
automation
API backend
patterns
Implement
Applicationconsumption
dashboard
Analytics
Providersideanalytics.
Customizationdashboardsand
exportablereporting.
End–Endbackendeventtracking,visualizationanderrorreporting
API catalog/registry
API Directory Text search
Metadata / tag search Application registry
API key management
Indexed facet searchAPI rating Dev Portal
Forums
Blogs Code samples
Clients, SDK generation Interactive docs
Shareable use cases
Static docsAPI Sandbox Self service sign-up
Synchronization Service
Optimization &
Transformation
Mobile Services (Push, GIS,
IDM)
App container & hosting
Aggregation &
Normalization
Platform libraries MDM
Portal theming Portal Branding URL customization
All contents © MuleSoft Inc.
Traditional API Management Vendor
API spec creation
API doc
generation
API mocking
API use case
modelling
API design
patterns
Traffic mgmt.
Custom runtime
policy
SLA/contract
mgmt.
Dev portal
generation
Multi-org setup
Authentication
Authorization
IP white/black list
Digital certificates
Payload
encryption
Protocol connectors
SaaS / On-prem
connectors
Custom connectors
Caching
Transformation Orchestration Routing
Runtime policy enforcement gateway
API
Integration patterns
Versioning
Environment
promotion
Deprecation
API consumer / developer portal
Design
API provider / administrator portal
Manage Security Gateway Lifecycle
API façade
mapping
Server side
generation
Backend
modelling
Deployment
automation
API backend
patterns
Implement
Portal theming Portal Branding URL customization
Applicationconsumption
dashboard
Analytics
Providersideanalytics.
Customizationdashboardsand
exportablereporting.
End–Endbackendeventtracking,visualizationanderrorreporting
API catalog/registry
API Directory Text search
Metadata / tag search Application registry
API key management
Indexed facet searchAPI rating Dev Portal
Forums
Blogs Code samples
Clients, SDKs Interactive docs
Shareable use cases
Static docsAPI Sandbox Self service sign-up
Synchronization Service
Optimization &
Transformation
Mobile Services (Push, GIS,
IDM)
App container & hosting
Aggregation &
Normalization
Platform libraries MDM
All contents © MuleSoft Inc.
Traditional Integration Vendor
27All contents Copyright © 2014, MuleSoft Inc.
API spec creation
API doc
generation
API mocking
API use case
modelling
API design
patterns
Traffic mgmt.
Custom runtime
policy
SLA/contract
mgmt.
Dev portal
generation
Multi-org setup
Authentication
Authorization
IP white/black list
Digital certificates
Payload encryption
Protocol connectors
SaaS / On-prem
connectors
Custom connectors
Caching
Transformation Orchestration Routing
Runtime policy enforcement gateway
API
Integration patterns
Versioning
Environment
promotion
Deprecation
API consumer / developer portal
API catalog/registry
API Directory Text search
Metadata / tag search Application registry
API key management
Indexed facet searchAPI rating Dev Portal
Forums
Blogs Code samples
Clients, SDKs Interactive docs
Shareable use cases
Static docsAPI Sandbox Self service sign-up
Design
API provider / administrator portal
Manage Security Gateway Lifecycle
API façade
mapping
Server side
generation
Backend
modelling
Deployment
automation
API backend
patterns
Implement
Portal theming Portal Branding URL customization
Applicationconsumption
dashboard
Analytics
Providersideanalytics.
Customizationdashboardsand
exportablereporting.
End–Endbackendeventtracking,visualizationanderrorreporting
Synchronization Service
Optimization &
Transformation
Mobile Services (Push, GIS,
IDM)
App container & hosting
Aggregation &
Normalization
Platform libraries MDM
Using Anypoint Platform
All contents © MuleSoft Inc.
Primary Roles concerned with the Anypoint Platform
EA
AD
AO
AC
•  Enterprise Architect: strategy and evangelism of architectural best
practices, for both design and runtimes
•  API Developer: Responsible for developing the API / service
•  API Owner: Responsible for the productization, operations and
continuous improvement of the API
•  API Consumer: Could be either an API developer, or a builder of
mobile, web and other apps
All contents © MuleSoft Inc.
Organization and business group configuration
30
Design-time
tools & services
Analytics Services
iPaaS runtime
services
Engagement tools & services
Anypoint Management Center
Identity Services
API runtime
services
API management
Organization and business groups
Enterprise administrators, API owners and enterprise
architects create business groups and environments
All contents © MuleSoft Inc.
Configure identity services and permissions
31
Design-time
tools & services
Analytics Services
iPaaS runtime
services
Engagement tools & services
Anypoint Management Center
Identity Services
API runtime
services
API management
Organization and business groups
API Owners to configure identity services for each
organization or business group
•  Configure RBAC permission models for the business groups and
environments.
•  Map from LDAP groups within your own enterprise LDAP to
the Anypoint platform.
•  To ensure proper access within the Anypoint platform, the
organization owner must ensure that each of the groups is
mapped to a role with appropriate permissions.
•  Custom roles could also be created as needed.
•  Leverage out of the box configurations to Ping and OpenAM
All contents © MuleSoft Inc.
Enable developers throughout the enterprise
32
•  DIY developer culture
•  Training and skill building
•  Easy to use tooling
•  Access to building blocks
•  Best practices
All contents © MuleSoft Inc.
Begin by hand writing the API’s contract
AD
API developer creates RAML spec in API Designer
Design-time
tools & services
Analytics Services
iPaaS runtime
services
Engagement tools & services
Anypoint Management Center
Identity Services
API runtime
services
API management
Organization and business groups
All contents © MuleSoft Inc.
Mock up the API, validate it with the consumer
AD AC
API Designer and API Consumer exchange feedback
Stub to the
backend
All contents © MuleSoft Inc.
Create Notebooks against the mocked up API, in order to to
illustrate various scenarios and use cases of the API
Example: Zendesk API Notebooks
AC API Consumer creates Notebooks to tinker with the mocked up API
Stub to the
backend
All contents © MuleSoft Inc.
Anypoint Exchange: a repository of API design best
practices
EA Enterprise architect sets up a repository of API design best practices for architectural governance. E.g.,
response code templates, pagination traits etc. and other subsets of RAML contracts.
All contents © MuleSoft Inc.
Leverage best practice RAML snippets ( traits, resourceTypes,
securitySchemes, or others ) from Exchange
Repository of RAML snippets
RAML
Import
AD
API developer leverages RAML snippets to design the API
All contents © MuleSoft Inc.
Unlock assets with governance
•  APIs for governance
•  Access with policies
•  Documented, communicated
•  Security built in
•  Identity authentication
•  Alerts & notifications
38
All contents © MuleSoft Inc.
API implementation
SaaS apps
DB
ERP
Stub to the
backend
AD Once receiving validation from the API consumers around how the API contract is modeled, the
API developer is now able to move on towards implementing the API.
All contents © MuleSoft Inc.
API implementation
Leverage power of a suite of
connectors, transformations,
templates, filters, flow control
mechanisms in the
implementation logic
Quick testing and feedback
through built-in RAML console
AD API developer creates backend integration, transformation, routing, mapping and connectivity
logic
Edit RAML contracts
All contents © MuleSoft Inc.
Anypoint Exchange: a repository of architectural best
practices
EA Enterprise architect sets framework up a repository of API implementation and other integration
transformation/routing/mapping and connectivity best practices
All contents © MuleSoft Inc.
Leverage best practice RAML snippets ( traits, resourceTypes,
securitySchemes, or others ) from Exchange
Repository of Integration and Connectivity
patterns
API Implementation flow
Import
AD API developer leverages integration and connectivity templates to implement the API in a manner that
is governed, and compliant to IT standards.
All contents © MuleSoft Inc.
AO
Secure and manage the API proxy, and API service
•  policies
•  orchestration
•  transformation
•  caching
•  Policies
•  Traffic mgmt
•  Security
•  Caching
Design-time
tools & services
Analytics Services
iPaaS runtime
services
Engagement tools & services
Anypoint Management Center
Identity Services
API runtime
services
API management
Organization and business groups
API gateway
API runtime
Proxy
Service
API owner sets up the end-end API stack: proxy, gateway, management policies and service runtime
environment
All contents © MuleSoft Inc.
AO
Publish the API and engage application developers
•  API onboarding and
documentation
•  Client libraries, SDKs
•  Collaboration
Design-time
tools & services
Analytics Services
iPaaS runtime
services
Engagement tools & services
Anypoint Management Center
Identity Services
API runtime
services
API management
Organization and business groups
Developer Portal
API owners catalog all APIs and set up the developer portals
•  Directory
•  Search, indexing
•  Metadata, tags
•  Versioning,
deprecation,
promotion
API catalog
All contents © MuleSoft Inc.
Rich Developer Portal
45
All contents © MuleSoft Inc.
Analyze, monitor, and diagnose
46
•  Usage analysis
•  End to end visibility
•  Monitor against SLAs
•  Diagnose low performance
All contents © MuleSoft Inc.
Analytics
View analytics of API consumption, and the API implementation ( backend ) metrics, both from a
consumer and provider perspective
Design-time
tools & services
Analytics Services
iPaaS runtime
services
Engagement tools & services
Anypoint Management Center
Identity Services
API runtime
services
API management
Organization and business groups
API Analytics Backend Analytics
SDLC and CI/CD
All contents © MuleSoft Inc.49
MuleSoft leverages broadly adopted tools
JUnit
Deployment/
Ops
Development
Functional/
Unit Testing
Build
Continuous
Integration
Developer
Ecosystem
49
All contents © MuleSoft Inc.50
Release
Component
Mule SDLC Overview
Development
Production
1
2
Anypoint Studio
Developer
3
4
5
6
7
8
9
Run Mocked TestsRun Unit Tests
Run TestsRun Build Process
DEVELOPMENT
RELEASE
PRODUCTION
Create Mocked TestsCreate Unit Tests Functional Tests
Create and Run Tests
Mule
App
Mule
App
All contents © MuleSoft Inc. 51
DEV
 Runtime Platform
 Management
CI/CD
Studio
JUnit
Anypoint
management Center
(Monitoring: Insights,
Logs, Alerts, Data
Correlation, etc.)
Dev
Test
Stage
Prod
Mule and PaaS
All contents © MuleSoft Inc.
Point Of View on PaaS enablement
53
•  Run cloud-native applications per cncf.io
–  container-packaged, dynamically scheduled, microservices-based dev/ops
•  On any cloud (public or private) environments
–  Docker, Kubernetes, Mesos, Tectronic, …
–  OpenShift v3, CloudFoundry/Diego, …
•  Leveraging lowest-common-denominator
–  Enabling friction-free containerization of Mule services
–  Fundamental solution loosely based on CaaS (Containers as a service)
•  For all our runtime services
–  Mule workers (API/gateway/orchestration/connectivity workers)
–  Management Center (for API/Mule lifecycle/management/governance)
All contents © MuleSoft Inc.
Development
 Operations
Build
 Ship
 Run
Secure Content
 Collaborate
 Deploy
Manage
 Scale
Development Environments
All contents © MuleSoft Inc.
Worker: Model: Runtime Container
55
•  Make Mule runtime a container
–  Logging configured to standard output/error via log4j.(properties|xml)
–  Map MULE_INSTALL_DIR/apps to an external folder
•  Use published ways of (un)deploying applications
–  Copy/remove from externalized apps folder
–  Use Runtime Manager to deploy apps
–  Use published lifecycle APIs to deploy apps
•  Ramifications
–  Only 1 container image is maintained
–  Standard methods of application lifecycle are maintained (pro or con)
–  Service lifecycle is not tied to container lifecycle (con)
All contents © MuleSoft Inc.
Worker: Model: Runtime+Application Container
56
•  Make Mule runtime+application a container
–  Mule installation is a container image
–  Mule application is a container image
•  Layered atop the mule installation image (via docker containers efficiency layering)
•  CANNOT Use published ways of starting/stopping containers
–  Service lifecycle bound natively to container lifecycle
•  Ramifications
–  One container image maintained for runtime (pro)
•  Each service is thin layer atop mule container overriding MULE_INSTALL_DIR/apps
–  Published methods of Mule application lifecycle no longer apply (pro or con)
–  Service lifecycle is tied to container lifecycle (pro)
•  Friction-free model for container orchestration management systems
All contents © MuleSoft Inc.
Applicability to OpenShift V3
57
•  Layered system atop
–  Docker: Lightweight Container Model
–  Kubernetes: Container Orchestration across multiple hosts
•  OpenShift Value Adds:
–  Source code management, builds, and deployments for developers
–  Managing and promoting images at scale as they flow through your system
–  Application management at scale
–  Team and user tracking for organizing a large developer organization
58Applicability to Openshift: https://docs.openshift.org/latest/architecture/index.html

Contenu connexe

Tendances

MuleSoft Surat Meetup#44 - Anypoint Flex Gateway Custom Policies With Rust
MuleSoft Surat Meetup#44 - Anypoint Flex Gateway Custom Policies With RustMuleSoft Surat Meetup#44 - Anypoint Flex Gateway Custom Policies With Rust
MuleSoft Surat Meetup#44 - Anypoint Flex Gateway Custom Policies With RustJitendra Bafna
 
Mulesoft corporate template final
Mulesoft corporate template  final Mulesoft corporate template  final
Mulesoft corporate template final Bui Kiet
 
Operationalizing your C4E VirtualMuleys & Deployment Considerations: Cloudhub...
Operationalizing your C4E VirtualMuleys & Deployment Considerations: Cloudhub...Operationalizing your C4E VirtualMuleys & Deployment Considerations: Cloudhub...
Operationalizing your C4E VirtualMuleys & Deployment Considerations: Cloudhub...Angel Alberici
 
MuleSoft Event Driven Architecture (EDA Patterns in MuleSoft) - VirtualMuleys63
MuleSoft Event Driven Architecture (EDA Patterns in MuleSoft) - VirtualMuleys63MuleSoft Event Driven Architecture (EDA Patterns in MuleSoft) - VirtualMuleys63
MuleSoft Event Driven Architecture (EDA Patterns in MuleSoft) - VirtualMuleys63Angel Alberici
 
API Management Within a Microservices Architecture
API Management Within a Microservices Architecture API Management Within a Microservices Architecture
API Management Within a Microservices Architecture Nadeesha Gamage
 
Agile Integration with APIs and Containers Workshop
Agile Integration with APIs and Containers Workshop Agile Integration with APIs and Containers Workshop
Agile Integration with APIs and Containers Workshop Nicole Maselli
 
Why Mulesoft ?
Why Mulesoft ?Why Mulesoft ?
Why Mulesoft ?Bui Kiet
 
Three layer API Design Architecture
Three layer API Design ArchitectureThree layer API Design Architecture
Three layer API Design ArchitectureHarish Kumar
 
MuleSoft Surat Meetup#48 - Anypoint API Governance (RAML, OAS and Async API) ...
MuleSoft Surat Meetup#48 - Anypoint API Governance (RAML, OAS and Async API) ...MuleSoft Surat Meetup#48 - Anypoint API Governance (RAML, OAS and Async API) ...
MuleSoft Surat Meetup#48 - Anypoint API Governance (RAML, OAS and Async API) ...Jitendra Bafna
 
API Maturity Model (Webcast with Accenture)
API Maturity Model (Webcast with Accenture)API Maturity Model (Webcast with Accenture)
API Maturity Model (Webcast with Accenture)Apigee | Google Cloud
 
Application Architecture: The Next Wave | MuleSoft
Application Architecture: The Next Wave | MuleSoftApplication Architecture: The Next Wave | MuleSoft
Application Architecture: The Next Wave | MuleSoftMuleSoft
 
API Management Solution Powerpoint Presentation Slides
API Management Solution Powerpoint Presentation SlidesAPI Management Solution Powerpoint Presentation Slides
API Management Solution Powerpoint Presentation SlidesSlideTeam
 
The Architecture of an API Platform
The Architecture of an API PlatformThe Architecture of an API Platform
The Architecture of an API PlatformJohannes Ridderstedt
 

Tendances (20)

MuleSoft Surat Meetup#44 - Anypoint Flex Gateway Custom Policies With Rust
MuleSoft Surat Meetup#44 - Anypoint Flex Gateway Custom Policies With RustMuleSoft Surat Meetup#44 - Anypoint Flex Gateway Custom Policies With Rust
MuleSoft Surat Meetup#44 - Anypoint Flex Gateway Custom Policies With Rust
 
Mulesoft corporate template final
Mulesoft corporate template  final Mulesoft corporate template  final
Mulesoft corporate template final
 
Operationalizing your C4E VirtualMuleys & Deployment Considerations: Cloudhub...
Operationalizing your C4E VirtualMuleys & Deployment Considerations: Cloudhub...Operationalizing your C4E VirtualMuleys & Deployment Considerations: Cloudhub...
Operationalizing your C4E VirtualMuleys & Deployment Considerations: Cloudhub...
 
MuleSoft Event Driven Architecture (EDA Patterns in MuleSoft) - VirtualMuleys63
MuleSoft Event Driven Architecture (EDA Patterns in MuleSoft) - VirtualMuleys63MuleSoft Event Driven Architecture (EDA Patterns in MuleSoft) - VirtualMuleys63
MuleSoft Event Driven Architecture (EDA Patterns in MuleSoft) - VirtualMuleys63
 
02 api gateway
02 api gateway02 api gateway
02 api gateway
 
Rest web services
Rest web servicesRest web services
Rest web services
 
API Management Within a Microservices Architecture
API Management Within a Microservices Architecture API Management Within a Microservices Architecture
API Management Within a Microservices Architecture
 
Agile Integration with APIs and Containers Workshop
Agile Integration with APIs and Containers Workshop Agile Integration with APIs and Containers Workshop
Agile Integration with APIs and Containers Workshop
 
Why Mulesoft ?
Why Mulesoft ?Why Mulesoft ?
Why Mulesoft ?
 
Three layer API Design Architecture
Three layer API Design ArchitectureThree layer API Design Architecture
Three layer API Design Architecture
 
API Governance in the Enterprise
API Governance in the EnterpriseAPI Governance in the Enterprise
API Governance in the Enterprise
 
MuleSoft Surat Meetup#48 - Anypoint API Governance (RAML, OAS and Async API) ...
MuleSoft Surat Meetup#48 - Anypoint API Governance (RAML, OAS and Async API) ...MuleSoft Surat Meetup#48 - Anypoint API Governance (RAML, OAS and Async API) ...
MuleSoft Surat Meetup#48 - Anypoint API Governance (RAML, OAS and Async API) ...
 
API Maturity Model (Webcast with Accenture)
API Maturity Model (Webcast with Accenture)API Maturity Model (Webcast with Accenture)
API Maturity Model (Webcast with Accenture)
 
Application Architecture: The Next Wave | MuleSoft
Application Architecture: The Next Wave | MuleSoftApplication Architecture: The Next Wave | MuleSoft
Application Architecture: The Next Wave | MuleSoft
 
API Management Solution Powerpoint Presentation Slides
API Management Solution Powerpoint Presentation SlidesAPI Management Solution Powerpoint Presentation Slides
API Management Solution Powerpoint Presentation Slides
 
Amazon API Gateway
Amazon API GatewayAmazon API Gateway
Amazon API Gateway
 
The Architecture of an API Platform
The Architecture of an API PlatformThe Architecture of an API Platform
The Architecture of an API Platform
 
API Management
API ManagementAPI Management
API Management
 
App Modernization
App ModernizationApp Modernization
App Modernization
 
Web API Basics
Web API BasicsWeb API Basics
Web API Basics
 

En vedette

Microservices on Anypoint Platform
Microservices on Anypoint PlatformMicroservices on Anypoint Platform
Microservices on Anypoint PlatformMuleSoft
 
Digital Businesses of the Future
Digital Businesses of the Future Digital Businesses of the Future
Digital Businesses of the Future MuleSoft
 
Dc meetup-pure-api-led-connectivity-16x9
Dc meetup-pure-api-led-connectivity-16x9Dc meetup-pure-api-led-connectivity-16x9
Dc meetup-pure-api-led-connectivity-16x9Bruce Schonk -PMP, MBA
 
Mule ESB Tutorial Part 1
Mule ESB Tutorial Part 1Mule ESB Tutorial Part 1
Mule ESB Tutorial Part 1Srikanth N
 
Microservices Best Practices
Microservices Best Practices Microservices Best Practices
Microservices Best Practices MuleSoft
 
Handle exceptions in mule
Handle exceptions in muleHandle exceptions in mule
Handle exceptions in muleSon Nguyen
 
Mule expression component
Mule expression componentMule expression component
Mule expression componentKarnam Karthik
 
Message processor in mule
Message processor in muleMessage processor in mule
Message processor in muleSon Nguyen
 
Using groovy in mule
Using groovy in muleUsing groovy in mule
Using groovy in muleSon Nguyen
 
Getting anypoint studios all versions
Getting anypoint studios all versionsGetting anypoint studios all versions
Getting anypoint studios all versionsAnirban Sen Chowdhary
 
Becoming a Connected Insurer With API-led Connectivity
Becoming a Connected Insurer With API-led ConnectivityBecoming a Connected Insurer With API-led Connectivity
Becoming a Connected Insurer With API-led ConnectivityMuleSoft
 

En vedette (20)

Microservices on Anypoint Platform
Microservices on Anypoint PlatformMicroservices on Anypoint Platform
Microservices on Anypoint Platform
 
Digital Businesses of the Future
Digital Businesses of the Future Digital Businesses of the Future
Digital Businesses of the Future
 
Munit Mule ESB
Munit Mule ESBMunit Mule ESB
Munit Mule ESB
 
Dc meetup-pure-api-led-connectivity-16x9
Dc meetup-pure-api-led-connectivity-16x9Dc meetup-pure-api-led-connectivity-16x9
Dc meetup-pure-api-led-connectivity-16x9
 
Mule ESB Tutorial Part 1
Mule ESB Tutorial Part 1Mule ESB Tutorial Part 1
Mule ESB Tutorial Part 1
 
Microservices Best Practices
Microservices Best Practices Microservices Best Practices
Microservices Best Practices
 
Java components in Mule
Java components in MuleJava components in Mule
Java components in Mule
 
Caching a simple way
Caching a simple wayCaching a simple way
Caching a simple way
 
Handle exceptions in mule
Handle exceptions in muleHandle exceptions in mule
Handle exceptions in mule
 
Mule expression component
Mule expression componentMule expression component
Mule expression component
 
Message processor in mule
Message processor in muleMessage processor in mule
Message processor in mule
 
Message enricher in mule
Message enricher in muleMessage enricher in mule
Message enricher in mule
 
Using groovy in mule
Using groovy in muleUsing groovy in mule
Using groovy in mule
 
Getting anypoint studios all versions
Getting anypoint studios all versionsGetting anypoint studios all versions
Getting anypoint studios all versions
 
Mule ESB
Mule ESBMule ESB
Mule ESB
 
Mule esb examples
Mule esb examplesMule esb examples
Mule esb examples
 
Mule message enricher
Mule message enricherMule message enricher
Mule message enricher
 
Becoming a Connected Insurer With API-led Connectivity
Becoming a Connected Insurer With API-led ConnectivityBecoming a Connected Insurer With API-led Connectivity
Becoming a Connected Insurer With API-led Connectivity
 
Simple groovy example in mule
Simple groovy example in muleSimple groovy example in mule
Simple groovy example in mule
 
Mule ESB Training
Mule ESB TrainingMule ESB Training
Mule ESB Training
 

Similaire à Mule : Building Blocks for Microservices

[WSO2Con EU 2017] Microservices for Enterprises
[WSO2Con EU 2017] Microservices for Enterprises[WSO2Con EU 2017] Microservices for Enterprises
[WSO2Con EU 2017] Microservices for EnterprisesWSO2
 
Microservices on Anypoint Platform
Microservices on Anypoint PlatformMicroservices on Anypoint Platform
Microservices on Anypoint PlatformMuleSoft
 
Microservices for Enterprises
Microservices for Enterprises Microservices for Enterprises
Microservices for Enterprises Kasun Indrasiri
 
Modernizing an Existing SOA-based Architecture with APIs
Modernizing an Existing SOA-based Architecture with APIsModernizing an Existing SOA-based Architecture with APIs
Modernizing an Existing SOA-based Architecture with APIsApigee | Google Cloud
 
Building enterprise depth APIs with the IBM hybrid integration portfolio
Building enterprise depth APIs with the IBM hybrid integration portfolioBuilding enterprise depth APIs with the IBM hybrid integration portfolio
Building enterprise depth APIs with the IBM hybrid integration portfolioKim Clark
 
3298 microservices and how they relate to esb api and messaging - inter con...
3298   microservices and how they relate to esb api and messaging - inter con...3298   microservices and how they relate to esb api and messaging - inter con...
3298 microservices and how they relate to esb api and messaging - inter con...Kim Clark
 
Extending The Power Of Anypoint Platform Using Anypoint Service Mesh
Extending The Power Of Anypoint Platform Using Anypoint Service MeshExtending The Power Of Anypoint Platform Using Anypoint Service Mesh
Extending The Power Of Anypoint Platform Using Anypoint Service MeshAaronLieberman5
 
Running and Managing Mule Applications
Running and Managing Mule ApplicationsRunning and Managing Mule Applications
Running and Managing Mule ApplicationsMuleSoft
 
Raleigh MuleSoft Meetup - October
Raleigh MuleSoft Meetup  - October Raleigh MuleSoft Meetup  - October
Raleigh MuleSoft Meetup - October Savannah Cole
 
APIdays Helsinki 2019 - Impact of Microservices Architecture on API Managemen...
APIdays Helsinki 2019 - Impact of Microservices Architecture on API Managemen...APIdays Helsinki 2019 - Impact of Microservices Architecture on API Managemen...
APIdays Helsinki 2019 - Impact of Microservices Architecture on API Managemen...apidays
 
How to Effectively Build Web APIs for Microservices
How to Effectively Build Web APIs for Microservices How to Effectively Build Web APIs for Microservices
How to Effectively Build Web APIs for Microservices WSO2
 
São Paulo MuleSoft Meetup #5 - Runtime Fabric
São Paulo MuleSoft Meetup #5 - Runtime FabricSão Paulo MuleSoft Meetup #5 - Runtime Fabric
São Paulo MuleSoft Meetup #5 - Runtime FabricGuilherme Pereira Silva
 
ESB and Mule ESB solution
ESB and Mule ESB solutionESB and Mule ESB solution
ESB and Mule ESB solutionSwati Bansal
 
MuleSoft for Enterprises
MuleSoft for EnterprisesMuleSoft for Enterprises
MuleSoft for EnterprisesPrashantGolani1
 
Anypoint platform architecture and components
Anypoint platform architecture and componentsAnypoint platform architecture and components
Anypoint platform architecture and componentsD.Rajesh Kumar
 
Microservices & anypoint service mesh calgary mule soft meetup
Microservices & anypoint service mesh   calgary mule soft meetupMicroservices & anypoint service mesh   calgary mule soft meetup
Microservices & anypoint service mesh calgary mule soft meetupJimmy Attia
 
Inovacao e Arquitetura Moderna com APIs e Mulesoft
Inovacao e Arquitetura Moderna com APIs e MulesoftInovacao e Arquitetura Moderna com APIs e Mulesoft
Inovacao e Arquitetura Moderna com APIs e MulesoftDanilo Bordini
 
MuleSoft Meetup Charlotte 2019
MuleSoft Meetup Charlotte  2019MuleSoft Meetup Charlotte  2019
MuleSoft Meetup Charlotte 2019Subhash Patel
 
Baltimore jan2019 mule4
Baltimore jan2019 mule4Baltimore jan2019 mule4
Baltimore jan2019 mule4ManjuKumara GH
 

Similaire à Mule : Building Blocks for Microservices (20)

[WSO2Con EU 2017] Microservices for Enterprises
[WSO2Con EU 2017] Microservices for Enterprises[WSO2Con EU 2017] Microservices for Enterprises
[WSO2Con EU 2017] Microservices for Enterprises
 
Microservices on Anypoint Platform
Microservices on Anypoint PlatformMicroservices on Anypoint Platform
Microservices on Anypoint Platform
 
Microservices
MicroservicesMicroservices
Microservices
 
Microservices for Enterprises
Microservices for Enterprises Microservices for Enterprises
Microservices for Enterprises
 
Modernizing an Existing SOA-based Architecture with APIs
Modernizing an Existing SOA-based Architecture with APIsModernizing an Existing SOA-based Architecture with APIs
Modernizing an Existing SOA-based Architecture with APIs
 
Building enterprise depth APIs with the IBM hybrid integration portfolio
Building enterprise depth APIs with the IBM hybrid integration portfolioBuilding enterprise depth APIs with the IBM hybrid integration portfolio
Building enterprise depth APIs with the IBM hybrid integration portfolio
 
3298 microservices and how they relate to esb api and messaging - inter con...
3298   microservices and how they relate to esb api and messaging - inter con...3298   microservices and how they relate to esb api and messaging - inter con...
3298 microservices and how they relate to esb api and messaging - inter con...
 
Extending The Power Of Anypoint Platform Using Anypoint Service Mesh
Extending The Power Of Anypoint Platform Using Anypoint Service MeshExtending The Power Of Anypoint Platform Using Anypoint Service Mesh
Extending The Power Of Anypoint Platform Using Anypoint Service Mesh
 
Running and Managing Mule Applications
Running and Managing Mule ApplicationsRunning and Managing Mule Applications
Running and Managing Mule Applications
 
Raleigh MuleSoft Meetup - October
Raleigh MuleSoft Meetup  - October Raleigh MuleSoft Meetup  - October
Raleigh MuleSoft Meetup - October
 
APIdays Helsinki 2019 - Impact of Microservices Architecture on API Managemen...
APIdays Helsinki 2019 - Impact of Microservices Architecture on API Managemen...APIdays Helsinki 2019 - Impact of Microservices Architecture on API Managemen...
APIdays Helsinki 2019 - Impact of Microservices Architecture on API Managemen...
 
How to Effectively Build Web APIs for Microservices
How to Effectively Build Web APIs for Microservices How to Effectively Build Web APIs for Microservices
How to Effectively Build Web APIs for Microservices
 
São Paulo MuleSoft Meetup #5 - Runtime Fabric
São Paulo MuleSoft Meetup #5 - Runtime FabricSão Paulo MuleSoft Meetup #5 - Runtime Fabric
São Paulo MuleSoft Meetup #5 - Runtime Fabric
 
ESB and Mule ESB solution
ESB and Mule ESB solutionESB and Mule ESB solution
ESB and Mule ESB solution
 
MuleSoft for Enterprises
MuleSoft for EnterprisesMuleSoft for Enterprises
MuleSoft for Enterprises
 
Anypoint platform architecture and components
Anypoint platform architecture and componentsAnypoint platform architecture and components
Anypoint platform architecture and components
 
Microservices & anypoint service mesh calgary mule soft meetup
Microservices & anypoint service mesh   calgary mule soft meetupMicroservices & anypoint service mesh   calgary mule soft meetup
Microservices & anypoint service mesh calgary mule soft meetup
 
Inovacao e Arquitetura Moderna com APIs e Mulesoft
Inovacao e Arquitetura Moderna com APIs e MulesoftInovacao e Arquitetura Moderna com APIs e Mulesoft
Inovacao e Arquitetura Moderna com APIs e Mulesoft
 
MuleSoft Meetup Charlotte 2019
MuleSoft Meetup Charlotte  2019MuleSoft Meetup Charlotte  2019
MuleSoft Meetup Charlotte 2019
 
Baltimore jan2019 mule4
Baltimore jan2019 mule4Baltimore jan2019 mule4
Baltimore jan2019 mule4
 

Dernier

Mastering MySQL Database Architecture: Deep Dive into MySQL Shell and MySQL R...
Mastering MySQL Database Architecture: Deep Dive into MySQL Shell and MySQL R...Mastering MySQL Database Architecture: Deep Dive into MySQL Shell and MySQL R...
Mastering MySQL Database Architecture: Deep Dive into MySQL Shell and MySQL R...Miguel Araújo
 
Workshop - Best of Both Worlds_ Combine KG and Vector search for enhanced R...
Workshop - Best of Both Worlds_ Combine  KG and Vector search for  enhanced R...Workshop - Best of Both Worlds_ Combine  KG and Vector search for  enhanced R...
Workshop - Best of Both Worlds_ Combine KG and Vector search for enhanced R...Neo4j
 
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...Martijn de Jong
 
presentation ICT roal in 21st century education
presentation ICT roal in 21st century educationpresentation ICT roal in 21st century education
presentation ICT roal in 21st century educationjfdjdjcjdnsjd
 
Histor y of HAM Radio presentation slide
Histor y of HAM Radio presentation slideHistor y of HAM Radio presentation slide
Histor y of HAM Radio presentation slidevu2urc
 
What Are The Drone Anti-jamming Systems Technology?
What Are The Drone Anti-jamming Systems Technology?What Are The Drone Anti-jamming Systems Technology?
What Are The Drone Anti-jamming Systems Technology?Antenna Manufacturer Coco
 
[2024]Digital Global Overview Report 2024 Meltwater.pdf
[2024]Digital Global Overview Report 2024 Meltwater.pdf[2024]Digital Global Overview Report 2024 Meltwater.pdf
[2024]Digital Global Overview Report 2024 Meltwater.pdfhans926745
 
Presentation on how to chat with PDF using ChatGPT code interpreter
Presentation on how to chat with PDF using ChatGPT code interpreterPresentation on how to chat with PDF using ChatGPT code interpreter
Presentation on how to chat with PDF using ChatGPT code interpreternaman860154
 
Evaluating the top large language models.pdf
Evaluating the top large language models.pdfEvaluating the top large language models.pdf
Evaluating the top large language models.pdfChristopherTHyatt
 
GenAI Risks & Security Meetup 01052024.pdf
GenAI Risks & Security Meetup 01052024.pdfGenAI Risks & Security Meetup 01052024.pdf
GenAI Risks & Security Meetup 01052024.pdflior mazor
 
A Domino Admins Adventures (Engage 2024)
A Domino Admins Adventures (Engage 2024)A Domino Admins Adventures (Engage 2024)
A Domino Admins Adventures (Engage 2024)Gabriella Davis
 
🐬 The future of MySQL is Postgres 🐘
🐬  The future of MySQL is Postgres   🐘🐬  The future of MySQL is Postgres   🐘
🐬 The future of MySQL is Postgres 🐘RTylerCroy
 
The 7 Things I Know About Cyber Security After 25 Years | April 2024
The 7 Things I Know About Cyber Security After 25 Years | April 2024The 7 Things I Know About Cyber Security After 25 Years | April 2024
The 7 Things I Know About Cyber Security After 25 Years | April 2024Rafal Los
 
08448380779 Call Girls In Friends Colony Women Seeking Men
08448380779 Call Girls In Friends Colony Women Seeking Men08448380779 Call Girls In Friends Colony Women Seeking Men
08448380779 Call Girls In Friends Colony Women Seeking MenDelhi Call girls
 
How to Troubleshoot Apps for the Modern Connected Worker
How to Troubleshoot Apps for the Modern Connected WorkerHow to Troubleshoot Apps for the Modern Connected Worker
How to Troubleshoot Apps for the Modern Connected WorkerThousandEyes
 
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 Takeoffsammart93
 
Finology Group – Insurtech Innovation Award 2024
Finology Group – Insurtech Innovation Award 2024Finology Group – Insurtech Innovation Award 2024
Finology Group – Insurtech Innovation Award 2024The Digital Insurer
 
Handwritten Text Recognition for manuscripts and early printed texts
Handwritten Text Recognition for manuscripts and early printed textsHandwritten Text Recognition for manuscripts and early printed texts
Handwritten Text Recognition for manuscripts and early printed textsMaria Levchenko
 
Scaling API-first – The story of a global engineering organization
Scaling API-first – The story of a global engineering organizationScaling API-first – The story of a global engineering organization
Scaling API-first – The story of a global engineering organizationRadu Cotescu
 
Exploring the Future Potential of AI-Enabled Smartphone Processors
Exploring the Future Potential of AI-Enabled Smartphone ProcessorsExploring the Future Potential of AI-Enabled Smartphone Processors
Exploring the Future Potential of AI-Enabled Smartphone Processorsdebabhi2
 

Dernier (20)

Mastering MySQL Database Architecture: Deep Dive into MySQL Shell and MySQL R...
Mastering MySQL Database Architecture: Deep Dive into MySQL Shell and MySQL R...Mastering MySQL Database Architecture: Deep Dive into MySQL Shell and MySQL R...
Mastering MySQL Database Architecture: Deep Dive into MySQL Shell and MySQL R...
 
Workshop - Best of Both Worlds_ Combine KG and Vector search for enhanced R...
Workshop - Best of Both Worlds_ Combine  KG and Vector search for  enhanced R...Workshop - Best of Both Worlds_ Combine  KG and Vector search for  enhanced R...
Workshop - Best of Both Worlds_ Combine KG and Vector search for enhanced R...
 
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...
 
presentation ICT roal in 21st century education
presentation ICT roal in 21st century educationpresentation ICT roal in 21st century education
presentation ICT roal in 21st century education
 
Histor y of HAM Radio presentation slide
Histor y of HAM Radio presentation slideHistor y of HAM Radio presentation slide
Histor y of HAM Radio presentation slide
 
What Are The Drone Anti-jamming Systems Technology?
What Are The Drone Anti-jamming Systems Technology?What Are The Drone Anti-jamming Systems Technology?
What Are The Drone Anti-jamming Systems Technology?
 
[2024]Digital Global Overview Report 2024 Meltwater.pdf
[2024]Digital Global Overview Report 2024 Meltwater.pdf[2024]Digital Global Overview Report 2024 Meltwater.pdf
[2024]Digital Global Overview Report 2024 Meltwater.pdf
 
Presentation on how to chat with PDF using ChatGPT code interpreter
Presentation on how to chat with PDF using ChatGPT code interpreterPresentation on how to chat with PDF using ChatGPT code interpreter
Presentation on how to chat with PDF using ChatGPT code interpreter
 
Evaluating the top large language models.pdf
Evaluating the top large language models.pdfEvaluating the top large language models.pdf
Evaluating the top large language models.pdf
 
GenAI Risks & Security Meetup 01052024.pdf
GenAI Risks & Security Meetup 01052024.pdfGenAI Risks & Security Meetup 01052024.pdf
GenAI Risks & Security Meetup 01052024.pdf
 
A Domino Admins Adventures (Engage 2024)
A Domino Admins Adventures (Engage 2024)A Domino Admins Adventures (Engage 2024)
A Domino Admins Adventures (Engage 2024)
 
🐬 The future of MySQL is Postgres 🐘
🐬  The future of MySQL is Postgres   🐘🐬  The future of MySQL is Postgres   🐘
🐬 The future of MySQL is Postgres 🐘
 
The 7 Things I Know About Cyber Security After 25 Years | April 2024
The 7 Things I Know About Cyber Security After 25 Years | April 2024The 7 Things I Know About Cyber Security After 25 Years | April 2024
The 7 Things I Know About Cyber Security After 25 Years | April 2024
 
08448380779 Call Girls In Friends Colony Women Seeking Men
08448380779 Call Girls In Friends Colony Women Seeking Men08448380779 Call Girls In Friends Colony Women Seeking Men
08448380779 Call Girls In Friends Colony Women Seeking Men
 
How to Troubleshoot Apps for the Modern Connected Worker
How to Troubleshoot Apps for the Modern Connected WorkerHow to Troubleshoot Apps for the Modern Connected Worker
How to Troubleshoot Apps for the Modern Connected Worker
 
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
 
Finology Group – Insurtech Innovation Award 2024
Finology Group – Insurtech Innovation Award 2024Finology Group – Insurtech Innovation Award 2024
Finology Group – Insurtech Innovation Award 2024
 
Handwritten Text Recognition for manuscripts and early printed texts
Handwritten Text Recognition for manuscripts and early printed textsHandwritten Text Recognition for manuscripts and early printed texts
Handwritten Text Recognition for manuscripts and early printed texts
 
Scaling API-first – The story of a global engineering organization
Scaling API-first – The story of a global engineering organizationScaling API-first – The story of a global engineering organization
Scaling API-first – The story of a global engineering organization
 
Exploring the Future Potential of AI-Enabled Smartphone Processors
Exploring the Future Potential of AI-Enabled Smartphone ProcessorsExploring the Future Potential of AI-Enabled Smartphone Processors
Exploring the Future Potential of AI-Enabled Smartphone Processors
 

Mule : Building Blocks for Microservices

  • 1. All contents © MuleSoft Inc. Mule: Building blocks for microservices January 2016 Anirudh Pandit
  • 2. All contents © MuleSoft Inc.2 •  Debunking the myth that Mule is only an ESB: – There is ESB as a product, and ESB as an architectural pattern. – Vendors that had ESBs were heavyweight EAI products. – Mule is a lightweight runtime, with integration and connectivity patterns built in. – Mule is NOT an ESB. Mule can be implemented as an ESB architectural pattern. – Mule is flexible to be implemented as a micro-entity or as a central-entity. •  Mule is an ideal fit for a foundation for microservices strategy – Mule provides flexibility by offering various building block forms •  Mule runtime Natural fit for containers – How Mule and PaaS go hand in hand to deliver a microservices platform Context
  • 3. All contents © MuleSoft Inc.3 Mule building block forms Managed API Flow Logic Connectivity Anypoint Management Center Design-time tools & services Analytics Services PaaS runtime services Engagement tools & services Identity Services API runtime services API management Organization and business groups
  • 4. All contents © MuleSoft Inc.4 Mule building block possibilities Managed API Flow Logic Connectivity •  Central API gateway ( global ) •  Micro API gateway ( local ) •  Managed microservice (if combined ) •  ESB architecture implementation ( global ) •  Micro ESB architecture implementation (local) •  Un-managed microservice ( local)
  • 5. All contents © MuleSoft Inc.5 Focus of this document is on microservices only Managed API Flow Logic Connectivity •  Central API gateway ( global ) •  Micro API gateway ( local ) •  Managed microservice (if combined ) •  ESB architecture implementation ( global ) •  Micro ESB architecture implementation (local) •  Un-managed microservice ( local)
  • 6. All contents © MuleSoft Inc.6 Runtime engine What goes into a Mule microservice? Connectivity •  MQ, Database, SOAP, HTTP, SaaS, OTS software •  Protocol implementation •  Connections/resources management •  Pooling … RAML specification •  Traits •  ResourceTypes •  SecuritySchemes •  Re-usable properties •  …. Logic Business Logic flows •  Routing •  Enrichment •  Transformation •  Aggregation •  Parallel execution •  Splitting •  …. Connectivity API Contract Mule deployable archive (.zip)
  • 7. All contents © MuleSoft Inc.7 VM OS Container Java Virtual Machine Runtime engine Mule microservice platform Logic Connectivity API Contract … PaaS
  • 8. All contents © MuleSoft Inc.8 Microservices with Mule Legacy EAI middleware System/data microservices Process microservices Experience microservices Reverse Proxy Mule Custom ( e.g., Node.js, C# , Java etc. ) Databases, Business Apps and Legacy Systems Legend:
  • 9. Using Mule for both managed and un-managed microservices (including API management)
  • 10. All contents © MuleSoft Inc. Level setting Proxy This is the protection above the microservice MicroService This is actually the service Data / System / Backend Consumer Mobile, web, or even another service / API
  • 11. All contents © MuleSoft Inc. Possible deployment options 11 Mule Proxy API Mule Service API Other Service API Business IT •  LOB may own the gateway/proxies •  Typically done in settings where there is little to no LOB IT •  ESB architectural pattern •  IT owns all the services Edge gateway and services runtimes deployed in ESB pattern
  • 12. All contents © MuleSoft Inc. Possible deployment options Mule Proxy API Mule Service API Other Service API Business IT •  LOB may own some lightweight orchestration services •  LOB may own the gateway/proxies •  LOB owns IT resources •  ESB architectural pattern for the lower level services. IT owns all the services at the lower levels. Combination of edge gateways at different logical levels and services runtimes in a similar pattern as the overlaying gateways
  • 13. All contents © MuleSoft Inc. Each level has separate governance patterns Mule Proxy API Mule Service API Other Service API Business IT •  LOB may own some lightweight orchestration services •  Collaboration between LOB and central IT •  IT owns all the services at the lower levels. Combination of edge gateways at different logical levels and services runtimes in a similar pattern as the overlaying gateways
  • 14. All contents © MuleSoft Inc. Possible deployment options Mule Proxy API Mule Service API Other Service API Business IT •  Each group ( LOB, and IT ) will be responsible for their own destinies •  Microservice runtimes •  Micro-gateway implementations •  DevOps at scale •  Heavy dependence on PaaS platforms Micro-gateway and runtime entities at each logical level
  • 16. All contents © MuleSoft Inc.16 Microservices – what are they? -  Smaller services, with a clear business capability purpose -  Bounded context -  Single purpose -  Experience APIs -  Loosely coupled -  Autonomous / Loosely held dependencies -  Explicitly addressing dependencies and minimising their impact through tooling and practice -  Technology agnostic -  There are no hard rules -  Design for change and replacement -  Iterate and improve -  No need to be religious
  • 17. All contents © MuleSoft Inc.17 APIs in a microservices context •  APIs are a technology-agnostic way to interface between two software components. These can be implicit or explicit (i.e. formally defined by a machine-readable specification and managed). •  In this context, we note that microservices are implementations of APIs. -  APIs don’t have to be synchronous (although they could be) -  APIs don’t have to be request-reply (although they could be) -  APIs don’t have to implement specific protocols •  … in other words, they conform to the microservices definition of loose coupling: APIs are completely appropriate as a way of defining a microservice boundary.
  • 18. All contents © MuleSoft Inc.18 API first microservices -  We can apply the API-first approach to microservices, where we specify microservices by their interface (their only touchpoint with the outside world) before we implement them. A single-purpose design makes this even easier than before. -  Smaller services are inherently defined by their boundary (contract) -  Start with an API specification -  API contracts make it easier to manage change -  Automation and policies over microservices streamlines coupling and allows easy linking -  API-based testing improves quality and predictability and can act as heartbeats
  • 19. All contents © MuleSoft Inc.19 Productized APIs with microservices -  API specification defines precise functional contract between the creator of the API and its consumers -  what are the operations, what data do they require or provide, and what happens when you invoke them? -  Access control (authentication, authorization, tokens) -  SLA definition and management (e.g. rate limiting or caching) -  Dependency tracking, collaboration and change notification -  Provides primitives to manage change (API specifications, versions) -  A powerful counterpart to operational automation for a resilient system
  • 20. All contents © MuleSoft Inc.20 Connecting microservices - Microservices aren’t “islands” - they work together for customer and business outcomes -  And most of the time, with things that aren’t microservices - There are three key areas that Anypoint makes easy: -  connecting microservices -  connecting mixed models (microservices with non- microservices) -  building microservices
  • 21. API Led Capability Architecture
  • 22. All contents © MuleSoft Inc. API Consumer Capabilities API-led microservices and connectivity reference API API Provider Capabilities
  • 23. All contents © MuleSoft Inc. Application development accelerators API Consumer ( App Developer) Portal API-led connectivity reference capabilities API Connectivity API Design Runtime Policy Mgmt Security API Gateway API API Discovery API Onboarding API Provider ( Administrator ) Portal API Build Operational Management AnalyticsAnalytics
  • 24. All contents © MuleSoft Inc. API-led connectivity reference capabilities API spec creation API doc generation API mocking API use case modelling API design patterns Traffic mgmt. Custom runtime policy SLA/contract mgmt. Dev portal generation Multi-org setup Authentication Authorization IP white/black list Digital certificates Payload encryption Protocol connectors SaaS / On-prem connectors Custom connectors Caching Transformation Orchestration Routing Runtime policy enforcement gateway API Connectivity patterns Versionings Environment promotion Deprecation Design API provider / administrator portal Manage Security Gateway Lifecycle API façade mapping Server side generation Backend modelling Deployment automation API backend patterns Implement API catalog/registry API Directory Text search Metadata / tag search Application registry Portal theming API key management Indexed facet searchAPI rating Developer Portal API Portal Forums Blogs Code samples Clients, SDKs Interactive docs Shareable use cases Static docsAPI Sandbox Self service sign-up Portal Branding URL customization Applicationconsumption dashboard Analytics Providersideanalytics. Customizationdashboardsand exportablereporting. End–Endbackendeventtracking,visualizationanderrorreporting Synchronization Service Optimization & Transformation Mobile Services (Push, GIS, IDM) App container & hosting Aggregation & Normalization Platform libraries MDM
  • 25. All contents © MuleSoft Inc. MuleSoft API spec creation API doc generation API mocking API use case modelling API design patterns Traffic mgmt. Custom runtime policy SLA/contract mgmt. Dev portal generation Multi-org setup Authentication Authorization IP white/black list Digital certificates Payload encryption Protocol connectors SaaS / On-prem connectors Custom connectors Caching Transformation Orchestration Routing Runtime policy enforcement gateway API Integration patterns Versioning Environment promotion Deprecation API consumer / developer portal Design API provider / administrator portal Manage Security Gateway Lifecycle API façade mapping Server side generation Backend modelling Deployment automation API backend patterns Implement Applicationconsumption dashboard Analytics Providersideanalytics. Customizationdashboardsand exportablereporting. End–Endbackendeventtracking,visualizationanderrorreporting API catalog/registry API Directory Text search Metadata / tag search Application registry API key management Indexed facet searchAPI rating Dev Portal Forums Blogs Code samples Clients, SDK generation Interactive docs Shareable use cases Static docsAPI Sandbox Self service sign-up Synchronization Service Optimization & Transformation Mobile Services (Push, GIS, IDM) App container & hosting Aggregation & Normalization Platform libraries MDM Portal theming Portal Branding URL customization
  • 26. All contents © MuleSoft Inc. Traditional API Management Vendor API spec creation API doc generation API mocking API use case modelling API design patterns Traffic mgmt. Custom runtime policy SLA/contract mgmt. Dev portal generation Multi-org setup Authentication Authorization IP white/black list Digital certificates Payload encryption Protocol connectors SaaS / On-prem connectors Custom connectors Caching Transformation Orchestration Routing Runtime policy enforcement gateway API Integration patterns Versioning Environment promotion Deprecation API consumer / developer portal Design API provider / administrator portal Manage Security Gateway Lifecycle API façade mapping Server side generation Backend modelling Deployment automation API backend patterns Implement Portal theming Portal Branding URL customization Applicationconsumption dashboard Analytics Providersideanalytics. Customizationdashboardsand exportablereporting. End–Endbackendeventtracking,visualizationanderrorreporting API catalog/registry API Directory Text search Metadata / tag search Application registry API key management Indexed facet searchAPI rating Dev Portal Forums Blogs Code samples Clients, SDKs Interactive docs Shareable use cases Static docsAPI Sandbox Self service sign-up Synchronization Service Optimization & Transformation Mobile Services (Push, GIS, IDM) App container & hosting Aggregation & Normalization Platform libraries MDM
  • 27. All contents © MuleSoft Inc. Traditional Integration Vendor 27All contents Copyright © 2014, MuleSoft Inc. API spec creation API doc generation API mocking API use case modelling API design patterns Traffic mgmt. Custom runtime policy SLA/contract mgmt. Dev portal generation Multi-org setup Authentication Authorization IP white/black list Digital certificates Payload encryption Protocol connectors SaaS / On-prem connectors Custom connectors Caching Transformation Orchestration Routing Runtime policy enforcement gateway API Integration patterns Versioning Environment promotion Deprecation API consumer / developer portal API catalog/registry API Directory Text search Metadata / tag search Application registry API key management Indexed facet searchAPI rating Dev Portal Forums Blogs Code samples Clients, SDKs Interactive docs Shareable use cases Static docsAPI Sandbox Self service sign-up Design API provider / administrator portal Manage Security Gateway Lifecycle API façade mapping Server side generation Backend modelling Deployment automation API backend patterns Implement Portal theming Portal Branding URL customization Applicationconsumption dashboard Analytics Providersideanalytics. Customizationdashboardsand exportablereporting. End–Endbackendeventtracking,visualizationanderrorreporting Synchronization Service Optimization & Transformation Mobile Services (Push, GIS, IDM) App container & hosting Aggregation & Normalization Platform libraries MDM
  • 29. All contents © MuleSoft Inc. Primary Roles concerned with the Anypoint Platform EA AD AO AC •  Enterprise Architect: strategy and evangelism of architectural best practices, for both design and runtimes •  API Developer: Responsible for developing the API / service •  API Owner: Responsible for the productization, operations and continuous improvement of the API •  API Consumer: Could be either an API developer, or a builder of mobile, web and other apps
  • 30. All contents © MuleSoft Inc. Organization and business group configuration 30 Design-time tools & services Analytics Services iPaaS runtime services Engagement tools & services Anypoint Management Center Identity Services API runtime services API management Organization and business groups Enterprise administrators, API owners and enterprise architects create business groups and environments
  • 31. All contents © MuleSoft Inc. Configure identity services and permissions 31 Design-time tools & services Analytics Services iPaaS runtime services Engagement tools & services Anypoint Management Center Identity Services API runtime services API management Organization and business groups API Owners to configure identity services for each organization or business group •  Configure RBAC permission models for the business groups and environments. •  Map from LDAP groups within your own enterprise LDAP to the Anypoint platform. •  To ensure proper access within the Anypoint platform, the organization owner must ensure that each of the groups is mapped to a role with appropriate permissions. •  Custom roles could also be created as needed. •  Leverage out of the box configurations to Ping and OpenAM
  • 32. All contents © MuleSoft Inc. Enable developers throughout the enterprise 32 •  DIY developer culture •  Training and skill building •  Easy to use tooling •  Access to building blocks •  Best practices
  • 33. All contents © MuleSoft Inc. Begin by hand writing the API’s contract AD API developer creates RAML spec in API Designer Design-time tools & services Analytics Services iPaaS runtime services Engagement tools & services Anypoint Management Center Identity Services API runtime services API management Organization and business groups
  • 34. All contents © MuleSoft Inc. Mock up the API, validate it with the consumer AD AC API Designer and API Consumer exchange feedback Stub to the backend
  • 35. All contents © MuleSoft Inc. Create Notebooks against the mocked up API, in order to to illustrate various scenarios and use cases of the API Example: Zendesk API Notebooks AC API Consumer creates Notebooks to tinker with the mocked up API Stub to the backend
  • 36. All contents © MuleSoft Inc. Anypoint Exchange: a repository of API design best practices EA Enterprise architect sets up a repository of API design best practices for architectural governance. E.g., response code templates, pagination traits etc. and other subsets of RAML contracts.
  • 37. All contents © MuleSoft Inc. Leverage best practice RAML snippets ( traits, resourceTypes, securitySchemes, or others ) from Exchange Repository of RAML snippets RAML Import AD API developer leverages RAML snippets to design the API
  • 38. All contents © MuleSoft Inc. Unlock assets with governance •  APIs for governance •  Access with policies •  Documented, communicated •  Security built in •  Identity authentication •  Alerts & notifications 38
  • 39. All contents © MuleSoft Inc. API implementation SaaS apps DB ERP Stub to the backend AD Once receiving validation from the API consumers around how the API contract is modeled, the API developer is now able to move on towards implementing the API.
  • 40. All contents © MuleSoft Inc. API implementation Leverage power of a suite of connectors, transformations, templates, filters, flow control mechanisms in the implementation logic Quick testing and feedback through built-in RAML console AD API developer creates backend integration, transformation, routing, mapping and connectivity logic Edit RAML contracts
  • 41. All contents © MuleSoft Inc. Anypoint Exchange: a repository of architectural best practices EA Enterprise architect sets framework up a repository of API implementation and other integration transformation/routing/mapping and connectivity best practices
  • 42. All contents © MuleSoft Inc. Leverage best practice RAML snippets ( traits, resourceTypes, securitySchemes, or others ) from Exchange Repository of Integration and Connectivity patterns API Implementation flow Import AD API developer leverages integration and connectivity templates to implement the API in a manner that is governed, and compliant to IT standards.
  • 43. All contents © MuleSoft Inc. AO Secure and manage the API proxy, and API service •  policies •  orchestration •  transformation •  caching •  Policies •  Traffic mgmt •  Security •  Caching Design-time tools & services Analytics Services iPaaS runtime services Engagement tools & services Anypoint Management Center Identity Services API runtime services API management Organization and business groups API gateway API runtime Proxy Service API owner sets up the end-end API stack: proxy, gateway, management policies and service runtime environment
  • 44. All contents © MuleSoft Inc. AO Publish the API and engage application developers •  API onboarding and documentation •  Client libraries, SDKs •  Collaboration Design-time tools & services Analytics Services iPaaS runtime services Engagement tools & services Anypoint Management Center Identity Services API runtime services API management Organization and business groups Developer Portal API owners catalog all APIs and set up the developer portals •  Directory •  Search, indexing •  Metadata, tags •  Versioning, deprecation, promotion API catalog
  • 45. All contents © MuleSoft Inc. Rich Developer Portal 45
  • 46. All contents © MuleSoft Inc. Analyze, monitor, and diagnose 46 •  Usage analysis •  End to end visibility •  Monitor against SLAs •  Diagnose low performance
  • 47. All contents © MuleSoft Inc. Analytics View analytics of API consumption, and the API implementation ( backend ) metrics, both from a consumer and provider perspective Design-time tools & services Analytics Services iPaaS runtime services Engagement tools & services Anypoint Management Center Identity Services API runtime services API management Organization and business groups API Analytics Backend Analytics
  • 49. All contents © MuleSoft Inc.49 MuleSoft leverages broadly adopted tools JUnit Deployment/ Ops Development Functional/ Unit Testing Build Continuous Integration Developer Ecosystem 49
  • 50. All contents © MuleSoft Inc.50 Release Component Mule SDLC Overview Development Production 1 2 Anypoint Studio Developer 3 4 5 6 7 8 9 Run Mocked TestsRun Unit Tests Run TestsRun Build Process DEVELOPMENT RELEASE PRODUCTION Create Mocked TestsCreate Unit Tests Functional Tests Create and Run Tests Mule App Mule App
  • 51. All contents © MuleSoft Inc. 51 DEV Runtime Platform Management CI/CD Studio JUnit Anypoint management Center (Monitoring: Insights, Logs, Alerts, Data Correlation, etc.) Dev Test Stage Prod
  • 53. All contents © MuleSoft Inc. Point Of View on PaaS enablement 53 •  Run cloud-native applications per cncf.io –  container-packaged, dynamically scheduled, microservices-based dev/ops •  On any cloud (public or private) environments –  Docker, Kubernetes, Mesos, Tectronic, … –  OpenShift v3, CloudFoundry/Diego, … •  Leveraging lowest-common-denominator –  Enabling friction-free containerization of Mule services –  Fundamental solution loosely based on CaaS (Containers as a service) •  For all our runtime services –  Mule workers (API/gateway/orchestration/connectivity workers) –  Management Center (for API/Mule lifecycle/management/governance)
  • 54. All contents © MuleSoft Inc. Development Operations Build Ship Run Secure Content Collaborate Deploy Manage Scale Development Environments
  • 55. All contents © MuleSoft Inc. Worker: Model: Runtime Container 55 •  Make Mule runtime a container –  Logging configured to standard output/error via log4j.(properties|xml) –  Map MULE_INSTALL_DIR/apps to an external folder •  Use published ways of (un)deploying applications –  Copy/remove from externalized apps folder –  Use Runtime Manager to deploy apps –  Use published lifecycle APIs to deploy apps •  Ramifications –  Only 1 container image is maintained –  Standard methods of application lifecycle are maintained (pro or con) –  Service lifecycle is not tied to container lifecycle (con)
  • 56. All contents © MuleSoft Inc. Worker: Model: Runtime+Application Container 56 •  Make Mule runtime+application a container –  Mule installation is a container image –  Mule application is a container image •  Layered atop the mule installation image (via docker containers efficiency layering) •  CANNOT Use published ways of starting/stopping containers –  Service lifecycle bound natively to container lifecycle •  Ramifications –  One container image maintained for runtime (pro) •  Each service is thin layer atop mule container overriding MULE_INSTALL_DIR/apps –  Published methods of Mule application lifecycle no longer apply (pro or con) –  Service lifecycle is tied to container lifecycle (pro) •  Friction-free model for container orchestration management systems
  • 57. All contents © MuleSoft Inc. Applicability to OpenShift V3 57 •  Layered system atop –  Docker: Lightweight Container Model –  Kubernetes: Container Orchestration across multiple hosts •  OpenShift Value Adds: –  Source code management, builds, and deployments for developers –  Managing and promoting images at scale as they flow through your system –  Application management at scale –  Team and user tracking for organizing a large developer organization
  • 58. 58Applicability to Openshift: https://docs.openshift.org/latest/architecture/index.html