際際滷

際際滷Share a Scribd company logo
APACHE SLING&FRIENDSTECHMEETUP
2- 4SEPTEMBER 2019
Deep-diveinto cloud-native AEM deployments based on Kubernetes
Tomek Rkawek, Adobe
2
Cloud: whatand why?
Wewanttomovefrom
3
to
4
Cloud:why?
5
 RunningAEM at scale
 Hassle-freedeployments
 The cloud provider (AWS, Azure) should worry about
infrastructure
Agenda
6
 Jobs
 Content migration
 New indexes
 QA
 Docker&Kubernetesintroduction
 Architectureoverview
 Publishpersistence
 Cloud Segment Store
 Golden publish
 Compaction
 Sidecarservices
7
Docker & Kubernetesintroduction
Thepowerofstandardization
8
DockerizedAEM
9
 AEM in Docker image
 Composite Node Store
 /apps& /libs storedin thecontainer
 Actualcontentlives outside,in the VOLUMEorMongoDB
 OSGi Feature Model
 DefinesAEMandcustomerapplication
 Featurelauncherstartsit inside container
 Covered in Karl& Davidspresentation
 SeeadaptTo() 2017 talk for moredetails
Mini intro toKubernetes
10
 Launches Docker containers without worrying about the underlying VMs
 Dictionary
 Poda groupofcontainersstartingtogetheron asingle machine
 Service internalloadbalancer,exposinganumberofpodreplicas underasingle address
 Ingress exposesa service underanpublic httpaddress
 Everyentity is represented by a YAML object in K8s API server
 TheYAML is the desired state, K8s knows how to get there
DeploymentswithHelm
11
 Helm  K8s apps management
 Chart  a bunch of K8s YAML descriptors,
with a simple templating
 Whole AEMdeployment canbe
installed/upgraded with a single command
Image:https://helm.sh
12
Architecture overview
AEMKubernetessetup
13
14
Publishpersistence evolution
Problemdefinition
15
 Author persistence is easy-ish with MongoDB
 Publish is harder local SegmentMK, no clustering
 Thepublish farm is kept up-to-date with replication
 However:
 weneed toprovidethenew publishinstanceswitha segment store,
 copyit fromanotherinstance.
 Problems:
 copyingfiles betweenpodsis hardandhacky,
 whatif theresnopublishto copyfrom?
Cloud SegmentStore
16
 A new plugin for the Segment Node Store
 Nodes are stored in a cloud storage service
 No tar files, raw segments grouped in dirs
 Can be used in RW or RO modes
Goldenpublish
17
 A designated publish instance
 Not connectedto LB
 It maintainsa golden copy of the
segmentstore
 New publish just clone it
Problem:duplicatedbinaries andstartuptime
18
Golden publish
Segment 1
Segment 2
Segment 4
Segment 3
Segment x
Publish 1
Segment 1
Segment 2
Segment 4
Segment 3
Segment y
Publish 2
Segment 1
Segment 2
Segment 4
Segment 3
Segment z
Publish 3 (starting)
Segment 1
Segment 2
Segment 3
Segment 4
 Multiple copies of the same segments 1-4 ($$$)
 Cloning a bucket takes time during the publish start ( )
Optimization:a singlesegmentstore
19
20
Publishpersistence: compaction
Compaction
21
Out-of-bandpublish update
22
 This pattern willbe usefulin many cases
 We may clone thepublish repository,
modify it and re-deploy instanceson
top of it
 Persisted message queuewill apply
missingchanges
23
Sidecar services
Sidecar approach
24
 A single pod can run many containers, sharing their volumes and
localhost interface
 We can use them for the auxiliaryservices (sidecars):
 Dispatcher in the publish pod
 Upload logs to Splunk
 Warmup service
AEMpod withsidecars
25Sidecaricon: Flaticons.com
26
Jobs
Kubernetesjob
27
 Starts a pod
 Meantto perform a specific task and finish
 Unlikethe deployment, which run indefinitely
 Willbe restarted if fails
 Jobs provides a way to interactwiththe deployed AEM
28
Contentmigration
Contentmigration
29
 How to migrate old content to K8s?
 Access problem
 old AEM envs shouldnt have access to the K8s (encapsulation)
 K8s shouldnt be able to access oldAEMs (they can be installed
anywhere)
 Solution:demilitarized zone
