SlideShare ist ein Scribd-Unternehmen logo
1 von 83
Downloaden Sie, um offline zu lesen
22nd October 2021
Manchester MuleSoft
Meetup Group
RTF Architecture
Guidelines for Manchester
MuleSoft Meetup #6 [Virtual]
● Welcome to Manchester MuleSoft Meetup! We will start our
introduction session at 5 pm IST.
● If any issues with audio/video or Bevy, write down your registered
name in chat section so that we can provide you audio/video access
in Bevy.
● Please keep yourself muted unless you have any question.
● We encourage keeping your video on for making our meetup
interactive.
● You'll can also write down your questions in chat section.
● We appreciate your valuable feedback. Thanks.
2
3
● Introductions
● RTF Architecture
● Trivia Quiz
● Networking time
Agenda
4
●About the organizer:
○ Terry Lockwood
○ Akshata Sawant
●About the sponsor:
○ MuleSoft
Introductions
A SHOW OF HANDS:
Who is new to this Meetup?
Important Announcements
Latest Releases/News
● Event-Driven API (AsyncAPI)
https://docs.mulesoft.com/release-
notes/platform/event-driven-api
● Participate in MuleSoft Hackathon 2021
https://blogs.mulesoft.com/dev-guides/mulesoft-
hackathon-2021/
6
Latest Releases/News
● Become a leading community mentor -
https://tinyurl.com/sv4rupew
● The calendar subscription link for Mulesoft meetups:
https://calendar.google.com/calendar/ical/idc4qavc8b81c9oop81obr
s27k%40group.calendar.google.com/public/basic.ics
7
Speaker
8
Agenda
● MuleSoft deployment strategies
● Runtime fabric operating models
● RTF on self-managed Kubernetes architecture
● RTF advanced concepts
● RTF logging and monitoring
● RTF components
MuleSoft Deployment Strategies
Runtime plane Vs Control plane
Cloudhub
On-Premise runtime
RTF Runtime
Private Cloud Edition
RTF operating models - on VMs or bare metal
● Cloud infrastructure provided by customer
● Support for AWS, Azure, or on-prem
● *No need for Kubernetes expertise
It contains all of the components it requires.
These components, including Docker and
Kubernetes, are optimized to work efficiently
with Mule runtimes and other MuleSoft
services.
RTF operating models - on self-managed
Kubernetes
• Install Runtime Fabric services in managed
Kubernetes solutions (EKS, AKS, or GKE)
• Provide and manage your own Kubernetes cluster
• More flexibility, cheaper, and less overhead
• Kubernetes expertise required
RTF operating models - on self-managed
Kubernetes
Shared responsibility model
• Mulesoft provides support for
• Runtime Fabric components
• Mule Runtime server
• Mule deployment resources
• Kubernetes Administrator responsible for
• Creating, configuring, and managing EKS, AKS,
and GKE
• Ingress controller
• Logs and metrics
• Container runtime and networking
Runtime Fabric operating models comparison
Capabilities Runtime Fabric on Self-Managed Kubernetes
Runtime Fabric on VMs or
bare metal
Kubernetes and Docker
Provision your own EKS/AKS/GKE cluster
MuleSoft supplies Docker images Included
Linux distribution Support for all versions RHEL and CentOS only
Node autoscaling Autoscaling supported using Azure, AWS, or GCP settings Not Supported
External log forwarding Provision your own log forwarder Included
Internal load balancer Set up your own Ingress Included
Anypoint Security Edge Not Supported Supported
Ops Center
Enable similar monitoring and alerting from
AWS/Azure/GCP console Included
The Big Picture
Dockerize
App
Your App
Docker Image
Repository
Docker Hub
Elastic Container Registry
(ECR)
Deploy Into
Amazon EKS
Google Kubernetes Engine
K8s Cluster
K8s on EC2
……..
Any other K8s Cluster
Implementation
Dockerfile
Container
Exchange
rtf-runtime-registry.kprod.msap.io
Docker History
RTF Architecture
Kubernetes Architecture
Who Manages Nodes?
Control Plane manages, monitors,
plans, schedules nodes
Worker Nodes host Containers
Control Plane Components
Control Plane manages, monitors,
plans, schedules nodes
Worker Nodes host Containers
Key Value Store for critical cluster info
Puts containers to proper nodes
Ensures proper state of cluster components
Kubernetes Cluster State
X
Desired State: 3 Nodes
Current State: 2 Nodes
c-m brings one node up so current state = desired state
Who Specifies State?
Desired State: 6 Containers
Current State: 0 Containers
YOU
Manifest File
Run 6 copies of an container image
Who Specifies State?
Desired State: 6 Containers
Current State: 6 Containers
YOU
Manifest File
Run 6 copies of an container image
Gateway to Control Plane
Desired State Vs Current State
YOU
Manifest File
Do this on the cluster
Exposes Kubernetes API
Kubernetes Architecture
Control Plane manages, monitors,
plans, schedules nodes
Worker Nodes host Containers
Key Value Store for critical cluster info
Puts containers to proper nodes
Ensures proper state of cluster components
Exposes Kubernetes API
What’s In Node?
Container Runtime Engine
Docker, Containerd, CRI-O, frakti
Control Plane - Node Communication
Control Plane manages, monitors,
plans, schedules nodes
Status of the node and containers to
Control Plane <aws-node>
Container-Container Communication
Control Plane manages, monitors,
plans, schedules nodes
Status of the node and containers to
Control Plane <aws-node>
Allows network communications
<kube-proxy>
Putting it All Together
Control Plane manages, monitors,
plans, schedules nodes
Status of the node and containers to
Control Plane <aws-node>
Allows network
communications <kube-proxy>
Key Value Store for critical cluster info
Puts containers to proper nodes
Ensures proper state of cluster components
Exposes Kubernetes API
Container Runtime
Container Runtime
Container Runtime
Sizing Exercise
How many pods??
Ng-1 Ng-2
T3.micro T3.micro T3.small
Sizing Exercise - solution
Ng-1 Ng-2
T3.micro T3.micro T3.small
T3.micro: Max ENI=2, Max IP4=2 , total pods = 2*(2-
1)+2=4*2=8
T3.small: Max ENI=3, Max IP4=4, total pods =3*(4-1)+2=11
Each Node: 1 proxy and 1 aws-node, total =3*2=6
dns service: 2 for HA
total pods=(8+11)-6-2=11
# of ENI * (# of IPv4 per ENI - 1) + 2
https://github.com/awslabs/amazon-eks-ami/blob/master/files/eni-max-pods.txt
RTF Resource allocation limitations
Resource Limitation
Nodes 30 max
Node types VM based required (e.g., not Fargate)
Replicas per node 20 to 25 per core, up to 40 per node.
Associated environment per
Runtime Fabric instance
50 max environments
Business groups 50 max Runtime Fabric instances per business group
RTF Pods
• Docker image containing
– Base Linux operating system
– Java Virtual Machine
– Mule runtime
• Container image cannot be
customized, not possible to
deploy other Docker containers
• No mountable volumes, not directly
accessible
• CPU Footprint between
20mCPU to 50mCPU to
sample apps container, 50mCPU
for monitoring container (streams
application metrics to the control plane
and cannot be disabled)
• Memory allocation: 700Mi for mule4,
500Mi for mule3 + 50Mi for monitoring
container
Putting it All Together
Control Plane manages, monitors,
plans, schedules nodes
Key Value Store for critical cluster info
Puts containers to proper nodes
Ensures proper state of cluster components
Exposes Kubernetes API
Container Runtime
Container Runtime
Container Runtime
Forward logs to log aggregator
(200mCPU, 200Mi)
Communicate with control plane
(100mCPU, 200Mi)
Mule-clusterip-service
(50mCPU, 100Mi)
resource-cache
(100mCPU,50Mi)
RTF Performance and Startup
vCPU Cores Concurrent Connections Avg Response Time (ms)
1.00 10 15
0.50 5 15
0.10 1 25
0.07 1 78
vCPU Cores Approximate Startup Time
1.00 Less than 1 minute
0.50 Under 2 minutes
0.10 6 to 8 minutes
0.07 10 to 14 minutes
Run performance and load testing on your Mule applications to determine the number of resources to allocate.
RTF Installation Steps
1. Create a Runtime Fabric configuration
from Anypoint Runtime Manager
2. Install Runtime Fabric on a provisioned
EKS Kubernetes cluster using rtfctl install
3. Verify the progress and results rtfctl
status
4. Install the license using rtfctl apply mule-
license
APP Deployment
Life Of A Simple APP
Experience layer
Process Layer
user-eapi
user-eapi 10.16.48.53
10.16.93.80
user-papi
10.18.32.61
user-papi
10.18.16.23
10.16.10.01
10.18.10.21
System Layer
10.20.10.20
sf-sapi
10.20.10.61
sf-sapi
10.20.10.65
ClusterIP
ClusterIP
ALB Ingress
env:ns app1
Application Load Balancer
Path: app1.epam.com Path:
app2.epam.com
rtf:rtf-ingress env:ns app1 env:ns app2
env:ns app2
● Anypoint Runtime Fabric for self-
managed Kubernetes does not
include a built-in load balancer.
● Runtime Fabric on self-managed
Kubernetes supports any Ingress
controller that is compatible with the
Kubernetes service provided by your
vendor (EKS, AKS, or GKE)
● An application can be accessed
from another application within the
same Runtime Fabric cluster,
bypassing the Ingress
● For apps running in the same
namespace: http(s)://<app
name>:8081/api
● For apps running in different
namespaces: http(s)://<app
name>.<namespace>:8081/ap
i
https://k8s-rtf1-a88537f113-589639490.us-west-1.elb.amazonaws.com
Host: *.epam.com
path /*
Scalability
Quiz: What Resources Created?
Deployment
Replicaset
Pod
Containers 1 vCPU = 1000m (milicore)
pod requesting CPU of 20m
(Half of .02 vCPU) and 800
MiB of Memory
pod CPU limit 1000m (1
vCPU) and 800 MiB of Memory
Horizontal Pod Autoscaler
Horizontal Pod Autoscaler (HPA)
Amazon EC2 (m5.large)
CPU
Traffic
CPU
Scale pod if pod CPU > 50%
Horizontal Pod Autoscaler (HPA)
Amazon EC2 (m5.large)
CPU CPU
Traffic
Scale pod if pod CPU > 50%
Horizontal Pod Autoscaler (HPA)
Amazon EC2 (m5.large)
CPU CPU
CPU
Scale pod if pod CPU > 50%
Traffic
RTF -HPA
• Add/remove resources using
Runtime Manager
• Add/remove Pods (replicas) using
Runtime Manager
• Replicas are distributed across
the worker nodes for HA
• CPU bursting shares CPU cores
with other applications, This
means performance for one
application is influenced by other
applications running on the
worker node
EC2 Scaling
Application Load Balancer
Auto Scaling Policy:
Scale if CPU > 50% (based on CloudWatch Metrics)
Auto Scaling Group
CPU
Amazon EC2
(m5.large)
Traffic
Application Load Balancer
Auto Scaling Policy:
Scale if CPU > 50% (based on CloudWatch Metrics)
Auto Scaling Group
CPU CPU
Traffic
Amazon EC2 Amazon EC2
(m5.large) (m5.large)
EC2 Scaling
Autoscaler
CPU
Traffic
Amazon EC2
(m5.large)
CPU CPU
CPU
Amazon EKS
Auto Scaling group
Amazon EC2
(m5.large)
CPU
CPU
Application Clustering
Mule Runtime Cluster
Mule runtime clusters are more tightly coupled and are aware of each other
• Allows multi-threaded applications that leverage all attached nodes assigned resources
Logging & Monitoring
EKS Logging
● EKS Control Plane Logging
● EKS Worker Nodes Logging
EKS Logging
● EKS Control Plane Logging
○ K8 api
○ audit
○ authenticator
○ controllerManager
○ scheduler
● EKS Worker Nodes Logging
EKS Logging
● EKS Control Plane Logging
○ K8 api
○ audit
○ authenticator
○ controllerManager
○ scheduler
● EKS Worker Nodes Logging
○ System logs from kubelet, kube-proxy, or
dockerd
○ Application logs from application containers
EKS Control Plane Logging
● EKS Control Plane Logging
○ K8s api
○ audit
○ authenticator
○ controllerManager
○ scheduler
Amazon
CloudWatc
h
LOGS
Stream
Amazon Elasticsearch
Service
Logging Caveat
EC2
Amazon Elastic Block Store
(EBS)
If instance terminated, logs are gone
LOGS
Logs need to be aggregated in a meaningful way
App 1 App 2 App 3
Logging Caveat
LOGS
Logging Architecture
(Abstract)
RTF Worker Nodes
✔ Mule application generates logging messages using the Log4j framework
✔ Typically stored in per-application log files in $MULE_HOME/logs
✔ Mule runtime logs are stored in a separate log file (mule_ee.log)
✔ Container redirect logs to /var/log/containers/*.log files
https://docs.mulesoft.com/runtime-fabric/1.10/runtime-fabric-logs
Implementation
LOG BACKEND
(ES, Splunk, CloudWatch)
= Logging agent running as daemon, reading logs from /var/log
and sending to logging backend
Log-forwarder Log-forwarder Log-forwarder
• You can also access logs
through Anypoint Monitoring
(Titanium customers)
• With Anypoint Monitoring or kubectl
commands, you can view the logs from
a deployed application
Implementation
= Logging agent running as daemon, reading logs from /var/log
and sending to logging backend
Agent
For Streaming to Multiple Log Backends
Amazon Elasticsearch
Service
etc.
Stream
Amazon Kinesis Data Firehose
RTF Monitoring
dias-anypoint-monitoring-sidecar
Security
Security considerations
Security can and should be applied on various levels
• Infrastructure: widest range, often cross-domain
• Network: transport/protocol security
• Operating system: OS users, filesystem privileges
• Runtime: hardening a JDK or Mule installation
• Applications: such as endpoint security, services, and RBAC
• Content: hiding/masking sensitive data
RTF Layered security
Anypoint Platform
(Platform level)
API Management
(Implementation level)
Tokenization
(Data level)
● Operations
● Data security
● Passwords and credentials
● Facilities and network
● Secure connectivity
● Data sovereignty
● Third-party authentication
● On-premises security
Create new APIs and integrations
from prebuilt API security fragments,
access patterns, and policies vetted by
security experts
Secure data in motion across the
enterprise with automatic
tokenization and encryption and reduce
the risk of data breaches
Persistence Gateway
Overview
● Provides a mechanism for persisting Object Store
entries across Mule applications replicas
● All information is deleted when the application is
removed
○ Requires Mule runtimes of version 4.2.1 or later
○ Uses a customer-provided database as data source
(PostgreSQL 9 and above)
● Uses Kubernetes secret to store database
connection details
● Configured via a Kubernetes custom resource and
an opaque secret
● Maximum TTL for data stored is set by default to 30
days
DEMO
Trivia Questions
76
Q1
What's The maximum number of replicas that can be deployed per node
in RTF?
Options :
a. 10
b. 25
c. 30
d. 40
Q2
How to use Persistence Gateway in a Mule application deployed on RTF?
Options:
a. Anypoint Object Store V2 (OSv2)
b. CloudHub Object Store V1
c. Mule Object Store
d. postgresql Database connector
Q3
What's the CPU and memory footprints for monitoring container?
Options:
a. 50mCPU, 30Mi
b. 30mCPU, 50Mi
c. 50mCPU, 50Mi
d. 20mCPU, 30Mi
80
Nominate yourself for the next meetup
speaker and suggest a topic as well.
Do share the feedback with us
Take a stand!
81
● Share:
○ Tweet using the hashtag #MuleSoftMeetups
○ Invite your network to join: https://meetups.mulesoft.com/manchester/
● Feedback:
○ Fill out the survey feedback and suggest topics for upcoming events
○ Contact MuleSoft at meetups@mulesoft.com for ways to improve the program
○ Contact your organizers Terry Lockwood & Akshata Sawant to suggest topics &
volunteer as speaker
○ Tweet your organizers at @MuleSoft @MuleDev @sawantakshata02
○ Telegram: https://t.me/joinchat/Q6y-MgriEqyDicfZV9PIAg
What’s next?
Introduce yourself to your neighbor
Networking time
Thank you

Weitere ähnliche Inhalte

Was ist angesagt?

MuleSoft Online Meetup a Guide to RTF application deployment - October 2020
MuleSoft Online Meetup   a Guide to RTF application deployment  - October 2020MuleSoft Online Meetup   a Guide to RTF application deployment  - October 2020
MuleSoft Online Meetup a Guide to RTF application deployment - October 2020Royston Lobo
 
Clustering, Server setup and Hybrid deployment setup using Anypoint Runtime M...
Clustering, Server setup and Hybrid deployment setup using Anypoint Runtime M...Clustering, Server setup and Hybrid deployment setup using Anypoint Runtime M...
Clustering, Server setup and Hybrid deployment setup using Anypoint Runtime M...Manish Kumar Yadav
 
Denver MuleSoft Meetup: Deep Dive into Anypoint Runtime Fabric Security
Denver MuleSoft Meetup: Deep Dive into Anypoint Runtime Fabric Security Denver MuleSoft Meetup: Deep Dive into Anypoint Runtime Fabric Security
Denver MuleSoft Meetup: Deep Dive into Anypoint Runtime Fabric Security Stephanie Lawrence
 
Patna MuleSoft Meetup Anypoint Cloudhub 2.0
Patna MuleSoft Meetup Anypoint Cloudhub 2.0Patna MuleSoft Meetup Anypoint Cloudhub 2.0
Patna MuleSoft Meetup Anypoint Cloudhub 2.0shyamraj55
 
Anypoint Platform for Pivotal Cloud Foundry
Anypoint Platform for Pivotal Cloud FoundryAnypoint Platform for Pivotal Cloud Foundry
Anypoint Platform for Pivotal Cloud FoundryMuleSoft
 
Introduction to Anypoint Runtime Fabric on Amazon Elastic Kubernetes Service ...
Introduction to Anypoint Runtime Fabric on Amazon Elastic Kubernetes Service ...Introduction to Anypoint Runtime Fabric on Amazon Elastic Kubernetes Service ...
Introduction to Anypoint Runtime Fabric on Amazon Elastic Kubernetes Service ...Anoop Ramachandran
 
MuleSoft PKO - C4E and Platform Insights
MuleSoft PKO - C4E and Platform InsightsMuleSoft PKO - C4E and Platform Insights
MuleSoft PKO - C4E and Platform InsightsAngel Alberici
 
MuleSoft Surat Meetup#41 - Universal API Management, Anypoint Flex Gateway an...
MuleSoft Surat Meetup#41 - Universal API Management, Anypoint Flex Gateway an...MuleSoft Surat Meetup#41 - Universal API Management, Anypoint Flex Gateway an...
MuleSoft Surat Meetup#41 - Universal API Management, Anypoint Flex Gateway an...Jitendra Bafna
 
MuleSoft Architecture Presentation
MuleSoft Architecture PresentationMuleSoft Architecture Presentation
MuleSoft Architecture PresentationRupesh Sinha
 
OpenShift Container Platform 4.12 Release Notes
OpenShift Container Platform 4.12 Release NotesOpenShift Container Platform 4.12 Release Notes
OpenShift Container Platform 4.12 Release NotesGerryJamisola1
 
Object Store V2 Workshop
Object Store V2 WorkshopObject Store V2 Workshop
Object Store V2 WorkshopMuleSoft
 
Runtime Fabric on OpenShift _--_ MuleSoft Meetup Deck.pptx
Runtime Fabric on OpenShift _--_ MuleSoft Meetup Deck.pptxRuntime Fabric on OpenShift _--_ MuleSoft Meetup Deck.pptx
Runtime Fabric on OpenShift _--_ MuleSoft Meetup Deck.pptxSandeep Deshmukh
 
Washington DC MuleSoft Meetup: CI/CD Pipeline with MuleSoft and Azure DevOps
Washington DC MuleSoft Meetup: CI/CD Pipeline with MuleSoft and Azure DevOpsWashington DC MuleSoft Meetup: CI/CD Pipeline with MuleSoft and Azure DevOps
Washington DC MuleSoft Meetup: CI/CD Pipeline with MuleSoft and Azure DevOpsBig Compass
 
Kubernetes a comprehensive overview
Kubernetes   a comprehensive overviewKubernetes   a comprehensive overview
Kubernetes a comprehensive overviewGabriel Carro
 
Introduction to Red Hat OpenShift 4
Introduction to Red Hat OpenShift 4Introduction to Red Hat OpenShift 4
Introduction to Red Hat OpenShift 4HngNguyn748044
 
MuleSoft Sizing Guidelines - VirtualMuleys
MuleSoft Sizing Guidelines - VirtualMuleysMuleSoft Sizing Guidelines - VirtualMuleys
MuleSoft Sizing Guidelines - VirtualMuleysAngel Alberici
 
Why Mulesoft ?
Why Mulesoft ?Why Mulesoft ?
Why Mulesoft ?Bui Kiet
 

Was ist angesagt? (20)

MuleSoft Online Meetup a Guide to RTF application deployment - October 2020
MuleSoft Online Meetup   a Guide to RTF application deployment  - October 2020MuleSoft Online Meetup   a Guide to RTF application deployment  - October 2020
MuleSoft Online Meetup a Guide to RTF application deployment - October 2020
 
Clustering, Server setup and Hybrid deployment setup using Anypoint Runtime M...
Clustering, Server setup and Hybrid deployment setup using Anypoint Runtime M...Clustering, Server setup and Hybrid deployment setup using Anypoint Runtime M...
Clustering, Server setup and Hybrid deployment setup using Anypoint Runtime M...
 
Cloudhub 2.0
Cloudhub 2.0Cloudhub 2.0
Cloudhub 2.0
 
Denver MuleSoft Meetup: Deep Dive into Anypoint Runtime Fabric Security
Denver MuleSoft Meetup: Deep Dive into Anypoint Runtime Fabric Security Denver MuleSoft Meetup: Deep Dive into Anypoint Runtime Fabric Security
Denver MuleSoft Meetup: Deep Dive into Anypoint Runtime Fabric Security
 
Patna MuleSoft Meetup Anypoint Cloudhub 2.0
Patna MuleSoft Meetup Anypoint Cloudhub 2.0Patna MuleSoft Meetup Anypoint Cloudhub 2.0
Patna MuleSoft Meetup Anypoint Cloudhub 2.0
 
Anypoint Platform for Pivotal Cloud Foundry
Anypoint Platform for Pivotal Cloud FoundryAnypoint Platform for Pivotal Cloud Foundry
Anypoint Platform for Pivotal Cloud Foundry
 
Introduction to Anypoint Runtime Fabric on Amazon Elastic Kubernetes Service ...
Introduction to Anypoint Runtime Fabric on Amazon Elastic Kubernetes Service ...Introduction to Anypoint Runtime Fabric on Amazon Elastic Kubernetes Service ...
Introduction to Anypoint Runtime Fabric on Amazon Elastic Kubernetes Service ...
 
MuleSoft PKO - C4E and Platform Insights
MuleSoft PKO - C4E and Platform InsightsMuleSoft PKO - C4E and Platform Insights
MuleSoft PKO - C4E and Platform Insights
 
MuleSoft Surat Meetup#41 - Universal API Management, Anypoint Flex Gateway an...
MuleSoft Surat Meetup#41 - Universal API Management, Anypoint Flex Gateway an...MuleSoft Surat Meetup#41 - Universal API Management, Anypoint Flex Gateway an...
MuleSoft Surat Meetup#41 - Universal API Management, Anypoint Flex Gateway an...
 
MuleSoft Architecture Presentation
MuleSoft Architecture PresentationMuleSoft Architecture Presentation
MuleSoft Architecture Presentation
 
OpenShift Container Platform 4.12 Release Notes
OpenShift Container Platform 4.12 Release NotesOpenShift Container Platform 4.12 Release Notes
OpenShift Container Platform 4.12 Release Notes
 
Object Store V2 Workshop
Object Store V2 WorkshopObject Store V2 Workshop
Object Store V2 Workshop
 
Runtime Fabric on OpenShift _--_ MuleSoft Meetup Deck.pptx
Runtime Fabric on OpenShift _--_ MuleSoft Meetup Deck.pptxRuntime Fabric on OpenShift _--_ MuleSoft Meetup Deck.pptx
Runtime Fabric on OpenShift _--_ MuleSoft Meetup Deck.pptx
 
Introduction to MuleSoft
Introduction to MuleSoftIntroduction to MuleSoft
Introduction to MuleSoft
 
Washington DC MuleSoft Meetup: CI/CD Pipeline with MuleSoft and Azure DevOps
Washington DC MuleSoft Meetup: CI/CD Pipeline with MuleSoft and Azure DevOpsWashington DC MuleSoft Meetup: CI/CD Pipeline with MuleSoft and Azure DevOps
Washington DC MuleSoft Meetup: CI/CD Pipeline with MuleSoft and Azure DevOps
 
Managing APIs with MuleSoft
Managing APIs with MuleSoftManaging APIs with MuleSoft
Managing APIs with MuleSoft
 
Kubernetes a comprehensive overview
Kubernetes   a comprehensive overviewKubernetes   a comprehensive overview
Kubernetes a comprehensive overview
 
Introduction to Red Hat OpenShift 4
Introduction to Red Hat OpenShift 4Introduction to Red Hat OpenShift 4
Introduction to Red Hat OpenShift 4
 
MuleSoft Sizing Guidelines - VirtualMuleys
MuleSoft Sizing Guidelines - VirtualMuleysMuleSoft Sizing Guidelines - VirtualMuleys
MuleSoft Sizing Guidelines - VirtualMuleys
 
Why Mulesoft ?
Why Mulesoft ?Why Mulesoft ?
Why Mulesoft ?
 

Ähnlich wie Manchester MuleSoft Meetup #6 - Runtime Fabric with Mulesoft

Toronto MuleSoft_Meetup_Run Time Fabric - Self Managed Kubernetes.pptx
Toronto MuleSoft_Meetup_Run Time Fabric - Self Managed Kubernetes.pptxToronto MuleSoft_Meetup_Run Time Fabric - Self Managed Kubernetes.pptx
Toronto MuleSoft_Meetup_Run Time Fabric - Self Managed Kubernetes.pptxAnurag Dwivedi
 
Kubernetes #1 intro
Kubernetes #1   introKubernetes #1   intro
Kubernetes #1 introTerry Cho
 
01 - VMUGIT - Lecce 2018 - Fabio Rapposelli, VMware
01 - VMUGIT - Lecce 2018 - Fabio Rapposelli, VMware01 - VMUGIT - Lecce 2018 - Fabio Rapposelli, VMware
01 - VMUGIT - Lecce 2018 - Fabio Rapposelli, VMwareVMUG IT
 
Washington DC MuleSoft Meetup 05-12-22-2.pptx
Washington DC MuleSoft Meetup 05-12-22-2.pptxWashington DC MuleSoft Meetup 05-12-22-2.pptx
Washington DC MuleSoft Meetup 05-12-22-2.pptxivaturia
 
Cleveland_Meetup_July21_2022
Cleveland_Meetup_July21_2022Cleveland_Meetup_July21_2022
Cleveland_Meetup_July21_2022Tintu Jacob Shaji
 
Tungsten Fabric Overview
Tungsten Fabric OverviewTungsten Fabric Overview
Tungsten Fabric OverviewMichelle Holley
 
Overview of OpenDaylight Container Orchestration Engine Integration
Overview of OpenDaylight Container Orchestration Engine IntegrationOverview of OpenDaylight Container Orchestration Engine Integration
Overview of OpenDaylight Container Orchestration Engine IntegrationMichelle Holley
 
Kubernetes fundamentals
Kubernetes fundamentalsKubernetes fundamentals
Kubernetes fundamentalsVictor Morales
 
Support of containerized workloads in ONAP
Support of containerized workloads in ONAPSupport of containerized workloads in ONAP
Support of containerized workloads in ONAPVictor Morales
 
Intro to kubernetes
Intro to kubernetesIntro to kubernetes
Intro to kubernetesElad Hirsch
 
DevJam 2019 - Introduction to Kubernetes
DevJam 2019 - Introduction to KubernetesDevJam 2019 - Introduction to Kubernetes
DevJam 2019 - Introduction to KubernetesRonny Trommer
 
Kubernetes: від знайомства до використання у CI/CD
Kubernetes: від знайомства до використання у CI/CDKubernetes: від знайомства до використання у CI/CD
Kubernetes: від знайомства до використання у CI/CDStfalcon Meetups
 
Containers and Kubernetes -Notes Leo
Containers and Kubernetes -Notes LeoContainers and Kubernetes -Notes Leo
Containers and Kubernetes -Notes LeoLéopold Gault
 
Lessons learned migrating 100+ services to Kubernetes
Lessons learned migrating 100+ services to KubernetesLessons learned migrating 100+ services to Kubernetes
Lessons learned migrating 100+ services to KubernetesJose Galarza
 
ApacheCon NA - Apache Camel K: connect your Knative serverless applications w...
ApacheCon NA - Apache Camel K: connect your Knative serverless applications w...ApacheCon NA - Apache Camel K: connect your Knative serverless applications w...
ApacheCon NA - Apache Camel K: connect your Knative serverless applications w...Nicola Ferraro
 
Building Distributed Systems without Docker, Using Docker Plumbing Projects -...
Building Distributed Systems without Docker, Using Docker Plumbing Projects -...Building Distributed Systems without Docker, Using Docker Plumbing Projects -...
Building Distributed Systems without Docker, Using Docker Plumbing Projects -...Patrick Chanezon
 
Container & kubernetes
Container & kubernetesContainer & kubernetes
Container & kubernetesTed Jung
 
Elastic Kubernetes Services (EKS)
Elastic Kubernetes Services (EKS)Elastic Kubernetes Services (EKS)
Elastic Kubernetes Services (EKS)sriram_rajan
 

Ähnlich wie Manchester MuleSoft Meetup #6 - Runtime Fabric with Mulesoft (20)

Toronto MuleSoft_Meetup_Run Time Fabric - Self Managed Kubernetes.pptx
Toronto MuleSoft_Meetup_Run Time Fabric - Self Managed Kubernetes.pptxToronto MuleSoft_Meetup_Run Time Fabric - Self Managed Kubernetes.pptx
Toronto MuleSoft_Meetup_Run Time Fabric - Self Managed Kubernetes.pptx
 
Kubernetes #1 intro
Kubernetes #1   introKubernetes #1   intro
Kubernetes #1 intro
 
01 - VMUGIT - Lecce 2018 - Fabio Rapposelli, VMware
01 - VMUGIT - Lecce 2018 - Fabio Rapposelli, VMware01 - VMUGIT - Lecce 2018 - Fabio Rapposelli, VMware
01 - VMUGIT - Lecce 2018 - Fabio Rapposelli, VMware
 
Washington DC MuleSoft Meetup 05-12-22-2.pptx
Washington DC MuleSoft Meetup 05-12-22-2.pptxWashington DC MuleSoft Meetup 05-12-22-2.pptx
Washington DC MuleSoft Meetup 05-12-22-2.pptx
 
Cleveland_Meetup_July21_2022
Cleveland_Meetup_July21_2022Cleveland_Meetup_July21_2022
Cleveland_Meetup_July21_2022
 
Container Orchestration using kubernetes
Container Orchestration using kubernetesContainer Orchestration using kubernetes
Container Orchestration using kubernetes
 
Tungsten Fabric Overview
Tungsten Fabric OverviewTungsten Fabric Overview
Tungsten Fabric Overview
 
Overview of OpenDaylight Container Orchestration Engine Integration
Overview of OpenDaylight Container Orchestration Engine IntegrationOverview of OpenDaylight Container Orchestration Engine Integration
Overview of OpenDaylight Container Orchestration Engine Integration
 
Kubernetes fundamentals
Kubernetes fundamentalsKubernetes fundamentals
Kubernetes fundamentals
 
Support of containerized workloads in ONAP
Support of containerized workloads in ONAPSupport of containerized workloads in ONAP
Support of containerized workloads in ONAP
 
Intro to kubernetes
Intro to kubernetesIntro to kubernetes
Intro to kubernetes
 
DevJam 2019 - Introduction to Kubernetes
DevJam 2019 - Introduction to KubernetesDevJam 2019 - Introduction to Kubernetes
DevJam 2019 - Introduction to Kubernetes
 
Kubernetes: від знайомства до використання у CI/CD
Kubernetes: від знайомства до використання у CI/CDKubernetes: від знайомства до використання у CI/CD
Kubernetes: від знайомства до використання у CI/CD
 
Containers and Kubernetes -Notes Leo
Containers and Kubernetes -Notes LeoContainers and Kubernetes -Notes Leo
Containers and Kubernetes -Notes Leo
 
Lessons learned migrating 100+ services to Kubernetes
Lessons learned migrating 100+ services to KubernetesLessons learned migrating 100+ services to Kubernetes
Lessons learned migrating 100+ services to Kubernetes
 
ApacheCon NA - Apache Camel K: connect your Knative serverless applications w...
ApacheCon NA - Apache Camel K: connect your Knative serverless applications w...ApacheCon NA - Apache Camel K: connect your Knative serverless applications w...
ApacheCon NA - Apache Camel K: connect your Knative serverless applications w...
 
Building Distributed Systems without Docker, Using Docker Plumbing Projects -...
Building Distributed Systems without Docker, Using Docker Plumbing Projects -...Building Distributed Systems without Docker, Using Docker Plumbing Projects -...
Building Distributed Systems without Docker, Using Docker Plumbing Projects -...
 
Container & kubernetes
Container & kubernetesContainer & kubernetes
Container & kubernetes
 
Elastic Kubernetes Services (EKS)
Elastic Kubernetes Services (EKS)Elastic Kubernetes Services (EKS)
Elastic Kubernetes Services (EKS)
 
Kubernetes @ meetic
Kubernetes @ meeticKubernetes @ meetic
Kubernetes @ meetic
 

Mehr von Akshata Sawant

Anypoint Tools and MuleSoft Automation (DRAFT).pptx
Anypoint Tools and MuleSoft Automation (DRAFT).pptxAnypoint Tools and MuleSoft Automation (DRAFT).pptx
Anypoint Tools and MuleSoft Automation (DRAFT).pptxAkshata Sawant
 
London MuleSoft Meetup
London MuleSoft Meetup London MuleSoft Meetup
London MuleSoft Meetup Akshata Sawant
 
Zero Trust Security - Updated
Zero Trust Security - UpdatedZero Trust Security - Updated
Zero Trust Security - UpdatedAkshata Sawant
 
Mumbai MuleSoft Meetup #22.pptx
Mumbai MuleSoft Meetup #22.pptxMumbai MuleSoft Meetup #22.pptx
Mumbai MuleSoft Meetup #22.pptxAkshata Sawant
 
Mumbai MuleSoft Meetup #21
Mumbai MuleSoft Meetup #21Mumbai MuleSoft Meetup #21
Mumbai MuleSoft Meetup #21Akshata Sawant
 
Manchester MuleSoft Meetup #8 - 28 Sept.pptx
Manchester MuleSoft Meetup #8 - 28 Sept.pptxManchester MuleSoft Meetup #8 - 28 Sept.pptx
Manchester MuleSoft Meetup #8 - 28 Sept.pptxAkshata Sawant
 
London MuleSoft Meetup 15 Sept
London MuleSoft Meetup 15 SeptLondon MuleSoft Meetup 15 Sept
London MuleSoft Meetup 15 SeptAkshata Sawant
 
Manchester MuleSoft Meetup #7
Manchester MuleSoft Meetup #7 Manchester MuleSoft Meetup #7
Manchester MuleSoft Meetup #7 Akshata Sawant
 
Zero Trust Security in practice.pptx
Zero Trust Security in practice.pptxZero Trust Security in practice.pptx
Zero Trust Security in practice.pptxAkshata Sawant
 
Mumbai MuleSoft Meetup #20
Mumbai MuleSoft Meetup #20Mumbai MuleSoft Meetup #20
Mumbai MuleSoft Meetup #20Akshata Sawant
 
Power of Einstein Analytics - Salesforce + Mulesoft
Power of Einstein Analytics - Salesforce + Mulesoft Power of Einstein Analytics - Salesforce + Mulesoft
Power of Einstein Analytics - Salesforce + Mulesoft Akshata Sawant
 
Mumbai MuleSoft Meetup #19 - Anypoint monitoring and MQ Integrations
Mumbai MuleSoft Meetup #19 - Anypoint monitoring and MQ IntegrationsMumbai MuleSoft Meetup #19 - Anypoint monitoring and MQ Integrations
Mumbai MuleSoft Meetup #19 - Anypoint monitoring and MQ IntegrationsAkshata Sawant
 
Mumbai MuleSoft Meetup #18
Mumbai MuleSoft Meetup #18Mumbai MuleSoft Meetup #18
Mumbai MuleSoft Meetup #18Akshata Sawant
 
Mumbai MuleSoft Meetup #17 - GraphQL
Mumbai MuleSoft Meetup #17 - GraphQLMumbai MuleSoft Meetup #17 - GraphQL
Mumbai MuleSoft Meetup #17 - GraphQLAkshata Sawant
 
Mumbai MuleSoft Meetup #15
Mumbai MuleSoft Meetup #15Mumbai MuleSoft Meetup #15
Mumbai MuleSoft Meetup #15Akshata Sawant
 
Mumbai MuleSoft Meetup 13
Mumbai MuleSoft Meetup 13Mumbai MuleSoft Meetup 13
Mumbai MuleSoft Meetup 13Akshata Sawant
 
Mumbai MuleSoft Meetup 12
Mumbai MuleSoft Meetup 12Mumbai MuleSoft Meetup 12
Mumbai MuleSoft Meetup 12Akshata Sawant
 
Mumbai MuleSoft Meetup 11
Mumbai MuleSoft Meetup 11Mumbai MuleSoft Meetup 11
Mumbai MuleSoft Meetup 11Akshata Sawant
 
Meet up slides_mumbai_05022020_final
Meet up slides_mumbai_05022020_finalMeet up slides_mumbai_05022020_final
Meet up slides_mumbai_05022020_finalAkshata Sawant
 
Meet up slides_mumbai_21032020_final
Meet up slides_mumbai_21032020_finalMeet up slides_mumbai_21032020_final
Meet up slides_mumbai_21032020_finalAkshata Sawant
 

Mehr von Akshata Sawant (20)

Anypoint Tools and MuleSoft Automation (DRAFT).pptx
Anypoint Tools and MuleSoft Automation (DRAFT).pptxAnypoint Tools and MuleSoft Automation (DRAFT).pptx
Anypoint Tools and MuleSoft Automation (DRAFT).pptx
 
London MuleSoft Meetup
London MuleSoft Meetup London MuleSoft Meetup
London MuleSoft Meetup
 
Zero Trust Security - Updated
Zero Trust Security - UpdatedZero Trust Security - Updated
Zero Trust Security - Updated
 
Mumbai MuleSoft Meetup #22.pptx
Mumbai MuleSoft Meetup #22.pptxMumbai MuleSoft Meetup #22.pptx
Mumbai MuleSoft Meetup #22.pptx
 
Mumbai MuleSoft Meetup #21
Mumbai MuleSoft Meetup #21Mumbai MuleSoft Meetup #21
Mumbai MuleSoft Meetup #21
 
Manchester MuleSoft Meetup #8 - 28 Sept.pptx
Manchester MuleSoft Meetup #8 - 28 Sept.pptxManchester MuleSoft Meetup #8 - 28 Sept.pptx
Manchester MuleSoft Meetup #8 - 28 Sept.pptx
 
London MuleSoft Meetup 15 Sept
London MuleSoft Meetup 15 SeptLondon MuleSoft Meetup 15 Sept
London MuleSoft Meetup 15 Sept
 
Manchester MuleSoft Meetup #7
Manchester MuleSoft Meetup #7 Manchester MuleSoft Meetup #7
Manchester MuleSoft Meetup #7
 
Zero Trust Security in practice.pptx
Zero Trust Security in practice.pptxZero Trust Security in practice.pptx
Zero Trust Security in practice.pptx
 
Mumbai MuleSoft Meetup #20
Mumbai MuleSoft Meetup #20Mumbai MuleSoft Meetup #20
Mumbai MuleSoft Meetup #20
 
Power of Einstein Analytics - Salesforce + Mulesoft
Power of Einstein Analytics - Salesforce + Mulesoft Power of Einstein Analytics - Salesforce + Mulesoft
Power of Einstein Analytics - Salesforce + Mulesoft
 
Mumbai MuleSoft Meetup #19 - Anypoint monitoring and MQ Integrations
Mumbai MuleSoft Meetup #19 - Anypoint monitoring and MQ IntegrationsMumbai MuleSoft Meetup #19 - Anypoint monitoring and MQ Integrations
Mumbai MuleSoft Meetup #19 - Anypoint monitoring and MQ Integrations
 
Mumbai MuleSoft Meetup #18
Mumbai MuleSoft Meetup #18Mumbai MuleSoft Meetup #18
Mumbai MuleSoft Meetup #18
 
Mumbai MuleSoft Meetup #17 - GraphQL
Mumbai MuleSoft Meetup #17 - GraphQLMumbai MuleSoft Meetup #17 - GraphQL
Mumbai MuleSoft Meetup #17 - GraphQL
 
Mumbai MuleSoft Meetup #15
Mumbai MuleSoft Meetup #15Mumbai MuleSoft Meetup #15
Mumbai MuleSoft Meetup #15
 
Mumbai MuleSoft Meetup 13
Mumbai MuleSoft Meetup 13Mumbai MuleSoft Meetup 13
Mumbai MuleSoft Meetup 13
 
Mumbai MuleSoft Meetup 12
Mumbai MuleSoft Meetup 12Mumbai MuleSoft Meetup 12
Mumbai MuleSoft Meetup 12
 
Mumbai MuleSoft Meetup 11
Mumbai MuleSoft Meetup 11Mumbai MuleSoft Meetup 11
Mumbai MuleSoft Meetup 11
 
Meet up slides_mumbai_05022020_final
Meet up slides_mumbai_05022020_finalMeet up slides_mumbai_05022020_final
Meet up slides_mumbai_05022020_final
 
Meet up slides_mumbai_21032020_final
Meet up slides_mumbai_21032020_finalMeet up slides_mumbai_21032020_final
Meet up slides_mumbai_21032020_final
 

Kürzlich hochgeladen

WomenInAutomation2024: AI and Automation for eveyone
WomenInAutomation2024: AI and Automation for eveyoneWomenInAutomation2024: AI and Automation for eveyone
WomenInAutomation2024: AI and Automation for eveyoneUiPathCommunity
 
2024 April Patch Tuesday
2024 April Patch Tuesday2024 April Patch Tuesday
2024 April Patch TuesdayIvanti
 
Accelerating Enterprise Software Engineering with Platformless
Accelerating Enterprise Software Engineering with PlatformlessAccelerating Enterprise Software Engineering with Platformless
Accelerating Enterprise Software Engineering with PlatformlessWSO2
 
Transcript: New from BookNet Canada for 2024: BNC SalesData and LibraryData -...
Transcript: New from BookNet Canada for 2024: BNC SalesData and LibraryData -...Transcript: New from BookNet Canada for 2024: BNC SalesData and LibraryData -...
Transcript: New from BookNet Canada for 2024: BNC SalesData and LibraryData -...BookNet Canada
 
Glenn Lazarus- Why Your Observability Strategy Needs Security Observability
Glenn Lazarus- Why Your Observability Strategy Needs Security ObservabilityGlenn Lazarus- Why Your Observability Strategy Needs Security Observability
Glenn Lazarus- Why Your Observability Strategy Needs Security Observabilityitnewsafrica
 
Unleashing Real-time Insights with ClickHouse_ Navigating the Landscape in 20...
Unleashing Real-time Insights with ClickHouse_ Navigating the Landscape in 20...Unleashing Real-time Insights with ClickHouse_ Navigating the Landscape in 20...
Unleashing Real-time Insights with ClickHouse_ Navigating the Landscape in 20...Alkin Tezuysal
 
Arizona Broadband Policy Past, Present, and Future Presentation 3/25/24
Arizona Broadband Policy Past, Present, and Future Presentation 3/25/24Arizona Broadband Policy Past, Present, and Future Presentation 3/25/24
Arizona Broadband Policy Past, Present, and Future Presentation 3/25/24Mark Goldstein
 
Landscape Catalogue 2024 Australia-1.pdf
Landscape Catalogue 2024 Australia-1.pdfLandscape Catalogue 2024 Australia-1.pdf
Landscape Catalogue 2024 Australia-1.pdfAarwolf Industries LLC
 
A Glance At The Java Performance Toolbox
A Glance At The Java Performance ToolboxA Glance At The Java Performance Toolbox
A Glance At The Java Performance ToolboxAna-Maria Mihalceanu
 
The Future Roadmap for the Composable Data Stack - Wes McKinney - Data Counci...
The Future Roadmap for the Composable Data Stack - Wes McKinney - Data Counci...The Future Roadmap for the Composable Data Stack - Wes McKinney - Data Counci...
The Future Roadmap for the Composable Data Stack - Wes McKinney - Data Counci...Wes McKinney
 
Email Marketing Automation for Bonterra Impact Management (fka Social Solutio...
Email Marketing Automation for Bonterra Impact Management (fka Social Solutio...Email Marketing Automation for Bonterra Impact Management (fka Social Solutio...
Email Marketing Automation for Bonterra Impact Management (fka Social Solutio...Jeffrey Haguewood
 
Design pattern talk by Kaya Weers - 2024 (v2)
Design pattern talk by Kaya Weers - 2024 (v2)Design pattern talk by Kaya Weers - 2024 (v2)
Design pattern talk by Kaya Weers - 2024 (v2)Kaya Weers
 
Microservices, Docker deploy and Microservices source code in C#
Microservices, Docker deploy and Microservices source code in C#Microservices, Docker deploy and Microservices source code in C#
Microservices, Docker deploy and Microservices source code in C#Karmanjay Verma
 
Varsha Sewlal- Cyber Attacks on Critical Critical Infrastructure
Varsha Sewlal- Cyber Attacks on Critical Critical InfrastructureVarsha Sewlal- Cyber Attacks on Critical Critical Infrastructure
Varsha Sewlal- Cyber Attacks on Critical Critical Infrastructureitnewsafrica
 
[Webinar] SpiraTest - Setting New Standards in Quality Assurance
[Webinar] SpiraTest - Setting New Standards in Quality Assurance[Webinar] SpiraTest - Setting New Standards in Quality Assurance
[Webinar] SpiraTest - Setting New Standards in Quality AssuranceInflectra
 
Generative AI - Gitex v1Generative AI - Gitex v1.pptx
Generative AI - Gitex v1Generative AI - Gitex v1.pptxGenerative AI - Gitex v1Generative AI - Gitex v1.pptx
Generative AI - Gitex v1Generative AI - Gitex v1.pptxfnnc6jmgwh
 
QMMS Lesson 2 - Using MS Excel Formula.pdf
QMMS Lesson 2 - Using MS Excel Formula.pdfQMMS Lesson 2 - Using MS Excel Formula.pdf
QMMS Lesson 2 - Using MS Excel Formula.pdfROWELL MARQUINA
 
Microsoft 365 Copilot: How to boost your productivity with AI – Part one: Ado...
Microsoft 365 Copilot: How to boost your productivity with AI – Part one: Ado...Microsoft 365 Copilot: How to boost your productivity with AI – Part one: Ado...
Microsoft 365 Copilot: How to boost your productivity with AI – Part one: Ado...Nikki Chapple
 
React JS; all concepts. Contains React Features, JSX, functional & Class comp...
React JS; all concepts. Contains React Features, JSX, functional & Class comp...React JS; all concepts. Contains React Features, JSX, functional & Class comp...
React JS; all concepts. Contains React Features, JSX, functional & Class comp...Karmanjay Verma
 
Digital Tools & AI in Career Development
Digital Tools & AI in Career DevelopmentDigital Tools & AI in Career Development
Digital Tools & AI in Career DevelopmentMahmoud Rabie
 

Kürzlich hochgeladen (20)

WomenInAutomation2024: AI and Automation for eveyone
WomenInAutomation2024: AI and Automation for eveyoneWomenInAutomation2024: AI and Automation for eveyone
WomenInAutomation2024: AI and Automation for eveyone
 
2024 April Patch Tuesday
2024 April Patch Tuesday2024 April Patch Tuesday
2024 April Patch Tuesday
 
Accelerating Enterprise Software Engineering with Platformless
Accelerating Enterprise Software Engineering with PlatformlessAccelerating Enterprise Software Engineering with Platformless
Accelerating Enterprise Software Engineering with Platformless
 
Transcript: New from BookNet Canada for 2024: BNC SalesData and LibraryData -...
Transcript: New from BookNet Canada for 2024: BNC SalesData and LibraryData -...Transcript: New from BookNet Canada for 2024: BNC SalesData and LibraryData -...
Transcript: New from BookNet Canada for 2024: BNC SalesData and LibraryData -...
 
Glenn Lazarus- Why Your Observability Strategy Needs Security Observability
Glenn Lazarus- Why Your Observability Strategy Needs Security ObservabilityGlenn Lazarus- Why Your Observability Strategy Needs Security Observability
Glenn Lazarus- Why Your Observability Strategy Needs Security Observability
 
Unleashing Real-time Insights with ClickHouse_ Navigating the Landscape in 20...
Unleashing Real-time Insights with ClickHouse_ Navigating the Landscape in 20...Unleashing Real-time Insights with ClickHouse_ Navigating the Landscape in 20...
Unleashing Real-time Insights with ClickHouse_ Navigating the Landscape in 20...
 
Arizona Broadband Policy Past, Present, and Future Presentation 3/25/24
Arizona Broadband Policy Past, Present, and Future Presentation 3/25/24Arizona Broadband Policy Past, Present, and Future Presentation 3/25/24
Arizona Broadband Policy Past, Present, and Future Presentation 3/25/24
 
Landscape Catalogue 2024 Australia-1.pdf
Landscape Catalogue 2024 Australia-1.pdfLandscape Catalogue 2024 Australia-1.pdf
Landscape Catalogue 2024 Australia-1.pdf
 
A Glance At The Java Performance Toolbox
A Glance At The Java Performance ToolboxA Glance At The Java Performance Toolbox
A Glance At The Java Performance Toolbox
 
The Future Roadmap for the Composable Data Stack - Wes McKinney - Data Counci...
The Future Roadmap for the Composable Data Stack - Wes McKinney - Data Counci...The Future Roadmap for the Composable Data Stack - Wes McKinney - Data Counci...
The Future Roadmap for the Composable Data Stack - Wes McKinney - Data Counci...
 
Email Marketing Automation for Bonterra Impact Management (fka Social Solutio...
Email Marketing Automation for Bonterra Impact Management (fka Social Solutio...Email Marketing Automation for Bonterra Impact Management (fka Social Solutio...
Email Marketing Automation for Bonterra Impact Management (fka Social Solutio...
 
Design pattern talk by Kaya Weers - 2024 (v2)
Design pattern talk by Kaya Weers - 2024 (v2)Design pattern talk by Kaya Weers - 2024 (v2)
Design pattern talk by Kaya Weers - 2024 (v2)
 
Microservices, Docker deploy and Microservices source code in C#
Microservices, Docker deploy and Microservices source code in C#Microservices, Docker deploy and Microservices source code in C#
Microservices, Docker deploy and Microservices source code in C#
 
Varsha Sewlal- Cyber Attacks on Critical Critical Infrastructure
Varsha Sewlal- Cyber Attacks on Critical Critical InfrastructureVarsha Sewlal- Cyber Attacks on Critical Critical Infrastructure
Varsha Sewlal- Cyber Attacks on Critical Critical Infrastructure
 
[Webinar] SpiraTest - Setting New Standards in Quality Assurance
[Webinar] SpiraTest - Setting New Standards in Quality Assurance[Webinar] SpiraTest - Setting New Standards in Quality Assurance
[Webinar] SpiraTest - Setting New Standards in Quality Assurance
 
Generative AI - Gitex v1Generative AI - Gitex v1.pptx
Generative AI - Gitex v1Generative AI - Gitex v1.pptxGenerative AI - Gitex v1Generative AI - Gitex v1.pptx
Generative AI - Gitex v1Generative AI - Gitex v1.pptx
 
QMMS Lesson 2 - Using MS Excel Formula.pdf
QMMS Lesson 2 - Using MS Excel Formula.pdfQMMS Lesson 2 - Using MS Excel Formula.pdf
QMMS Lesson 2 - Using MS Excel Formula.pdf
 
Microsoft 365 Copilot: How to boost your productivity with AI – Part one: Ado...
Microsoft 365 Copilot: How to boost your productivity with AI – Part one: Ado...Microsoft 365 Copilot: How to boost your productivity with AI – Part one: Ado...
Microsoft 365 Copilot: How to boost your productivity with AI – Part one: Ado...
 
React JS; all concepts. Contains React Features, JSX, functional & Class comp...
React JS; all concepts. Contains React Features, JSX, functional & Class comp...React JS; all concepts. Contains React Features, JSX, functional & Class comp...
React JS; all concepts. Contains React Features, JSX, functional & Class comp...
 
Digital Tools & AI in Career Development
Digital Tools & AI in Career DevelopmentDigital Tools & AI in Career Development
Digital Tools & AI in Career Development
 

Manchester MuleSoft Meetup #6 - Runtime Fabric with Mulesoft

  • 1. 22nd October 2021 Manchester MuleSoft Meetup Group RTF Architecture
  • 2. Guidelines for Manchester MuleSoft Meetup #6 [Virtual] ● Welcome to Manchester MuleSoft Meetup! We will start our introduction session at 5 pm IST. ● If any issues with audio/video or Bevy, write down your registered name in chat section so that we can provide you audio/video access in Bevy. ● Please keep yourself muted unless you have any question. ● We encourage keeping your video on for making our meetup interactive. ● You'll can also write down your questions in chat section. ● We appreciate your valuable feedback. Thanks. 2
  • 3. 3 ● Introductions ● RTF Architecture ● Trivia Quiz ● Networking time Agenda
  • 4. 4 ●About the organizer: ○ Terry Lockwood ○ Akshata Sawant ●About the sponsor: ○ MuleSoft Introductions A SHOW OF HANDS: Who is new to this Meetup?
  • 6. Latest Releases/News ● Event-Driven API (AsyncAPI) https://docs.mulesoft.com/release- notes/platform/event-driven-api ● Participate in MuleSoft Hackathon 2021 https://blogs.mulesoft.com/dev-guides/mulesoft- hackathon-2021/ 6
  • 7. Latest Releases/News ● Become a leading community mentor - https://tinyurl.com/sv4rupew ● The calendar subscription link for Mulesoft meetups: https://calendar.google.com/calendar/ical/idc4qavc8b81c9oop81obr s27k%40group.calendar.google.com/public/basic.ics 7
  • 9. Agenda ● MuleSoft deployment strategies ● Runtime fabric operating models ● RTF on self-managed Kubernetes architecture ● RTF advanced concepts ● RTF logging and monitoring ● RTF components
  • 11. Runtime plane Vs Control plane
  • 16. RTF operating models - on VMs or bare metal ● Cloud infrastructure provided by customer ● Support for AWS, Azure, or on-prem ● *No need for Kubernetes expertise It contains all of the components it requires. These components, including Docker and Kubernetes, are optimized to work efficiently with Mule runtimes and other MuleSoft services.
  • 17. RTF operating models - on self-managed Kubernetes • Install Runtime Fabric services in managed Kubernetes solutions (EKS, AKS, or GKE) • Provide and manage your own Kubernetes cluster • More flexibility, cheaper, and less overhead • Kubernetes expertise required
  • 18. RTF operating models - on self-managed Kubernetes Shared responsibility model • Mulesoft provides support for • Runtime Fabric components • Mule Runtime server • Mule deployment resources • Kubernetes Administrator responsible for • Creating, configuring, and managing EKS, AKS, and GKE • Ingress controller • Logs and metrics • Container runtime and networking
  • 19. Runtime Fabric operating models comparison Capabilities Runtime Fabric on Self-Managed Kubernetes Runtime Fabric on VMs or bare metal Kubernetes and Docker Provision your own EKS/AKS/GKE cluster MuleSoft supplies Docker images Included Linux distribution Support for all versions RHEL and CentOS only Node autoscaling Autoscaling supported using Azure, AWS, or GCP settings Not Supported External log forwarding Provision your own log forwarder Included Internal load balancer Set up your own Ingress Included Anypoint Security Edge Not Supported Supported Ops Center Enable similar monitoring and alerting from AWS/Azure/GCP console Included
  • 20. The Big Picture Dockerize App Your App Docker Image Repository Docker Hub Elastic Container Registry (ECR) Deploy Into Amazon EKS Google Kubernetes Engine K8s Cluster K8s on EC2 …….. Any other K8s Cluster Implementation Dockerfile Container Exchange rtf-runtime-registry.kprod.msap.io
  • 24. Who Manages Nodes? Control Plane manages, monitors, plans, schedules nodes Worker Nodes host Containers
  • 25. Control Plane Components Control Plane manages, monitors, plans, schedules nodes Worker Nodes host Containers Key Value Store for critical cluster info Puts containers to proper nodes Ensures proper state of cluster components
  • 26. Kubernetes Cluster State X Desired State: 3 Nodes Current State: 2 Nodes c-m brings one node up so current state = desired state
  • 27. Who Specifies State? Desired State: 6 Containers Current State: 0 Containers YOU Manifest File Run 6 copies of an container image
  • 28. Who Specifies State? Desired State: 6 Containers Current State: 6 Containers YOU Manifest File Run 6 copies of an container image
  • 29. Gateway to Control Plane Desired State Vs Current State YOU Manifest File Do this on the cluster Exposes Kubernetes API
  • 30. Kubernetes Architecture Control Plane manages, monitors, plans, schedules nodes Worker Nodes host Containers Key Value Store for critical cluster info Puts containers to proper nodes Ensures proper state of cluster components Exposes Kubernetes API
  • 31. What’s In Node? Container Runtime Engine Docker, Containerd, CRI-O, frakti
  • 32. Control Plane - Node Communication Control Plane manages, monitors, plans, schedules nodes Status of the node and containers to Control Plane <aws-node>
  • 33. Container-Container Communication Control Plane manages, monitors, plans, schedules nodes Status of the node and containers to Control Plane <aws-node> Allows network communications <kube-proxy>
  • 34. Putting it All Together Control Plane manages, monitors, plans, schedules nodes Status of the node and containers to Control Plane <aws-node> Allows network communications <kube-proxy> Key Value Store for critical cluster info Puts containers to proper nodes Ensures proper state of cluster components Exposes Kubernetes API Container Runtime Container Runtime Container Runtime
  • 35. Sizing Exercise How many pods?? Ng-1 Ng-2 T3.micro T3.micro T3.small
  • 36. Sizing Exercise - solution Ng-1 Ng-2 T3.micro T3.micro T3.small T3.micro: Max ENI=2, Max IP4=2 , total pods = 2*(2- 1)+2=4*2=8 T3.small: Max ENI=3, Max IP4=4, total pods =3*(4-1)+2=11 Each Node: 1 proxy and 1 aws-node, total =3*2=6 dns service: 2 for HA total pods=(8+11)-6-2=11 # of ENI * (# of IPv4 per ENI - 1) + 2 https://github.com/awslabs/amazon-eks-ami/blob/master/files/eni-max-pods.txt
  • 37. RTF Resource allocation limitations Resource Limitation Nodes 30 max Node types VM based required (e.g., not Fargate) Replicas per node 20 to 25 per core, up to 40 per node. Associated environment per Runtime Fabric instance 50 max environments Business groups 50 max Runtime Fabric instances per business group
  • 38. RTF Pods • Docker image containing – Base Linux operating system – Java Virtual Machine – Mule runtime • Container image cannot be customized, not possible to deploy other Docker containers • No mountable volumes, not directly accessible • CPU Footprint between 20mCPU to 50mCPU to sample apps container, 50mCPU for monitoring container (streams application metrics to the control plane and cannot be disabled) • Memory allocation: 700Mi for mule4, 500Mi for mule3 + 50Mi for monitoring container
  • 39. Putting it All Together Control Plane manages, monitors, plans, schedules nodes Key Value Store for critical cluster info Puts containers to proper nodes Ensures proper state of cluster components Exposes Kubernetes API Container Runtime Container Runtime Container Runtime Forward logs to log aggregator (200mCPU, 200Mi) Communicate with control plane (100mCPU, 200Mi) Mule-clusterip-service (50mCPU, 100Mi) resource-cache (100mCPU,50Mi)
  • 40. RTF Performance and Startup vCPU Cores Concurrent Connections Avg Response Time (ms) 1.00 10 15 0.50 5 15 0.10 1 25 0.07 1 78 vCPU Cores Approximate Startup Time 1.00 Less than 1 minute 0.50 Under 2 minutes 0.10 6 to 8 minutes 0.07 10 to 14 minutes Run performance and load testing on your Mule applications to determine the number of resources to allocate.
  • 41. RTF Installation Steps 1. Create a Runtime Fabric configuration from Anypoint Runtime Manager 2. Install Runtime Fabric on a provisioned EKS Kubernetes cluster using rtfctl install 3. Verify the progress and results rtfctl status 4. Install the license using rtfctl apply mule- license
  • 43. Life Of A Simple APP Experience layer Process Layer user-eapi user-eapi 10.16.48.53 10.16.93.80 user-papi 10.18.32.61 user-papi 10.18.16.23 10.16.10.01 10.18.10.21 System Layer 10.20.10.20 sf-sapi 10.20.10.61 sf-sapi 10.20.10.65 ClusterIP ClusterIP
  • 44. ALB Ingress env:ns app1 Application Load Balancer Path: app1.epam.com Path: app2.epam.com rtf:rtf-ingress env:ns app1 env:ns app2 env:ns app2 ● Anypoint Runtime Fabric for self- managed Kubernetes does not include a built-in load balancer. ● Runtime Fabric on self-managed Kubernetes supports any Ingress controller that is compatible with the Kubernetes service provided by your vendor (EKS, AKS, or GKE) ● An application can be accessed from another application within the same Runtime Fabric cluster, bypassing the Ingress ● For apps running in the same namespace: http(s)://<app name>:8081/api ● For apps running in different namespaces: http(s)://<app name>.<namespace>:8081/ap i https://k8s-rtf1-a88537f113-589639490.us-west-1.elb.amazonaws.com Host: *.epam.com path /*
  • 46. Quiz: What Resources Created? Deployment Replicaset Pod Containers 1 vCPU = 1000m (milicore) pod requesting CPU of 20m (Half of .02 vCPU) and 800 MiB of Memory pod CPU limit 1000m (1 vCPU) and 800 MiB of Memory
  • 48. Horizontal Pod Autoscaler (HPA) Amazon EC2 (m5.large) CPU Traffic CPU Scale pod if pod CPU > 50%
  • 49. Horizontal Pod Autoscaler (HPA) Amazon EC2 (m5.large) CPU CPU Traffic Scale pod if pod CPU > 50%
  • 50. Horizontal Pod Autoscaler (HPA) Amazon EC2 (m5.large) CPU CPU CPU Scale pod if pod CPU > 50% Traffic
  • 51. RTF -HPA • Add/remove resources using Runtime Manager • Add/remove Pods (replicas) using Runtime Manager • Replicas are distributed across the worker nodes for HA • CPU bursting shares CPU cores with other applications, This means performance for one application is influenced by other applications running on the worker node
  • 52. EC2 Scaling Application Load Balancer Auto Scaling Policy: Scale if CPU > 50% (based on CloudWatch Metrics) Auto Scaling Group CPU Amazon EC2 (m5.large) Traffic
  • 53. Application Load Balancer Auto Scaling Policy: Scale if CPU > 50% (based on CloudWatch Metrics) Auto Scaling Group CPU CPU Traffic Amazon EC2 Amazon EC2 (m5.large) (m5.large) EC2 Scaling
  • 54. Autoscaler CPU Traffic Amazon EC2 (m5.large) CPU CPU CPU Amazon EKS Auto Scaling group Amazon EC2 (m5.large) CPU CPU
  • 56. Mule Runtime Cluster Mule runtime clusters are more tightly coupled and are aware of each other • Allows multi-threaded applications that leverage all attached nodes assigned resources
  • 58. EKS Logging ● EKS Control Plane Logging ● EKS Worker Nodes Logging
  • 59. EKS Logging ● EKS Control Plane Logging ○ K8 api ○ audit ○ authenticator ○ controllerManager ○ scheduler ● EKS Worker Nodes Logging
  • 60. EKS Logging ● EKS Control Plane Logging ○ K8 api ○ audit ○ authenticator ○ controllerManager ○ scheduler ● EKS Worker Nodes Logging ○ System logs from kubelet, kube-proxy, or dockerd ○ Application logs from application containers
  • 61. EKS Control Plane Logging ● EKS Control Plane Logging ○ K8s api ○ audit ○ authenticator ○ controllerManager ○ scheduler Amazon CloudWatc h LOGS Stream Amazon Elasticsearch Service
  • 62. Logging Caveat EC2 Amazon Elastic Block Store (EBS) If instance terminated, logs are gone LOGS Logs need to be aggregated in a meaningful way App 1 App 2 App 3
  • 64. RTF Worker Nodes ✔ Mule application generates logging messages using the Log4j framework ✔ Typically stored in per-application log files in $MULE_HOME/logs ✔ Mule runtime logs are stored in a separate log file (mule_ee.log) ✔ Container redirect logs to /var/log/containers/*.log files https://docs.mulesoft.com/runtime-fabric/1.10/runtime-fabric-logs
  • 65. Implementation LOG BACKEND (ES, Splunk, CloudWatch) = Logging agent running as daemon, reading logs from /var/log and sending to logging backend Log-forwarder Log-forwarder Log-forwarder • You can also access logs through Anypoint Monitoring (Titanium customers) • With Anypoint Monitoring or kubectl commands, you can view the logs from a deployed application
  • 66. Implementation = Logging agent running as daemon, reading logs from /var/log and sending to logging backend
  • 67. Agent For Streaming to Multiple Log Backends Amazon Elasticsearch Service etc. Stream Amazon Kinesis Data Firehose
  • 70. Security considerations Security can and should be applied on various levels • Infrastructure: widest range, often cross-domain • Network: transport/protocol security • Operating system: OS users, filesystem privileges • Runtime: hardening a JDK or Mule installation • Applications: such as endpoint security, services, and RBAC • Content: hiding/masking sensitive data
  • 71. RTF Layered security Anypoint Platform (Platform level) API Management (Implementation level) Tokenization (Data level) ● Operations ● Data security ● Passwords and credentials ● Facilities and network ● Secure connectivity ● Data sovereignty ● Third-party authentication ● On-premises security Create new APIs and integrations from prebuilt API security fragments, access patterns, and policies vetted by security experts Secure data in motion across the enterprise with automatic tokenization and encryption and reduce the risk of data breaches
  • 73. Overview ● Provides a mechanism for persisting Object Store entries across Mule applications replicas ● All information is deleted when the application is removed ○ Requires Mule runtimes of version 4.2.1 or later ○ Uses a customer-provided database as data source (PostgreSQL 9 and above) ● Uses Kubernetes secret to store database connection details ● Configured via a Kubernetes custom resource and an opaque secret ● Maximum TTL for data stored is set by default to 30 days
  • 74. DEMO
  • 75.
  • 77. Q1 What's The maximum number of replicas that can be deployed per node in RTF? Options : a. 10 b. 25 c. 30 d. 40
  • 78. Q2 How to use Persistence Gateway in a Mule application deployed on RTF? Options: a. Anypoint Object Store V2 (OSv2) b. CloudHub Object Store V1 c. Mule Object Store d. postgresql Database connector
  • 79. Q3 What's the CPU and memory footprints for monitoring container? Options: a. 50mCPU, 30Mi b. 30mCPU, 50Mi c. 50mCPU, 50Mi d. 20mCPU, 30Mi
  • 80. 80 Nominate yourself for the next meetup speaker and suggest a topic as well. Do share the feedback with us Take a stand!
  • 81. 81 ● Share: ○ Tweet using the hashtag #MuleSoftMeetups ○ Invite your network to join: https://meetups.mulesoft.com/manchester/ ● Feedback: ○ Fill out the survey feedback and suggest topics for upcoming events ○ Contact MuleSoft at meetups@mulesoft.com for ways to improve the program ○ Contact your organizers Terry Lockwood & Akshata Sawant to suggest topics & volunteer as speaker ○ Tweet your organizers at @MuleSoft @MuleDev @sawantakshata02 ○ Telegram: https://t.me/joinchat/Q6y-MgriEqyDicfZV9PIAg What’s next?
  • 82. Introduce yourself to your neighbor Networking time