5

Using Cloud Assembly Native Auto-Scale Functionality (SKKB1048)

 3 years ago
source link: http://kaloferov.com/blog/skkb1048/
Go to the source link to view the article. You can view the picture content, updated content and better typesetting reading experience. If the link is broken, please click the button below to view the snapshot at that time.

Using Cloud Assembly Native Auto-Scale Functionality (SKKB1048)

It's only fair to share...

In this blog post we are going to look at how to use VMware Cloud Assembly auto-scale functionality when building AWS Native Blueprints

Update Log:

Introduction

Assembly offers integration with AWS
Auto-Scale functionality. You can set it up from your Blueprint editor. It
enables you to set for an auto scaling group for machines, which automatically
increases or decreases resources based on policies.

Configuring Auto-Scale in your Blueprint

Lets configure an example scale policy for a machine.
In your BP editor under machine properties you can find the autoScaleConfguraiton Machine property . This is where you can configure desiredCapacity, maxSize, metricScaleRules, minSize, policy and scheduledScaleRules.

UsingAutoscale-image001.png
Instead if configuring all of the settings in the yaml code editor lets to it from the Properties tab.

Once on the Properties tab in your editor until you find Rules of the METRIC policy

And Rules of the Scheduled policy. As you can se you can configure a policy for a metric or a scheduled policy that will run on a given interval. Let’s build a Metric policy.

Here are the action of the scale operation you can configure:
• The type of action that should occur when the scale rule fires. – The scaling action that occurs when triggered
• The amount by which to scale, based on the specified adjustment type – The amount by which to scale up or down. Positive values add, and negative values subtract.
• The amount of time, in seconds, after a scaling activity completes and before the next scaling activity can start. – The minimum time, in seconds, between scaling actions.

Here is the trigger of the scale operation you can configure:
• Тhe metric that defines what the rule monitors. – The metric that is the catalyst for a scaling action.
• The period, in seconds, over which the specified statistic is applied – The period, in seconds, at which the metric is evaluated. Valid values are 10, 30, and any multiple of 60.
• The operator that is used to compare the metric data and – The comparison operator that is used when evaluating the collected metric data against the threshold.
• The metric statistic type – How metrics from multiple instances are combined.
• The threshold of the metric that triggers the scale action – The threshold that, when reached, triggers the scaling action.
• The number of periods over which data is compared to the specified threshold – The number of periods over which to measure data. The total evaluation time cannot exceed one day, so this number multiplied by the period cannot exceed 86,400 seconds.

Lets say for this example we want to :
• Change the count property of the machine resource upon scale. Therefore, adding additional machine resource.
• We want to add 2 machines each time the policy gets triggered.
• Wait 60 seconds before performing another scale activity.
• I want to scale when average CPU Utilization metric goes above 1
• Measure the average CPU based over 3 periods x 60 seconds = 180 seconds

Usually some of these settings will be higher, , but for the sake of the lab.

My policy looks like this:

UsingAutoscale-image002.png
The yaml representation of this policy in my code editor would be :
  1. autoScaleConfiguration:
  2.         policy: Metric
  3.         metricScaleRules:
  4.           - action:
  5.               type: ChangeCount
  6.               value: 2
  7.               cooldown: 60
  8.             trigger:
  9.               metric: CPUUtilization
  10.               period: 60
  11.               operator: GreaterThan
  12.               statistic: Average
  13.               threshold: 1
  14.               evaluationPeriods: 3
  15.         maxSize: 3
  16.         minSize: 1

Note that I also have specified the minimum and maximum number of nodes in the scaling group. The whole BP example can be found in my gitlab repo at bit.ly/The-Gitlab

To stress the VM once deployed I run this as a cloud-init script:

  1. cloudConfig: |
  2.        #cloud-config
  3.         repo_update: true
  4.         repo_upgrade: all
  5.         packages:
  6.         runcmd:
  7.           - sudo -s
  8.           - yum install -y epel-release
  9.           - yum install -y stress
  10.           - stress --cpu  4 --timeout 4m

Now lets go in AWS under EC2 and select the Auto Scaling Groups tab
Initially we see only one instance of the deployed VM

UsingAutoscale-image003.png

After the policy gets triggered based on the CPU stress we can see a scale-out taking place

UsingAutoscale-image004.png

Final Step

If all went well, go grab a beer.

GrabABeer_nobg2.png

DISCLAIMER; This is a personal blog. Any views or opinions represented in this blog are personal and belong solely to the blog owner and do not represent those of people, institutions or organizations that the owner may or may not be associated with in professional or personal capacity, unless explicitly stated. Any views or opinions are not intended to malign any religion, ethnic group, club, organization, company, or individual.
All content provided on this blog is for informational purposes only. The owner of this blog makes no representations as to the accuracy or completeness of any information on this site or found by following any link on this site. The owner will not be liable for any errors or omissions in this information nor for the availability of this information. The owner will not be liable for any losses, injuries, or damages from the display or use of this information.
Photos
Unless stated, all photos are the work of the blog owner and are licensed under a Creative Commons Attribution-NonCommercial-NoDerivs 3.0 Unported License. If used with watermark, no need to credit to the blog owner. For any edit to photos, including cropping, please contact me first.
Recipes
Unless stated, all recipes are the work of the blog owner and are licensed under a Creative Commons Attribution-NonCommercial-NoDerivs 3.0 Unported License. Please credit all recipes to the blog owner and link back to the original blog post.
Downloadable Files
Any downloadable file, including but not limited to pdfs, docs, jpegs, pngs, is provided at the user’s own risk. The owner will not be liable for any losses, injuries, or damages resulting from a corrupted or damaged file.
Comments
Comments are welcome. However, the blog owner reserves the right to edit or delete any comments submitted to this blog without notice due to
– Comments deemed to be spam or questionable spam
– Comments including profanity
– Comments containing language or concepts that could be deemed offensive
– Comments containing hate speech, credible threats, or direct attacks on an individual or group
The blog owner is not responsible for the content in comments.
This policy is subject to change at anytime.

Mastering_vROps_250x308.png

About Joyk


Aggregate valuable and interesting links.
Joyk means Joy of geeK