SlideShare a Scribd company logo
Multi-Cloud Management &
Application Customized Scaling
with CloudFoundry
eting@pivotal.io
Motivation:
Change Capture:
• On Average = 1,500 – 5,500
ops/sec (inserts/updates/deletes)
captured
• Highly variable and bursty
• Real time data flow problem
A few months ago, we built a distributed replication solution for a customer, using
distributed processes that read from queues populated with change capture data
Each Replicator would read from a set of queues, then write data into a in-memory
data grid, while periodically retiring batches of changes into a distributed database
Replicator:
On Average can
handle 1,000+ ops/sec
On average each Replicator can process 1,000+ operations per second and
so to keep up with the change capture process, we would add as many
Replicator processes as needed to support the highest rate observed
Adding Replicators
allows the overall
task to scale
linearly
Distributed Replication
We created a performance dashboard for monitoring of the overall
throughput of the system, as replicators are manually added/removed to
process the changing demands of the system.
Distributed Replication Monitoring
We could not dynamically scale our replication processes
to react fast enough to the demands of the incoming
transactions
We couldn’t take advantage of resources that might be
available from other clusters to scale out the replication
processes
We needed an automated way to monitor whether the
replication processes had reach peak loads so that we can
begin to decide how to add or remove replication
processes that are not needed
We needed a way to allocate resources properly to
processes so as to not to take away resources that can be
used by other processes replicating other parts of the
system
Challenges:
Goals
 Define multi-cloud management and application
customized scaling and how it begins to solve some of
the challenges
 What is CloudF0undry: a PaaS that provides a polyglot
and cloud agnostic environment with application
lifecycle recovery and resource management capabilities
 Demo of Multi-Cloud Management and Custom App
Scaling Prototype
 Discuss the architecture of the MCC and Custom App
Scaling solution using CloudFoundry capabilities and
APIs.
mccController can analyze resources globally, across multiple
clusters managed by a PaaS, to determine where applications
can run or where resource can be adjusted for provide optimal
use of the system
Application #1
PaaS (CloudFoundry)
Multi-Cloud Controller Architecture
mccMonitor
mccController
Application #2 Application #N
Application #1
PaaS (CloudFoundry)
mccMonitor
Application #2 Application #N
mccController tracks the resource utilization of each PaaS that it
manages, and based on the data can provide recommendations
on where to deploy new applications and scale resources
Application #1
PaaS (CloudFoundry)
Multi-Cloud Controller Architecture
mccMonitor
mccController
Application #2 Application #N
Application #1
PaaS (CloudFoundry)
mccMonitor
Application #2 Application #N
Applications periodically reports resource utilization to mccMonitor as
well as changing workload requirements. mccMonitor will manage the
information and report to mccController for workload analysis
Application #1
PaaS (CloudFoundry)
Application #2 Application #N
mccMonitor
mccController
Multi-Cloud Controller Architecture
mccController communicates with mccMonitors periodically while
mccMonitors runs locally on each PaaS to allows application to
communicate workload status as well as scaling requirements.
mccController then communicates with the PaaS (CloudFoundry) to
manage resources of applications and scale the number of
application instances.
Application #1
PaaS (CloudFoundry)
Application #2 Application #N
mccMonitor
mccController
Multi-Cloud Controller Architecture
mccController will communicate with multiple PaaS instances with
different load characteristics, so that it can scale applications and add
or drop app instances as necessary to achieve desired throughput and
balance resource utilization between different PaaS instances.
Application #1
PaaS (CloudFoundry)
Multi-Cloud Controller Architecture
mccMonitor
mccController
Application
#2
Application
#N
Application
#1
PaaS (CloudFoundry)
mccMonitor
Application #2 Application
#N
Application #1
Application #1
Application #2
CloudFoundry: An Operating System for the Cloud
CloudFoundry and Bosh provides an
IaaS Agnostic Infrastructure
+
Bosh manages other distributed processes
besides CloudFoundry, such as Hadoop
CloudFoundry (PaaS) Architecture
Containers
Containers
Containers
Containers
What does CloudFoundry do with an Application ?
Containers
Containers Containers Containers Containers
+
+
Kernel
Containers
CloudFoundry manages the applications placement for
effective scaling , high availability and recovery
Containers
CloudFoundry promotes loose coupling of
applications and services
Containers
Containers
Environment
variables
Provision
Services
CloudFoundry provision
services and make them
available for use to
applications. Applications
access services using
environment variables
configured thru
CloudFoundry
How CloudFoundry enables
the Multi-Cloud Controller Architecture
mccMonitor
mccController
Environment
variables
mccController can (1) deploy
mccMonitor’s to each CloudFoundry
instance, and have applications bind to
the mccMonitor, enabling the
application to communicate
performance metrics, then (2) enable
mccController to dynamically scale
their resources
mccMonitor
Environment
variables
Our Tools: CloudFoundry Client APIs
How can we use these to accomplish what we need ?
 Package: org.cloudfoundry.client.lib
 CloudFoundryClient
 CloudCredentials
 Package: org.cloudfoundry.client.lib.domain
 CloudInfo
 CloudApplication
 CloudService
 ApplicationStats
 InstanceStats
 InstanceInfo
 InstanceState