2-phasemigration
30
 Phase 1
 Themigrator tool (crx2oak-like jar) is used to
export old AEM content into a cloud storage
service
 Phase 2
 A Kubernetes job is used to apply the migrated
content on the cloud instances
31
Newindexes
Addingnew index
32
 Indexesaretricky
 /oak:index is a part of the mutable content
 But indexdefinitions belongs to the application
 Onlyaddingnew indexesis supported
 Whena new indexis addedin /oak:index,itll haveanextra
useIfExistspropertyreferencing immutable part/apps
 This bounds the index definition tothe application version andDocker
image
 This /appspathhaveto beaddedas well
 /oak:index/my-new-index
 useIfExists: /apps/indexes@v3
 /apps/indexes
 v3: true
Mutable part
Immutable part
Mutablecontent:addingnew index
33
 Indexingjob should be runbefore the actual app deployment
 Thejob will:
1. Look forthe new index defs in /oak:index
2. Perform out of band indexing ofthe content
3. Save the new indexing content tothe production repository
 TheuseIfExists will makesure that the newindexis ignored, untilthe
newimageis installed
 When the new image is deployed, the /apps part will be updated and the
new index will beused
34
Other topics
Relatedtopics
35
 Feature model usage in Docker (covered in Davids and Karlstalk)
 Replication (covered in Timothees talk)
 Monitoring with Prometheus and Grafana
 CI/CD pipeline
 Network policies
36
Thanks!

More Related Content

Similar to Deep-dive into cloud-native AEM deployments based on Kubernetes (20)

