This certification preparation material would help you in getting the jobs in the AWS Fields

AWS Developer Certification : Associate Level AWS Sysops Administrator Certification : Assciate Level AWS Solution Architect Certification : Associate Level AWS Soltion Architect : Professional Level AWS Certified Security Specialty (SCS-C01) AWS Professional certification Exam AWS Certified Big Data – Specialty (BDS-C00) AWS Certified Machine Learning MLS C01 Certification Prepration Materal AWS Solution Architect : Training Associate AWS Advanced Networking Certifications AWS Exam Prepare : Kinesis Data Stream Book : AWS Solution Architect Associate : Little Guide AWS Security Specialization Certification: Little Guide SCS-C01 AWS Package Deal


While applying to the Job you need to mention referred by : admin@hadoopexam.com | or Website : http://www.HadoopExam.com


 

Question 4: You are working in an investment broker, who provide online services for the investments and website should be up 24X7. You need to deploy the newer version of application which has support for many new features. You have fleet to EC2 instances which are placed behind ELB and also auto scaling is enabled. What you want that you will be slowly deploying new version of the code and also website should not go down, which of the following combination of strategy will be well suited?

  1. You will be using Blue/Green deployment strategy.
  2. You will one by one terminate EC2 instance with old code and replacing it with the new instance having new version of the code.
  3. Using CloudFromation you will be creating new stack and deploy the new code on existing group of EC2 instances and start new application on existing EC2 instance.
  4. You will be setting up new ELB and group for EC2 instance with the newer launch configuration, once the deployment is done you will be switching the DNS which will point to newer version of ELB using Route 53.
  5. In existing auto-scaling you will double the EC2 instances for that you will be have all the instances with the newer version of code. And slowly terminate all the instances with older version of the code.

Correct Answer  : A,C

Detailed Explaination: It is upto you which strategy you use to migrate the application on the newer version of the code and it also depend on the architecture you have followed. But as given in the question your entire load is served using EC2 instances which are part of Auto-scaling group and also behind the load balancer. So for the end user perspective single point from which traffic is served is ELB. And the responsible component which divert the traffic the ELB is Route53.

So best solution recommended by AWS as well as you should followed is Blue/Green deployment. And for the given architecture you will be deploying routing request to newer version of deployment.

Older environment will be known as Blue (service production traffic ) and newer version of the code is known as Green. You create entire Green environment using newer Load Balancer and new instances in newer version of auto-scaling group. And change the Route 53 DNS record such that all the new traffic will be routed to newer ELB. If you want to rollback than just update the DNS entry in the Route 53.

Blue/Green deployment in AWS :

  1. It is a technique for releasing applications by shifting traffic between two identical environments which are running different version of applications.
  2. This strategy will help in mitigating risk like downtime and rollback capability.
  3. It provides near zero-downtime releases and rollback capabilities.
  4. Blue (Current version of application service prod traffic) and green(is staged running different version of app).
  5. Once everything tested on green environment than entire traffic will be moved to green environment.
  6. And if there is any issue, you can revert traffic to original blue environment.
  7. You can test your new application in the prod environment.
  8. Canary analysis/Canary traffic: using very small fraction of production traffic on green environment.
  9. It is a good fit for continuous deployment/integration (CI/CD) workflow.
  10. And even green environment will be launched on new resources.
  11. Once everything succeed, you will decommission the older version(Blue).