Demo
Pushing (deploying) Application(s)
Containers
Containers
+
+
CloudFoundryClient client =
new CloudFoundryClient(new CloudCredentials(user, pw),
cfURL, org, space,..); client.login();
List<CloudDomain> domains = client.getDomains();
String appURL = “myApp” + domains(0).getName(); //
myApp.cfapps.io
client.createApplication( “myApp”, new Staging(), memSize,
appURLs, services );
client.uploadApplication( “myApp”, file.getCanonicalPath() );
Pushing (deploying) Application(s)
Containers
Containers
+
+
Create CloudFoundry client object
Assign application name and URL
Upload (push) and start application
Creating Service(s)
Containers
CloudFoundryClient client = new CloudFoundryClient( … );
String appURL = “myApp” + client.getDomains(0).getName(); //
myApp.cfapps.io
CloudService service = new CloudService(metaData, “myService”);
Map<String, Object> credentials = new HashMap<String, Object>();
credentials.put( “myServiceAPI”, appURL );
client.createUserProvidedService( service, credentials );
myApp.cfapps.io
Creating Service(s)
Containers
myApp.cfapps.io
Assign application name and URL
Create Service object
Provide credentials information to allow applications to
use the service
Binding Service(s) to Application(s)
Containers
CloudApplication yourApp = client.getApplication( “yourApp” );
client.bindService( yourApp, “myService” );
client.stopApplication( “yourApp” );
client.startApplication( “yourApp” );
Environment
variables
Containers
Binding Service(s) to Application(s)
Containers
Environment
variables
Containers
Get application object related of the app to be bound
Bind application to service
Stop and Start application
How can Applications find ‘bound’ Services ?
Containers
String myEnv = System.getenv( “VCAP_SERVICES” );
JSONObject obj = JSONValue.parse( myEnv );
JSONArray arrySrv = obj.get( “yourService” );
for( JSONObject srvObj: arrySrv ) {
JSONObject credentials = srvObj.get( “credentials” );
String serviceUrl = credentials.get( “yourServiceAPI” );
Environment
variables
Containers
How can Applications find ‘bound’ Services ?
Containers
Environment
variables
Containers
Get environment variable VCAP_SERVICES
Find the service’s entry and get credentials information
to be used to communicate with the service
How do we gather application statistics ?
CloudFoundryClient client = new
CloudFoundryClient(..);
Map<> env =
client.getApplication().getEnvAsMap();
int instCnt =
client.getApplication().getInstances();
ApplicationStats stats =
client.getApplicationStats(“yourApp”);
for( InstanceStats is : stats.getRecords()) {
InstanceStats.Usage usage =
is.getUsage();
long memuse = usage.getMem();
long cpuuse = usage.getCpu();
long diskuse = usage.getDisk();
long memQuota = is.getMemQuota();
long diskQuota = is.getDiskQuota();
…
}
mccController
How do we gather application statistics ?
mccController
Create CloudFoundry Client Object
Get Application Stats Object
Iterate Applications Instances
Stats object to get memory,
disk, and instance count
information
How do we scale application resources ?
CloudFoundryClient clnt = new
CloudFoundryClient();
clnt.stopApplication(“yourApp”);
clnt.updateApplicationEnv(“yourApp”,
Map<> env);
clnt.updateApplicationMemory(“yourApp”,
newVal);
clnt.updateApplicationDiskQuota(“yourApp”
, nDisk);
clnt.updateApplicationInstances(“yourApp”,
nInstns);
clnt.startApplication(“yourApp”);
mccController
How do we scale application resources ?
mccController
Create CloudFoundry Client Object
Update application memory,
disks, and instances
Stop and Start application
How can we apply these APIs to the
Multi-Cloud Controller Architecture ?
mccMonitor
mccController
Environment
variables
mccMonitor
Environment
variables
Let us deploy the monitor and bind it to applications
running on each CloudFoundry instance
mccMonitor
mccController
Environment
variables
/* Push mccMonitor to CloudFoundry Instances */
pushMccMonitor( cloudFoundryURL );
/* Bind CloudFoundry Applications to MccMonitor */
bindApplicationsToMccMonitor( cloudFoundryURL, MccMonitorUrl );
/* Next Applications will provide workload specfiic statistics to
MccMonitor… */
How do we enable the application to customize its scaling
characteristics ?
mccMonitor
Environment
variables
/* Applications get mccMonitor URL via VCAP environment variable */
mccURL = getMccURL( System.getenv( “VCAP_SERVICES” ) );
/* Application provides known workload thresholds for each instance
to mccURL */
URL( mccURL + “&invokeThreshold=1000&updateThreshold=500” );
/* Application periodically reports accumulated statistics about
specific workloads */
URL( mccURL + “&binc=1&invokeCount=27&updateCount=4” );
App1 :{ invokeCount: 34
invokeThreshold: 1000
updateThreshold: 500 }
Let us follow the protocol between the applications and
mccMonitor
mccMonitor
Environment
variables
/* Applications get mccMonitor URL via VCAP environment variable */
mccURL = getMccURL( System.getenv( “VCAP_SERVICES” ) );
/* Application provides known workload thresholds for each instance
to mccURL */
URL( mccURL + “&invokeThreshold=1000&updateThreshold=500” );
/* Application periodically reports accumulated statistics about
specific workloads */
URL( mccURL + “&binc=1&invokeCount=27&updateCount=4” );
App1 :{ invokeCount: 34
invokeThreshold: 1000
updateThreshold: 500 }
mccMonitor
mccController
Environment
variables
Let us follow the protocol between mccMonitor and mccController
/* mccController loops thru all
applications and checks last
pollDateTime environment variable that
it sets on every application to compute
elapsed time since last poll */
CloudApplication appl =
client.getApplication(..);
Map<String,String> env =
appl.getEnvAsMap();
prevPoll = env.get(“lastpoll”);
prevPollDateTime = new
Date(prevPoll);
elapsedTime = currDate -
prevPollDateTime
/* mccController get applStats from
monitor */
String mccMonitorUrl =
App1 :{ invokeCount: 34
invokeThreshold: 1000
updateThreshold: 500 }
mccMonitor
mccController
Environment
variables
Protocol between mccMonitor and mccController (contd…)
/* mccController takes variables ending
in Count and Threshold and computes
overall rate */
String jsonStruct =
post2Monitor(mccMonitorUrl);
JSONObject obj =
JSONValue.parse(jsonStruct);
Iterator it = obj.entrySet().iterator();
while( it.hasNext() )
if(
it.next().getKey().endsWith(“Count”)) {
thres = thresKey(key); …
// compute rate achieved per
instance
ratePerInst =
getRate(elapsed,numIns);
// Add instance if threshold
exceeded
App1 :{ invokeCount: 34
invokeThreshold: 1000
updateThreshold: 500 }
mccMonitor
mccController
Environment
variables
Protocol between mccMonitor and mccController (contd…)
/* mccController also reads in
pctGrowTrigger
and pctShrinkTrigger variables to scale
memory */
String jsonStruct =
post2Monitor(mccMonitorUrl);
JSONObject obj =
JSONValue.parse(jsonStruct);
pctGrowTrigger =
obj.get(“pctGrowTrigger”)
pctGrowAmount =
obj.get(“pctGrowAmount”);
pctShrinkTrigger =
obj.get(“pctShrinkTrigger”);
pctShrinkAmount =
obj.get(“pctShrinkAmount”);
App1 :{ invokeCount: 34
invokeThreshold: 1000
updateThreshold: 500 }
Multi-Cloud Controller gathers resource utilization data
directly from multiple CloudFoundry Instances
for( cloudFoundryUrl : cfUrls ) {
CloudFoundryClient client =
new
CloudFoundryClient(cloudFoundryUrL);
List<CloudApplication> apps =
client.getApplications();
for( CloudApplication app: apps ) {
ApplicationStats stats =
client.getApplicationStats(
app.getName() );
for( InstanceStats is :
stats.getRecords()) {
InstanceStats.Usage usage =
is.getUsage();
long memuse = usage.getMem();
long memQuota =
mccController
Multi-Cloud Controller provides global view of how each
CloudFoundry Instance utilize their resources
mccController
mccController
This CloudFoundry Instance
shows a large portion of
overall memory not being
used, possible candidate for
scaling down some instances ?
mccController
This CloudFoundry Instance
shows hosts only a few low
footprint applications, should
these be moved to the other
instance that can host more
instances ?
How do we adapt these tools to the
distributed replication solution ?
mccMonitor
mccControllermccMonitor
How do we adapt these tools to the
distributed replication solution ?
mccMonitor
mccController
mccMonitor
How do we deploy
the distributed apps shown below ?
Summary
 Multi-cloud management and App customized scaling
architecture makes applications active participants in the
way they are scaled and how they consume resources
within a collection of PaaS instances
 Applications automatically scale up and down based on
specific workloads they need to process
 Distributed processes and Micro-services can self deploy
and self bind to one another achieving loose coupling
and independent scaling
 Applications have full control of their destiny
Where can you find more information ?
 CloudFoundry Client Java APIs
 https://github.com/cloudfoundry/cf-java-client
 CloudFoundry Documentation
 http://docs.cloudfoundry.org/
 https://github.com/cloudfoundry
 Bosh Documentation
 http://docs.cloudfoundry.org/bosh/
 http://www.think-foundry.com/cloud-foundry-bosh-introduction/
 https://github.com/cloudfoundry/bosh-lite
 MicroServices Architectures
 http://www.activestate.com/blog/2014/09/microservices-resources
Thank you!
https://cloudfoundryideas.wordpress.com/

More Related Content

What's hot (20)

PPTX
Cloud Foundry Roadmap (Cloud Foundry Summit 2014)
VMware Tanzu
 
PDF
OS + CF Austin meetup
ragss
 
PDF
Cloud Foundry for PHP developers
Daniel Krook
 
PPTX
Four levels of HA in Cloud Foundry
cornelia davis
 
PDF
Pivotal cf for_devops_mkim_20141209
minseok kim
 
PPTX
Pivotal cloud foundry introduction
Gaurav Shukla
 
PPTX
Monitoring Cloud Native Apps on Pivotal Cloud Foundry with AppDynamics
Nima Badiey
 
PDF
Cloud foundry presentation
Vivek Parihar
 
KEY
Cloud Foundry Bootcamp
Joshua Long
 
PDF
Cloudfoundry architecture
Ramnivas Laddad
 
PDF
Cloud Foundry - An Open Innovation Platform
All Things Open
 
PDF
Moving at the speed of startup with Pivotal Cloud Foundry 1.11
VMware Tanzu
 
PDF
Cloud Foundry Introduction and Overview
Andy Piper
 
PPTX
Cloud Foundry a Developer's Perspective
Dave McCrory
 
PDF
Diego: Re-envisioning the Elastic Runtime (Cloud Foundry Summit 2014)
VMware Tanzu
 
PPTX
Four Levels of High Availability in Cloud Foundry (Cloud Foundry Summit 2014)
VMware Tanzu
 
PPT
Dissecting The PaaS Landscape
Rishidot Research
 
PDF
Simplify Cloud Applications using Spring Cloud
Ramnivas Laddad
 
PDF
Sydney cloud foundry meetup - Service Brokers
Lawrence Crowther
 
PPTX
CF SUMMIT: Partnerships, Business and Cloud Foundry
Nima Badiey
 
Cloud Foundry Roadmap (Cloud Foundry Summit 2014)
VMware Tanzu
 
OS + CF Austin meetup
ragss
 
Cloud Foundry for PHP developers
Daniel Krook
 
Four levels of HA in Cloud Foundry
cornelia davis
 
Pivotal cf for_devops_mkim_20141209
minseok kim
 
Pivotal cloud foundry introduction
Gaurav Shukla
 
Monitoring Cloud Native Apps on Pivotal Cloud Foundry with AppDynamics
Nima Badiey
 
Cloud foundry presentation
Vivek Parihar
 
Cloud Foundry Bootcamp
Joshua Long
 
Cloudfoundry architecture
Ramnivas Laddad
 
Cloud Foundry - An Open Innovation Platform
All Things Open
 
Moving at the speed of startup with Pivotal Cloud Foundry 1.11
VMware Tanzu
 
Cloud Foundry Introduction and Overview
Andy Piper
 
Cloud Foundry a Developer's Perspective
Dave McCrory
 
Diego: Re-envisioning the Elastic Runtime (Cloud Foundry Summit 2014)
VMware Tanzu
 
Four Levels of High Availability in Cloud Foundry (Cloud Foundry Summit 2014)
VMware Tanzu
 
Dissecting The PaaS Landscape
Rishidot Research
 
Simplify Cloud Applications using Spring Cloud
Ramnivas Laddad
 
Sydney cloud foundry meetup - Service Brokers
Lawrence Crowther
 
CF SUMMIT: Partnerships, Business and Cloud Foundry
Nima Badiey
 

Similar to Multi-Cloud Micro-Services with CloudFoundry (20)

PPTX
Multi cloud appcustomscale-appgroups-slideshare
E Ting
 
PDF
Cloud foundry presentation
Vipul Tope
 
PDF
Modern Software Architecture - Cloud Scale Computing
Giragadurai Vallirajan
 
PDF
OpenStack + CloudFoundry Austin Meetup
ragss
 
PDF
Cloud Foundry Overview
Patrick Chanezon
 
PDF
Speeding up Development with Cloud Foundry
Altoros
 
PPTX
Microservices approach for Websphere commerce
HARIHARAN ANANTHARAMAN
 
PDF
PHP Buildpacks in the Cloud on Bluemix
IBM
 
KEY
MongoDB on CloudFoundry
Yohei Sasaki
 
KEY
MongoDB on CloudFoundry
Yohei Sasaki
 
PDF
Cloud Foundry and Microservices: A Mutualistic Symbiotic Relationship
Matt Stine
 
PDF
Cloud Foundry and Microservices: A Mutualistic Symbiotic Relationship
VMware Tanzu
 
PDF
What they don't tell you about micro-services
Daniel Rolnick
 
PPTX
Introduction to Microservices and Cloud Native Application Architecture
David Currie
 
PDF
Containers & Cloud Native Ops Cloud Foundry Approach
CodeOps Technologies LLP
 
PDF
What is your multicloud strategy? - Cloudfoundry days 2017
Tushar Dadlani
 
PDF
Cloud Foundry for Spring Developers
Gunnar Hillert
 
PPTX
Running your Spring Apps in the Cloud Javaone 2014
cornelia davis
 
PPTX
Building a Scalable Federated Hybrid Cloud
PLUMgrid
 
PDF
What's Next? Paris - Adrian Colyer Keynote
adriancolyer
 
Multi cloud appcustomscale-appgroups-slideshare
E Ting
 
Cloud foundry presentation
Vipul Tope
 
Modern Software Architecture - Cloud Scale Computing
Giragadurai Vallirajan
 
OpenStack + CloudFoundry Austin Meetup
ragss
 
Cloud Foundry Overview
Patrick Chanezon
 
Speeding up Development with Cloud Foundry
Altoros
 
Microservices approach for Websphere commerce
HARIHARAN ANANTHARAMAN
 
PHP Buildpacks in the Cloud on Bluemix
IBM
 
MongoDB on CloudFoundry
Yohei Sasaki
 
MongoDB on CloudFoundry
Yohei Sasaki
 
Cloud Foundry and Microservices: A Mutualistic Symbiotic Relationship
Matt Stine
 
Cloud Foundry and Microservices: A Mutualistic Symbiotic Relationship
VMware Tanzu
 
What they don't tell you about micro-services
Daniel Rolnick
 
Introduction to Microservices and Cloud Native Application Architecture
David Currie
 
Containers & Cloud Native Ops Cloud Foundry Approach
CodeOps Technologies LLP
 
What is your multicloud strategy? - Cloudfoundry days 2017
Tushar Dadlani
 
Cloud Foundry for Spring Developers
Gunnar Hillert
 
Running your Spring Apps in the Cloud Javaone 2014
cornelia davis
 
Building a Scalable Federated Hybrid Cloud
PLUMgrid
 
What's Next? Paris - Adrian Colyer Keynote
adriancolyer
 
Ad

Recently uploaded (20)

PDF
Azure_DevOps introduction for CI/CD and Agile
henrymails
 
PDF
Build Fast, Scale Faster: Milvus vs. Zilliz Cloud for Production-Ready AI
Zilliz
 
PDF
BRKACI-1003 ACI Brownfield Migration - Real World Experiences and Best Practi...
fcesargonca
 
PDF
Cleaning up your RPKI invalids, presented at PacNOG 35
APNIC
 
PPT
introduction to networking with basics coverage
RamananMuthukrishnan
 
PPTX
04 Output 1 Instruments & Tools (3).pptx
GEDYIONGebre
 
PPTX
原版西班牙莱昂大学毕业证(León毕业证书)如何办理
Taqyea
 
PDF
BRKACI-1001 - Your First 7 Days of ACI.pdf
fcesargonca
 
PPTX
ONLINE BIRTH CERTIFICATE APPLICATION SYSYTEM PPT.pptx
ShyamasreeDutta
 
PPT
introductio to computers by arthur janry
RamananMuthukrishnan
 
PPTX
Orchestrating things in Angular application
Peter Abraham
 
PPTX
Softuni - Psychology of entrepreneurship
Kalin Karakehayov
 
PPTX
sajflsajfljsdfljslfjslfsdfas;fdsfksadfjlsdflkjslgfs;lfjlsajfl;sajfasfd.pptx
theknightme
 
PDF
The-Hidden-Dangers-of-Skipping-Penetration-Testing.pdf.pdf
naksh4thra
 
PPTX
L1A Season 1 ENGLISH made by A hegy fixed
toszolder91
 
PPTX
法国巴黎第二大学本科毕业证{Paris 2学费发票Paris 2成绩单}办理方法
Taqyea
 
PPTX
internet básico presentacion es una red global
70965857
 
PPTX
Lec15_Mutability Immutability-converted.pptx
khanjahanzaib1
 
PPTX
L1A Season 1 Guide made by A hegy Eng Grammar fixed
toszolder91
 
PDF
AI_MOD_1.pdf artificial intelligence notes
shreyarrce
 
Azure_DevOps introduction for CI/CD and Agile
henrymails
 
Build Fast, Scale Faster: Milvus vs. Zilliz Cloud for Production-Ready AI
Zilliz
 
BRKACI-1003 ACI Brownfield Migration - Real World Experiences and Best Practi...
fcesargonca
 
Cleaning up your RPKI invalids, presented at PacNOG 35
APNIC
 
introduction to networking with basics coverage
RamananMuthukrishnan
 
04 Output 1 Instruments & Tools (3).pptx
GEDYIONGebre
 
原版西班牙莱昂大学毕业证(León毕业证书)如何办理
Taqyea
 
BRKACI-1001 - Your First 7 Days of ACI.pdf
fcesargonca
 
ONLINE BIRTH CERTIFICATE APPLICATION SYSYTEM PPT.pptx
ShyamasreeDutta
 
introductio to computers by arthur janry
RamananMuthukrishnan
 
Orchestrating things in Angular application
Peter Abraham
 
Softuni - Psychology of entrepreneurship
Kalin Karakehayov
 
sajflsajfljsdfljslfjslfsdfas;fdsfksadfjlsdflkjslgfs;lfjlsajfl;sajfasfd.pptx
theknightme
 
The-Hidden-Dangers-of-Skipping-Penetration-Testing.pdf.pdf
naksh4thra
 
L1A Season 1 ENGLISH made by A hegy fixed
toszolder91
 
法国巴黎第二大学本科毕业证{Paris 2学费发票Paris 2成绩单}办理方法
Taqyea
 
internet básico presentacion es una red global
70965857
 
Lec15_Mutability Immutability-converted.pptx
khanjahanzaib1
 
L1A Season 1 Guide made by A hegy Eng Grammar fixed
toszolder91
 
AI_MOD_1.pdf artificial intelligence notes
shreyarrce
 
Ad

Multi-Cloud Micro-Services with CloudFoundry

  • 1. Multi-Cloud Management & Application Customized Scaling with CloudFoundry [email protected]
  • 2. Motivation: Change Capture: • On Average = 1,500 – 5,500 ops/sec (inserts/updates/deletes) captured • Highly variable and bursty • Real time data flow problem A few months ago, we built a distributed replication solution for a customer, using distributed processes that read from queues populated with change capture data Each Replicator would read from a set of queues, then write data into a in-memory data grid, while periodically retiring batches of changes into a distributed database Replicator: On Average can handle 1,000+ ops/sec
  • 3. On average each Replicator can process 1,000+ operations per second and so to keep up with the change capture process, we would add as many Replicator processes as needed to support the highest rate observed Adding Replicators allows the overall task to scale linearly Distributed Replication
  • 4. We created a performance dashboard for monitoring of the overall throughput of the system, as replicators are manually added/removed to process the changing demands of the system. Distributed Replication Monitoring
  • 5. We could not dynamically scale our replication processes to react fast enough to the demands of the incoming transactions We couldn’t take advantage of resources that might be available from other clusters to scale out the replication processes We needed an automated way to monitor whether the replication processes had reach peak loads so that we can begin to decide how to add or remove replication processes that are not needed We needed a way to allocate resources properly to processes so as to not to take away resources that can be used by other processes replicating other parts of the system Challenges:
  • 6. Goals  Define multi-cloud management and application customized scaling and how it begins to solve some of the challenges  What is CloudF0undry: a PaaS that provides a polyglot and cloud agnostic environment with application lifecycle recovery and resource management capabilities  Demo of Multi-Cloud Management and Custom App Scaling Prototype  Discuss the architecture of the MCC and Custom App Scaling solution using CloudFoundry capabilities and APIs.
  • 7. mccController can analyze resources globally, across multiple clusters managed by a PaaS, to determine where applications can run or where resource can be adjusted for provide optimal use of the system Application #1 PaaS (CloudFoundry) Multi-Cloud Controller Architecture mccMonitor mccController Application #2 Application #N Application #1 PaaS (CloudFoundry) mccMonitor Application #2 Application #N
  • 8. mccController tracks the resource utilization of each PaaS that it manages, and based on the data can provide recommendations on where to deploy new applications and scale resources Application #1 PaaS (CloudFoundry) Multi-Cloud Controller Architecture mccMonitor mccController Application #2 Application #N Application #1 PaaS (CloudFoundry) mccMonitor Application #2 Application #N
  • 9. Applications periodically reports resource utilization to mccMonitor as well as changing workload requirements. mccMonitor will manage the information and report to mccController for workload analysis Application #1 PaaS (CloudFoundry) Application #2 Application #N mccMonitor mccController Multi-Cloud Controller Architecture
  • 10. mccController communicates with mccMonitors periodically while mccMonitors runs locally on each PaaS to allows application to communicate workload status as well as scaling requirements. mccController then communicates with the PaaS (CloudFoundry) to manage resources of applications and scale the number of application instances. Application #1 PaaS (CloudFoundry) Application #2 Application #N mccMonitor mccController Multi-Cloud Controller Architecture
  • 11. mccController will communicate with multiple PaaS instances with different load characteristics, so that it can scale applications and add or drop app instances as necessary to achieve desired throughput and balance resource utilization between different PaaS instances. Application #1 PaaS (CloudFoundry) Multi-Cloud Controller Architecture mccMonitor mccController Application #2 Application #N Application #1 PaaS (CloudFoundry) mccMonitor Application #2 Application #N Application #1 Application #1 Application #2
  • 12. CloudFoundry: An Operating System for the Cloud
  • 13. CloudFoundry and Bosh provides an IaaS Agnostic Infrastructure +
  • 14. Bosh manages other distributed processes besides CloudFoundry, such as Hadoop
  • 16. What does CloudFoundry do with an Application ? Containers Containers Containers Containers Containers + + Kernel Containers
  • 17. CloudFoundry manages the applications placement for effective scaling , high availability and recovery Containers
  • 18. CloudFoundry promotes loose coupling of applications and services Containers Containers Environment variables Provision Services CloudFoundry provision services and make them available for use to applications. Applications access services using environment variables configured thru CloudFoundry
  • 19. How CloudFoundry enables the Multi-Cloud Controller Architecture mccMonitor mccController Environment variables mccController can (1) deploy mccMonitor’s to each CloudFoundry instance, and have applications bind to the mccMonitor, enabling the application to communicate performance metrics, then (2) enable mccController to dynamically scale their resources mccMonitor Environment variables
  • 20. Our Tools: CloudFoundry Client APIs How can we use these to accomplish what we need ?  Package: org.cloudfoundry.client.lib  CloudFoundryClient  CloudCredentials  Package: org.cloudfoundry.client.lib.domain  CloudInfo  CloudApplication  CloudService  ApplicationStats  InstanceStats  InstanceInfo  InstanceState
  • 21. Demo
  • 22. Pushing (deploying) Application(s) Containers Containers + + CloudFoundryClient client = new CloudFoundryClient(new CloudCredentials(user, pw), cfURL, org, space,..); client.login(); List<CloudDomain> domains = client.getDomains(); String appURL = “myApp” + domains(0).getName(); // myApp.cfapps.io client.createApplication( “myApp”, new Staging(), memSize, appURLs, services ); client.uploadApplication( “myApp”, file.getCanonicalPath() );
  • 23. Pushing (deploying) Application(s) Containers Containers + + Create CloudFoundry client object Assign application name and URL Upload (push) and start application
  • 24. Creating Service(s) Containers CloudFoundryClient client = new CloudFoundryClient( … ); String appURL = “myApp” + client.getDomains(0).getName(); // myApp.cfapps.io CloudService service = new CloudService(metaData, “myService”); Map<String, Object> credentials = new HashMap<String, Object>(); credentials.put( “myServiceAPI”, appURL ); client.createUserProvidedService( service, credentials ); myApp.cfapps.io
  • 25. Creating Service(s) Containers myApp.cfapps.io Assign application name and URL Create Service object Provide credentials information to allow applications to use the service
  • 26. Binding Service(s) to Application(s) Containers CloudApplication yourApp = client.getApplication( “yourApp” ); client.bindService( yourApp, “myService” ); client.stopApplication( “yourApp” ); client.startApplication( “yourApp” ); Environment variables Containers
  • 27. Binding Service(s) to Application(s) Containers Environment variables Containers Get application object related of the app to be bound Bind application to service Stop and Start application
  • 28. How can Applications find ‘bound’ Services ? Containers String myEnv = System.getenv( “VCAP_SERVICES” ); JSONObject obj = JSONValue.parse( myEnv ); JSONArray arrySrv = obj.get( “yourService” ); for( JSONObject srvObj: arrySrv ) { JSONObject credentials = srvObj.get( “credentials” ); String serviceUrl = credentials.get( “yourServiceAPI” ); Environment variables Containers
  • 29. How can Applications find ‘bound’ Services ? Containers Environment variables Containers Get environment variable VCAP_SERVICES Find the service’s entry and get credentials information to be used to communicate with the service
  • 30. How do we gather application statistics ? CloudFoundryClient client = new CloudFoundryClient(..); Map<> env = client.getApplication().getEnvAsMap(); int instCnt = client.getApplication().getInstances(); ApplicationStats stats = client.getApplicationStats(“yourApp”); for( InstanceStats is : stats.getRecords()) { InstanceStats.Usage usage = is.getUsage(); long memuse = usage.getMem(); long cpuuse = usage.getCpu(); long diskuse = usage.getDisk(); long memQuota = is.getMemQuota(); long diskQuota = is.getDiskQuota(); … } mccController
  • 31. How do we gather application statistics ? mccController Create CloudFoundry Client Object Get Application Stats Object Iterate Applications Instances Stats object to get memory, disk, and instance count information
  • 32. How do we scale application resources ? CloudFoundryClient clnt = new CloudFoundryClient(); clnt.stopApplication(“yourApp”); clnt.updateApplicationEnv(“yourApp”, Map<> env); clnt.updateApplicationMemory(“yourApp”, newVal); clnt.updateApplicationDiskQuota(“yourApp” , nDisk); clnt.updateApplicationInstances(“yourApp”, nInstns); clnt.startApplication(“yourApp”); mccController
  • 33. How do we scale application resources ? mccController Create CloudFoundry Client Object Update application memory, disks, and instances Stop and Start application
  • 34. How can we apply these APIs to the Multi-Cloud Controller Architecture ? mccMonitor mccController Environment variables mccMonitor Environment variables
  • 35. Let us deploy the monitor and bind it to applications running on each CloudFoundry instance mccMonitor mccController Environment variables /* Push mccMonitor to CloudFoundry Instances */ pushMccMonitor( cloudFoundryURL ); /* Bind CloudFoundry Applications to MccMonitor */ bindApplicationsToMccMonitor( cloudFoundryURL, MccMonitorUrl ); /* Next Applications will provide workload specfiic statistics to MccMonitor… */
  • 36. How do we enable the application to customize its scaling characteristics ? mccMonitor Environment variables /* Applications get mccMonitor URL via VCAP environment variable */ mccURL = getMccURL( System.getenv( “VCAP_SERVICES” ) ); /* Application provides known workload thresholds for each instance to mccURL */ URL( mccURL + “&invokeThreshold=1000&updateThreshold=500” ); /* Application periodically reports accumulated statistics about specific workloads */ URL( mccURL + “&binc=1&invokeCount=27&updateCount=4” ); App1 :{ invokeCount: 34 invokeThreshold: 1000 updateThreshold: 500 }
  • 37. Let us follow the protocol between the applications and mccMonitor mccMonitor Environment variables /* Applications get mccMonitor URL via VCAP environment variable */ mccURL = getMccURL( System.getenv( “VCAP_SERVICES” ) ); /* Application provides known workload thresholds for each instance to mccURL */ URL( mccURL + “&invokeThreshold=1000&updateThreshold=500” ); /* Application periodically reports accumulated statistics about specific workloads */ URL( mccURL + “&binc=1&invokeCount=27&updateCount=4” ); App1 :{ invokeCount: 34 invokeThreshold: 1000 updateThreshold: 500 }
  • 38. mccMonitor mccController Environment variables Let us follow the protocol between mccMonitor and mccController /* mccController loops thru all applications and checks last pollDateTime environment variable that it sets on every application to compute elapsed time since last poll */ CloudApplication appl = client.getApplication(..); Map<String,String> env = appl.getEnvAsMap(); prevPoll = env.get(“lastpoll”); prevPollDateTime = new Date(prevPoll); elapsedTime = currDate - prevPollDateTime /* mccController get applStats from monitor */ String mccMonitorUrl = App1 :{ invokeCount: 34 invokeThreshold: 1000 updateThreshold: 500 }
  • 39. mccMonitor mccController Environment variables Protocol between mccMonitor and mccController (contd…) /* mccController takes variables ending in Count and Threshold and computes overall rate */ String jsonStruct = post2Monitor(mccMonitorUrl); JSONObject obj = JSONValue.parse(jsonStruct); Iterator it = obj.entrySet().iterator(); while( it.hasNext() ) if( it.next().getKey().endsWith(“Count”)) { thres = thresKey(key); … // compute rate achieved per instance ratePerInst = getRate(elapsed,numIns); // Add instance if threshold exceeded App1 :{ invokeCount: 34 invokeThreshold: 1000 updateThreshold: 500 }
  • 40. mccMonitor mccController Environment variables Protocol between mccMonitor and mccController (contd…) /* mccController also reads in pctGrowTrigger and pctShrinkTrigger variables to scale memory */ String jsonStruct = post2Monitor(mccMonitorUrl); JSONObject obj = JSONValue.parse(jsonStruct); pctGrowTrigger = obj.get(“pctGrowTrigger”) pctGrowAmount = obj.get(“pctGrowAmount”); pctShrinkTrigger = obj.get(“pctShrinkTrigger”); pctShrinkAmount = obj.get(“pctShrinkAmount”); App1 :{ invokeCount: 34 invokeThreshold: 1000 updateThreshold: 500 }
  • 41. Multi-Cloud Controller gathers resource utilization data directly from multiple CloudFoundry Instances for( cloudFoundryUrl : cfUrls ) { CloudFoundryClient client = new CloudFoundryClient(cloudFoundryUrL); List<CloudApplication> apps = client.getApplications(); for( CloudApplication app: apps ) { ApplicationStats stats = client.getApplicationStats( app.getName() ); for( InstanceStats is : stats.getRecords()) { InstanceStats.Usage usage = is.getUsage(); long memuse = usage.getMem(); long memQuota = mccController
  • 42. Multi-Cloud Controller provides global view of how each CloudFoundry Instance utilize their resources mccController
  • 43. mccController This CloudFoundry Instance shows a large portion of overall memory not being used, possible candidate for scaling down some instances ?
  • 44. mccController This CloudFoundry Instance shows hosts only a few low footprint applications, should these be moved to the other instance that can host more instances ?
  • 45. How do we adapt these tools to the distributed replication solution ? mccMonitor mccControllermccMonitor
  • 46. How do we adapt these tools to the distributed replication solution ? mccMonitor mccController mccMonitor
  • 47. How do we deploy the distributed apps shown below ?
  • 48. Summary  Multi-cloud management and App customized scaling architecture makes applications active participants in the way they are scaled and how they consume resources within a collection of PaaS instances  Applications automatically scale up and down based on specific workloads they need to process  Distributed processes and Micro-services can self deploy and self bind to one another achieving loose coupling and independent scaling  Applications have full control of their destiny
  • 49. Where can you find more information ?  CloudFoundry Client Java APIs  https://github.com/cloudfoundry/cf-java-client  CloudFoundry Documentation  http://docs.cloudfoundry.org/  https://github.com/cloudfoundry  Bosh Documentation  http://docs.cloudfoundry.org/bosh/  http://www.think-foundry.com/cloud-foundry-bosh-introduction/  https://github.com/cloudfoundry/bosh-lite  MicroServices Architectures  http://www.activestate.com/blog/2014/09/microservices-resources