Cloud-native .NET Microservices mit Kubernetes
Cloud-native .NET Microservices mit KubernetesCloud-native .NET Microservices mit Kubernetes
Cloud-native .NET Microservices mit Kubernetes
QAware GmbH
CD in kubernetes using helm and ksonnet. Stas Kolenkin
CD in kubernetes using helm and ksonnet. Stas KolenkinCD in kubernetes using helm and ksonnet. Stas Kolenkin
CD in kubernetes using helm and ksonnet. Stas Kolenkin
DataArt
Dev opsec dockerimage_patch_n_lifecyclemanagement_
Dev opsec dockerimage_patch_n_lifecyclemanagement_Dev opsec dockerimage_patch_n_lifecyclemanagement_
Dev opsec dockerimage_patch_n_lifecyclemanagement_
kanedafromparis
A Hitchhikers Guide to the Cloud Native Stack. #CDS17
A Hitchhikers Guide to the Cloud Native Stack. #CDS17A Hitchhikers Guide to the Cloud Native Stack. #CDS17
A Hitchhikers Guide to the Cloud Native Stack. #CDS17
Mario-Leander Reimer
A hitchhikers guide to the cloud native stack
A hitchhikers guide to the cloud native stackA hitchhikers guide to the cloud native stack
A hitchhikers guide to the cloud native stack
QAware GmbH
Docker, cornerstone of an hybrid cloud?
Docker, cornerstone of an hybrid cloud?Docker, cornerstone of an hybrid cloud?
Docker, cornerstone of an hybrid cloud?
Adrien Blind
Experiences with AWS immutable deploys and job processing
Experiences with AWS immutable deploys and job processingExperiences with AWS immutable deploys and job processing
Experiences with AWS immutable deploys and job processing
Docker, Inc.
Dessi docker kubernetes paas cloud
Dessi docker kubernetes paas cloudDessi docker kubernetes paas cloud
Dessi docker kubernetes paas cloud
Massimiliano Dess狸
Come costruire una Platform As A Service con Docker, Kubernetes Go e Java
Come costruire una Platform As A Service con Docker, Kubernetes Go e JavaCome costruire una Platform As A Service con Docker, Kubernetes Go e Java
Come costruire una Platform As A Service con Docker, Kubernetes Go e Java
Codemotion
IBM MQ in containers MQTC 2017
IBM MQ in containers MQTC 2017IBM MQ in containers MQTC 2017
IBM MQ in containers MQTC 2017
Robert Parker
Api Versioning with Docker and Nginx
Api Versioning with Docker and NginxApi Versioning with Docker and Nginx
Api Versioning with Docker and Nginx
tech.kartenmacherei
Real-World Docker: 10 Things We've Learned
Real-World Docker: 10 Things We've Learned  Real-World Docker: 10 Things We've Learned
Real-World Docker: 10 Things We've Learned
RightScale
Docker, cornerstone of cloud hybridation ? [Cloud Expo Europe 2016]
Docker, cornerstone of cloud hybridation ? [Cloud Expo Europe 2016]Docker, cornerstone of cloud hybridation ? [Cloud Expo Europe 2016]
Docker, cornerstone of cloud hybridation ? [Cloud Expo Europe 2016]
Adrien Blind
20220406 - SDAN_Presentation1_SDANOverview.pdf
20220406 - SDAN_Presentation1_SDANOverview.pdf20220406 - SDAN_Presentation1_SDANOverview.pdf
20220406 - SDAN_Presentation1_SDANOverview.pdf
ssuser34f58c1
How to Structure Your K8s GitOps Repository at Scale by Erik Berdonces - DevO...
How to Structure Your K8s GitOps Repository at Scale by Erik Berdonces - DevO...How to Structure Your K8s GitOps Repository at Scale by Erik Berdonces - DevO...
How to Structure Your K8s GitOps Repository at Scale by Erik Berdonces - DevO...
devopsbcnmeetup
Api versioning w_docker_and_nginx
Api versioning w_docker_and_nginxApi versioning w_docker_and_nginx
Api versioning w_docker_and_nginx
Lee Wilkins
Cloud orchestration risks
Cloud orchestration risksCloud orchestration risks
Cloud orchestration risks
Glib Pakharenko
Cloud Run - the rise of serverless and containerization
Cloud Run - the rise of serverless and containerizationCloud Run - the rise of serverless and containerization
Cloud Run - the rise of serverless and containerization
M叩rton Kodok
TDC2017 | S達o Paulo - Trilha Cloud Computing How we figured out we had a SRE ...
TDC2017 | S達o Paulo - Trilha Cloud Computing How we figured out we had a SRE ...TDC2017 | S達o Paulo - Trilha Cloud Computing How we figured out we had a SRE ...
TDC2017 | S達o Paulo - Trilha Cloud Computing How we figured out we had a SRE ...
tdc-globalcode
Digital Forensics and Incident Response in The Cloud Part 3
Digital Forensics and Incident Response in The Cloud Part 3Digital Forensics and Incident Response in The Cloud Part 3
Digital Forensics and Incident Response in The Cloud Part 3
Velocidex Enterprises
Cloud-native .NET Microservices mit Kubernetes
Cloud-native .NET Microservices mit KubernetesCloud-native .NET Microservices mit Kubernetes
Cloud-native .NET Microservices mit Kubernetes
QAware GmbH
CD in kubernetes using helm and ksonnet. Stas Kolenkin
CD in kubernetes using helm and ksonnet. Stas KolenkinCD in kubernetes using helm and ksonnet. Stas Kolenkin
CD in kubernetes using helm and ksonnet. Stas Kolenkin
DataArt
Dev opsec dockerimage_patch_n_lifecyclemanagement_
Dev opsec dockerimage_patch_n_lifecyclemanagement_Dev opsec dockerimage_patch_n_lifecyclemanagement_
Dev opsec dockerimage_patch_n_lifecyclemanagement_
kanedafromparis
A Hitchhikers Guide to the Cloud Native Stack. #CDS17
A Hitchhikers Guide to the Cloud Native Stack. #CDS17A Hitchhikers Guide to the Cloud Native Stack. #CDS17
A Hitchhikers Guide to the Cloud Native Stack. #CDS17
Mario-Leander Reimer
A hitchhikers guide to the cloud native stack
A hitchhikers guide to the cloud native stackA hitchhikers guide to the cloud native stack
A hitchhikers guide to the cloud native stack
QAware GmbH
Docker, cornerstone of an hybrid cloud?
Docker, cornerstone of an hybrid cloud?Docker, cornerstone of an hybrid cloud?
Docker, cornerstone of an hybrid cloud?
Adrien Blind
Experiences with AWS immutable deploys and job processing
Experiences with AWS immutable deploys and job processingExperiences with AWS immutable deploys and job processing
Experiences with AWS immutable deploys and job processing
Docker, Inc.
Dessi docker kubernetes paas cloud
Dessi docker kubernetes paas cloudDessi docker kubernetes paas cloud
Dessi docker kubernetes paas cloud
Massimiliano Dess狸
Come costruire una Platform As A Service con Docker, Kubernetes Go e Java
Come costruire una Platform As A Service con Docker, Kubernetes Go e JavaCome costruire una Platform As A Service con Docker, Kubernetes Go e Java
Come costruire una Platform As A Service con Docker, Kubernetes Go e Java
Codemotion
IBM MQ in containers MQTC 2017
IBM MQ in containers MQTC 2017IBM MQ in containers MQTC 2017
IBM MQ in containers MQTC 2017
Robert Parker
Api Versioning with Docker and Nginx
Api Versioning with Docker and NginxApi Versioning with Docker and Nginx
Api Versioning with Docker and Nginx
tech.kartenmacherei
Real-World Docker: 10 Things We've Learned
Real-World Docker: 10 Things We've Learned  Real-World Docker: 10 Things We've Learned
Real-World Docker: 10 Things We've Learned
RightScale
Docker, cornerstone of cloud hybridation ? [Cloud Expo Europe 2016]
Docker, cornerstone of cloud hybridation ? [Cloud Expo Europe 2016]Docker, cornerstone of cloud hybridation ? [Cloud Expo Europe 2016]
Docker, cornerstone of cloud hybridation ? [Cloud Expo Europe 2016]
Adrien Blind
20220406 - SDAN_Presentation1_SDANOverview.pdf
20220406 - SDAN_Presentation1_SDANOverview.pdf20220406 - SDAN_Presentation1_SDANOverview.pdf
20220406 - SDAN_Presentation1_SDANOverview.pdf
ssuser34f58c1
How to Structure Your K8s GitOps Repository at Scale by Erik Berdonces - DevO...
How to Structure Your K8s GitOps Repository at Scale by Erik Berdonces - DevO...How to Structure Your K8s GitOps Repository at Scale by Erik Berdonces - DevO...
How to Structure Your K8s GitOps Repository at Scale by Erik Berdonces - DevO...
devopsbcnmeetup
Api versioning w_docker_and_nginx
Api versioning w_docker_and_nginxApi versioning w_docker_and_nginx
Api versioning w_docker_and_nginx
Lee Wilkins
Cloud orchestration risks
Cloud orchestration risksCloud orchestration risks
Cloud orchestration risks
Glib Pakharenko
Cloud Run - the rise of serverless and containerization
Cloud Run - the rise of serverless and containerizationCloud Run - the rise of serverless and containerization
Cloud Run - the rise of serverless and containerization
M叩rton Kodok
TDC2017 | S達o Paulo - Trilha Cloud Computing How we figured out we had a SRE ...
TDC2017 | S達o Paulo - Trilha Cloud Computing How we figured out we had a SRE ...TDC2017 | S達o Paulo - Trilha Cloud Computing How we figured out we had a SRE ...
TDC2017 | S達o Paulo - Trilha Cloud Computing How we figured out we had a SRE ...
tdc-globalcode
Digital Forensics and Incident Response in The Cloud Part 3
Digital Forensics and Incident Response in The Cloud Part 3Digital Forensics and Incident Response in The Cloud Part 3
Digital Forensics and Incident Response in The Cloud Part 3
Velocidex Enterprises

More from Tomasz Rkawek (9)

Radio ad blocker
Radio ad blockerRadio ad blocker
Radio ad blocker
Tomasz Rkawek
Emulating Game Boy in Java
Emulating Game Boy in JavaEmulating Game Boy in Java
Emulating Game Boy in Java
Tomasz Rkawek
Zero downtime deployments for the Sling-based apps using Docker
Zero downtime deployments for the Sling-based apps using DockerZero downtime deployments for the Sling-based apps using Docker
Zero downtime deployments for the Sling-based apps using Docker
Tomasz Rkawek
CRX2Oak - all the secrets of repository migration
CRX2Oak - all the secrets of repository migrationCRX2Oak - all the secrets of repository migration
CRX2Oak - all the secrets of repository migration
Tomasz Rkawek
SlingQuery
SlingQuerySlingQuery
SlingQuery
Tomasz Rkawek
Code metrics
Code metricsCode metrics
Code metrics
Tomasz Rkawek
Inter-Sling communication with message queue
Inter-Sling communication with message queueInter-Sling communication with message queue
Inter-Sling communication with message queue
Tomasz Rkawek
Sling Dynamic Include
Sling Dynamic IncludeSling Dynamic Include
Sling Dynamic Include
Tomasz Rkawek
Shooting rabbits with sling
Shooting rabbits with slingShooting rabbits with sling
Shooting rabbits with sling
Tomasz Rkawek
Emulating Game Boy in Java
Emulating Game Boy in JavaEmulating Game Boy in Java
Emulating Game Boy in Java
Tomasz Rkawek
Zero downtime deployments for the Sling-based apps using Docker
Zero downtime deployments for the Sling-based apps using DockerZero downtime deployments for the Sling-based apps using Docker
Zero downtime deployments for the Sling-based apps using Docker
Tomasz Rkawek
CRX2Oak - all the secrets of repository migration
CRX2Oak - all the secrets of repository migrationCRX2Oak - all the secrets of repository migration
CRX2Oak - all the secrets of repository migration
Tomasz Rkawek
Inter-Sling communication with message queue
Inter-Sling communication with message queueInter-Sling communication with message queue
Inter-Sling communication with message queue
Tomasz Rkawek
Sling Dynamic Include
Sling Dynamic IncludeSling Dynamic Include
Sling Dynamic Include
Tomasz Rkawek
Shooting rabbits with sling
Shooting rabbits with slingShooting rabbits with sling
Shooting rabbits with sling
Tomasz Rkawek

Recently uploaded (20)

EMEA Virtual Marketo User Group - Adobe Summit 2025 Round Up
EMEA Virtual Marketo User Group - Adobe Summit 2025 Round UpEMEA Virtual Marketo User Group - Adobe Summit 2025 Round Up
EMEA Virtual Marketo User Group - Adobe Summit 2025 Round Up
BradBedford3
Rights, Copyrights, and Licences for Software Engineering Research v1.0
Rights, Copyrights, and Licences for Software Engineering Research v1.0Rights, Copyrights, and Licences for Software Engineering Research v1.0
Rights, Copyrights, and Licences for Software Engineering Research v1.0
Yann-Ga谷l Gu辿h辿neuc
Unveiling Extraordinary Software - Shared.pptx
Unveiling Extraordinary Software - Shared.pptxUnveiling Extraordinary Software - Shared.pptx
Unveiling Extraordinary Software - Shared.pptx
Michael Chen
E-Ptw Area Map - TECH EHS Solution
E-Ptw Area Map - TECH EHS Solution E-Ptw Area Map - TECH EHS Solution
E-Ptw Area Map - TECH EHS Solution
TECH EHS Solution
PDF Reader Pro Crack FREE Download Latest Version
PDF Reader Pro Crack FREE Download Latest VersionPDF Reader Pro Crack FREE Download Latest Version
PDF Reader Pro Crack FREE Download Latest Version
waqarcracker5
IObit Driver Booster Pro Serial Key v11.2.0.46 Full Crack 2025
IObit Driver Booster Pro Serial Key v11.2.0.46 Full Crack 2025IObit Driver Booster Pro Serial Key v11.2.0.46 Full Crack 2025
IObit Driver Booster Pro Serial Key v11.2.0.46 Full Crack 2025
alibajava70
Software+Bill+of+Materials+Starter+Guide (1).pdf
Software+Bill+of+Materials+Starter+Guide (1).pdfSoftware+Bill+of+Materials+Starter+Guide (1).pdf
Software+Bill+of+Materials+Starter+Guide (1).pdf
kedofef453
wAIred_VoxxedDaysAmsterdam_03042025.pptx
wAIred_VoxxedDaysAmsterdam_03042025.pptxwAIred_VoxxedDaysAmsterdam_03042025.pptx
wAIred_VoxxedDaysAmsterdam_03042025.pptx
SimonedeGijt
Adobe Illustrator Crack Download (Latest 2025)
Adobe Illustrator Crack Download (Latest 2025)Adobe Illustrator Crack Download (Latest 2025)
Adobe Illustrator Crack Download (Latest 2025)
blouch36kp
Siemens Solid Edge crack + Activation Key Download 2025
Siemens Solid Edge crack + Activation Key Download 2025Siemens Solid Edge crack + Activation Key Download 2025
Siemens Solid Edge crack + Activation Key Download 2025
shahg123tt
Adobe XD Crack Version 2025 Free Download
Adobe XD Crack Version 2025 Free DownloadAdobe XD Crack Version 2025 Free Download
Adobe XD Crack Version 2025 Free Download
basitayoubi105
Brave Browser 1.68.134 Crack free key
Brave  Browser  1.68.134  Crack free keyBrave  Browser  1.68.134  Crack free key
Brave Browser 1.68.134 Crack free key
alihamzakpa037
Wondershare Filmora Crack Free Download 2025
Wondershare Filmora Crack Free Download 2025Wondershare Filmora Crack Free Download 2025
Wondershare Filmora Crack Free Download 2025
ahsan01kp
Adobe Illustrator Crack Download (Latest 2025)
Adobe Illustrator Crack Download (Latest 2025)Adobe Illustrator Crack Download (Latest 2025)
Adobe Illustrator Crack Download (Latest 2025)
basitayoubi007
IBM / MAINFRAME /RACF security-guide_pdf.pdf
IBM / MAINFRAME /RACF security-guide_pdf.pdfIBM / MAINFRAME /RACF security-guide_pdf.pdf
IBM / MAINFRAME /RACF security-guide_pdf.pdf
WILSON990330
Adobe Marketo Engage Champion Deep Dive: Discover the New Email Designer - Ma...
Adobe Marketo Engage Champion Deep Dive: Discover the New Email Designer - Ma...Adobe Marketo Engage Champion Deep Dive: Discover the New Email Designer - Ma...
Adobe Marketo Engage Champion Deep Dive: Discover the New Email Designer - Ma...
BradBedford3
Microsoft Office Crack 2019 Free Download
Microsoft Office Crack 2019 Free DownloadMicrosoft Office Crack 2019 Free Download
Microsoft Office Crack 2019 Free Download
tayab01kp
ESET Smart Security Crack + Activation Key 2025 [Latest]
ESET Smart Security Crack + Activation Key 2025 [Latest]ESET Smart Security Crack + Activation Key 2025 [Latest]
ESET Smart Security Crack + Activation Key 2025 [Latest]
umeerbinfaizan
Wondershare Filmora Crack Free Download 2025
Wondershare Filmora Crack Free Download 2025Wondershare Filmora Crack Free Download 2025
Wondershare Filmora Crack Free Download 2025
tanveerhussainkp027
Evolution and Examples of Java Features, from Java 1.7 to Java 24
Evolution and Examples of Java Features, from Java 1.7 to Java 24Evolution and Examples of Java Features, from Java 1.7 to Java 24
Evolution and Examples of Java Features, from Java 1.7 to Java 24
Yann-Ga谷l Gu辿h辿neuc
EMEA Virtual Marketo User Group - Adobe Summit 2025 Round Up
EMEA Virtual Marketo User Group - Adobe Summit 2025 Round UpEMEA Virtual Marketo User Group - Adobe Summit 2025 Round Up
EMEA Virtual Marketo User Group - Adobe Summit 2025 Round Up
BradBedford3
Rights, Copyrights, and Licences for Software Engineering Research v1.0
Rights, Copyrights, and Licences for Software Engineering Research v1.0Rights, Copyrights, and Licences for Software Engineering Research v1.0
Rights, Copyrights, and Licences for Software Engineering Research v1.0
Yann-Ga谷l Gu辿h辿neuc
Unveiling Extraordinary Software - Shared.pptx
Unveiling Extraordinary Software - Shared.pptxUnveiling Extraordinary Software - Shared.pptx
Unveiling Extraordinary Software - Shared.pptx
Michael Chen
E-Ptw Area Map - TECH EHS Solution
E-Ptw Area Map - TECH EHS Solution E-Ptw Area Map - TECH EHS Solution
E-Ptw Area Map - TECH EHS Solution
TECH EHS Solution
PDF Reader Pro Crack FREE Download Latest Version
PDF Reader Pro Crack FREE Download Latest VersionPDF Reader Pro Crack FREE Download Latest Version
PDF Reader Pro Crack FREE Download Latest Version
waqarcracker5
IObit Driver Booster Pro Serial Key v11.2.0.46 Full Crack 2025
IObit Driver Booster Pro Serial Key v11.2.0.46 Full Crack 2025IObit Driver Booster Pro Serial Key v11.2.0.46 Full Crack 2025
IObit Driver Booster Pro Serial Key v11.2.0.46 Full Crack 2025
alibajava70
Software+Bill+of+Materials+Starter+Guide (1).pdf
Software+Bill+of+Materials+Starter+Guide (1).pdfSoftware+Bill+of+Materials+Starter+Guide (1).pdf
Software+Bill+of+Materials+Starter+Guide (1).pdf
kedofef453
wAIred_VoxxedDaysAmsterdam_03042025.pptx
wAIred_VoxxedDaysAmsterdam_03042025.pptxwAIred_VoxxedDaysAmsterdam_03042025.pptx
wAIred_VoxxedDaysAmsterdam_03042025.pptx
SimonedeGijt
Adobe Illustrator Crack Download (Latest 2025)
Adobe Illustrator Crack Download (Latest 2025)Adobe Illustrator Crack Download (Latest 2025)
Adobe Illustrator Crack Download (Latest 2025)
blouch36kp
Siemens Solid Edge crack + Activation Key Download 2025
Siemens Solid Edge crack + Activation Key Download 2025Siemens Solid Edge crack + Activation Key Download 2025
Siemens Solid Edge crack + Activation Key Download 2025
shahg123tt
Adobe XD Crack Version 2025 Free Download
Adobe XD Crack Version 2025 Free DownloadAdobe XD Crack Version 2025 Free Download
Adobe XD Crack Version 2025 Free Download
basitayoubi105
Brave Browser 1.68.134 Crack free key
Brave  Browser  1.68.134  Crack free keyBrave  Browser  1.68.134  Crack free key
Brave Browser 1.68.134 Crack free key
alihamzakpa037
Wondershare Filmora Crack Free Download 2025
Wondershare Filmora Crack Free Download 2025Wondershare Filmora Crack Free Download 2025
Wondershare Filmora Crack Free Download 2025
ahsan01kp
Adobe Illustrator Crack Download (Latest 2025)
Adobe Illustrator Crack Download (Latest 2025)Adobe Illustrator Crack Download (Latest 2025)
Adobe Illustrator Crack Download (Latest 2025)
basitayoubi007
IBM / MAINFRAME /RACF security-guide_pdf.pdf
IBM / MAINFRAME /RACF security-guide_pdf.pdfIBM / MAINFRAME /RACF security-guide_pdf.pdf
IBM / MAINFRAME /RACF security-guide_pdf.pdf
WILSON990330
Adobe Marketo Engage Champion Deep Dive: Discover the New Email Designer - Ma...
Adobe Marketo Engage Champion Deep Dive: Discover the New Email Designer - Ma...Adobe Marketo Engage Champion Deep Dive: Discover the New Email Designer - Ma...
Adobe Marketo Engage Champion Deep Dive: Discover the New Email Designer - Ma...
BradBedford3
Microsoft Office Crack 2019 Free Download
Microsoft Office Crack 2019 Free DownloadMicrosoft Office Crack 2019 Free Download
Microsoft Office Crack 2019 Free Download
tayab01kp
ESET Smart Security Crack + Activation Key 2025 [Latest]
ESET Smart Security Crack + Activation Key 2025 [Latest]ESET Smart Security Crack + Activation Key 2025 [Latest]
ESET Smart Security Crack + Activation Key 2025 [Latest]
umeerbinfaizan
Wondershare Filmora Crack Free Download 2025
Wondershare Filmora Crack Free Download 2025Wondershare Filmora Crack Free Download 2025
Wondershare Filmora Crack Free Download 2025
tanveerhussainkp027
Evolution and Examples of Java Features, from Java 1.7 to Java 24
Evolution and Examples of Java Features, from Java 1.7 to Java 24Evolution and Examples of Java Features, from Java 1.7 to Java 24
Evolution and Examples of Java Features, from Java 1.7 to Java 24
Yann-Ga谷l Gu辿h辿neuc

Deep-dive into cloud-native AEM deployments based on Kubernetes

  • 1. APACHE SLING&FRIENDSTECHMEETUP 2- 4SEPTEMBER 2019 Deep-diveinto cloud-native AEM deployments based on Kubernetes Tomek Rkawek, Adobe
  • 5. Cloud:why? 5 RunningAEM at scale Hassle-freedeployments The cloud provider (AWS, Azure) should worry about infrastructure
  • 6. Agenda 6 Jobs Content migration New indexes QA Docker&Kubernetesintroduction Architectureoverview Publishpersistence Cloud Segment Store Golden publish Compaction Sidecarservices
  • 9. DockerizedAEM 9 AEM in Docker image Composite Node Store /apps& /libs storedin thecontainer Actualcontentlives outside,in the VOLUMEorMongoDB OSGi Feature Model DefinesAEMandcustomerapplication Featurelauncherstartsit inside container Covered in Karl& Davidspresentation SeeadaptTo() 2017 talk for moredetails
  • 10. Mini intro toKubernetes 10 Launches Docker containers without worrying about the underlying VMs Dictionary Poda groupofcontainersstartingtogetheron asingle machine Service internalloadbalancer,exposinganumberofpodreplicas underasingle address Ingress exposesa service underanpublic httpaddress Everyentity is represented by a YAML object in K8s API server TheYAML is the desired state, K8s knows how to get there
  • 11. DeploymentswithHelm 11 Helm K8s apps management Chart a bunch of K8s YAML descriptors, with a simple templating Whole AEMdeployment canbe installed/upgraded with a single command Image:https://helm.sh
  • 15. Problemdefinition 15 Author persistence is easy-ish with MongoDB Publish is harder local SegmentMK, no clustering Thepublish farm is kept up-to-date with replication However: weneed toprovidethenew publishinstanceswitha segment store, copyit fromanotherinstance. Problems: copyingfiles betweenpodsis hardandhacky, whatif theresnopublishto copyfrom?
  • 16. Cloud SegmentStore 16 A new plugin for the Segment Node Store Nodes are stored in a cloud storage service No tar files, raw segments grouped in dirs Can be used in RW or RO modes
  • 17. Goldenpublish 17 A designated publish instance Not connectedto LB It maintainsa golden copy of the segmentstore New publish just clone it
  • 18. Problem:duplicatedbinaries andstartuptime 18 Golden publish Segment 1 Segment 2 Segment 4 Segment 3 Segment x Publish 1 Segment 1 Segment 2 Segment 4 Segment 3 Segment y Publish 2 Segment 1 Segment 2 Segment 4 Segment 3 Segment z Publish 3 (starting) Segment 1 Segment 2 Segment 3 Segment 4 Multiple copies of the same segments 1-4 ($$$) Cloning a bucket takes time during the publish start ( )
  • 22. Out-of-bandpublish update 22 This pattern willbe usefulin many cases We may clone thepublish repository, modify it and re-deploy instanceson top of it Persisted message queuewill apply missingchanges
  • 24. Sidecar approach 24 A single pod can run many containers, sharing their volumes and localhost interface We can use them for the auxiliaryservices (sidecars): Dispatcher in the publish pod Upload logs to Splunk Warmup service
  • 27. Kubernetesjob 27 Starts a pod Meantto perform a specific task and finish Unlikethe deployment, which run indefinitely Willbe restarted if fails Jobs provides a way to interactwiththe deployed AEM
  • 29. Contentmigration 29 How to migrate old content to K8s? Access problem old AEM envs shouldnt have access to the K8s (encapsulation) K8s shouldnt be able to access oldAEMs (they can be installed anywhere) Solution:demilitarized zone
  • 30. 2-phasemigration 30 Phase 1 Themigrator tool (crx2oak-like jar) is used to export old AEM content into a cloud storage service Phase 2 A Kubernetes job is used to apply the migrated content on the cloud instances
  • 32. Addingnew index 32 Indexesaretricky /oak:index is a part of the mutable content But indexdefinitions belongs to the application Onlyaddingnew indexesis supported Whena new indexis addedin /oak:index,itll haveanextra useIfExistspropertyreferencing immutable part/apps This bounds the index definition tothe application version andDocker image This /appspathhaveto beaddedas well /oak:index/my-new-index useIfExists: /apps/indexes@v3 /apps/indexes v3: true Mutable part Immutable part
  • 33. Mutablecontent:addingnew index 33 Indexingjob should be runbefore the actual app deployment Thejob will: 1. Look forthe new index defs in /oak:index 2. Perform out of band indexing ofthe content 3. Save the new indexing content tothe production repository TheuseIfExists will makesure that the newindexis ignored, untilthe newimageis installed When the new image is deployed, the /apps part will be updated and the new index will beused
  • 35. Relatedtopics 35 Feature model usage in Docker (covered in Davids and Karlstalk) Replication (covered in Timothees talk) Monitoring with Prometheus and Grafana CI/CD pipeline Network policies

Editor's Notes

  • #2: Hello! My name is Tomek Rkawek, I work for Adobe. In this presentation Ill tell you abou the cloud setup for AEM that were workin on. I wont be able to cover any dates, licensing or prices, but Ill show as many technical details as possible, so I hope youll enjoy it.