Khancloudacademy

Khancloudacademy Free learn Online AWS, Azure , GCP Cloud , Devops by follow likes and share , no need to pay anywhere

We offers industry based training with Job placement assistance with big Indian MNC's

19/07/2024
14/06/2024

AWS Solutions Architect Associate Exam - 8 Week Study Plan


├─ Week 1: Introduction & Fundamentals
│ ├─ AWS Overview
│ │ ├─ History
│ │ ├─ Global Infrastructure
│ │ └─ Core Principles
│ ├─ Well-Architected Framework
│ │ ├─ Operational Excellence
│ │ ├─ Security
│ │ ├─ Reliability
│ │ ├─ Performance Efficiency
│ │ └─ Cost Optimization
│ └─ Pricing and Cost Management
│ └─ AWS Free Tier, Reserved Instances, Savings Plans, etc.

├─ Week 2: Core Services I
│ ├─ Compute
│ │ ├─ EC2
│ │ ├─ Lambda
│ │ └─ ECS & EKS
│ ├─ Storage
│ │ ├─ S3
│ │ ├─ EBS
│ │ ├─ EFS
│ │ └─ Glacier
│ └─ Databases
│ ├─ RDS
│ ├─ DynamoDB
│ └─ Aurora

├─ Week 3: Core Services II
│ ├─ Networking
│ │ ├─ VPC
│ │ ├─ ELB
│ │ └─ Route 53
│ ├─ Management Tools
│ │ ├─ CloudWatch
│ │ ├─ CloudFormation
│ │ └─ Systems Manager
│ └─ Security Services
│ ├─ IAM
│ └─ KMS

├─ Week 4: Specialized Services & Review
│ ├─ Advanced Computing
│ │ ├─ Elastic Beanstalk
│ │ └─ Lightsail
│ ├─ Application Integration
│ │ ├─ SQS
│ │ └─ SNS
│ └─ Review Week 1-3 Topics

├─ Week 5: Architectural Best Practices & Design Principles
│ ├─ Designing Resilient Architectures
│ ├─ Designing High Performing Architectures
│ ├─ Designing Secure Applications & Architectures
│ └─ Designing Cost-Optimized Architectures

├─ Week 6: Advanced Topics & Specialty Services
│ ├─ Analytics
│ │ ├─ EMR
│ │ ├─ Redshift
│ │ └─ Kinesis
│ ├─ Machine Learning & AI
│ │ └─ SageMaker
│ └─ Migration & Transfer
│ └─ AWS Migration Hub

├─ Week 7: Whitepapers, FAQs & Practice Tests
│ ├─ Key AWS Whitepapers
│ ├─ Study FAQs of major services
│ └─ Take Practice Tests

└─ Week 8: Review & Exam Practice
├─ Identify Weak Points
├─ Review Tough Topics
├─ More Practice Tests
└─ Day Before Exam: Relax, Light Review, Early Bed

Load Balancer is a critical topic that is essential to know.A Loadbalancer is a simple technology to distribute the inco...
05/04/2024

Load Balancer is a critical topic that is essential to know.

A Loadbalancer is a simple technology to distribute the incoming load so that you do not stress one server and improves overall application scalability.

Loadbalancer helps an application architecture improve its performance, scalability, and availability. Apart from load distribution, load balancers offer many other features like service discovery, health checking, logging, security, etc.

Load balancers are available as hardware Or software, and now, with the advent of the cloud, cloud load balancers, also known as load balancers as a service.

Various cloud providers like AWS, GCP, Azure etc offer load balancers as a service.

Loadbalancer employs various algorithms to distribute the load. One needs to adopt the right ones that suit their requirements and needs.

𝗦𝗼𝗺𝗲 𝗼𝗳 𝘁𝗵𝗲 𝘄𝗲𝗹𝗹-𝗸𝗻𝗼𝘄𝗻 𝗹𝗼𝗮𝗱 𝗯𝗮𝗹𝗮𝗻𝗰𝗲𝗿 𝗮𝗹𝗴𝗼𝗿𝗶𝘁𝗵𝗺𝘀 𝗮𝗿𝗲 :

𝗥𝗼𝘂𝗻𝗱𝗥𝗼𝗯𝗶𝗻: Load is sequentially distributed to each server as it arrives from the end clients

𝗪𝗲𝗶𝗴𝗵𝘁𝗲𝗱: Each server is assigned a weight, and requests are sent to servers based on the weights. The higher the weight, the higher the number of requests.

𝗟𝗲𝗮𝘀𝘁 𝗖𝗼𝗻𝗻𝗲𝗰𝘁𝗶𝗼𝗻𝘀: Depending on the number of connections each server has, requests are forwarded to servers with fewer connections. It follows the order of Less to More.

𝗥𝗲𝘀𝗽𝗼𝗻𝘀𝗲 𝘁𝗶𝗺𝗲: More requests are forwarded to the servers with the best response times. It looks into active connections and server response time when it has to decide which server it has to send the request to.

𝗜𝗣 𝗛𝗮𝘀𝗵: When a request is received from a client, hashing is performed on the client IP, which is converted to a number; the number is mapped to the server, and based on the server mapping, requests are forwarded

𝗥𝗲𝘀𝗼𝘂𝗿𝗰𝗲 𝗕𝗮𝘀𝗲𝗱: Depending on the availability of free resources ( CPU, Memory), requests are forwarded to servers with more free resources.

Docker Swarm Vs Kubernetes: 🔎 Docker Swarm and Kubernetes have distinct architectures and feature sets catering to diffe...
05/04/2024

Docker Swarm Vs Kubernetes: 🔎

Docker Swarm and Kubernetes have distinct architectures and feature sets catering to different deployment needs.
🐳
In Docker Swarm, a single manager node oversees container deployment and scaling across multiple worker nodes, directly communicating with them to schedule tasks. It provides basic orchestration features such as service deployment, scaling, load balancing, and rolling updates, prioritizing simplicity and ease of use. Docker Swarm is well-suited for smaller to medium-sized deployments or organizations already invested in the Docker ecosystem. It tightly integrates with Docker tools like Docker Compose and Docker Engine, offering a streamlined experience for users familiar with Docker.

On the other hand, Kubernetes operates within a master-worker node setup, featuring multiple components in its master node such as the API server, scheduler, controller manager, and etcd for cluster state management. Kubernetes offers a rich set of features including advanced networking, service discovery, automatic scaling, self-healing, declarative configuration management, and support for stateful applications. It is designed for large-scale, production-grade deployments in cloud-native environments, prioritizing scalability and resilience. Kubernetes has a vast ecosystem with various container runtimes, networking plugins, storage solutions, monitoring tools, CI/CD pipelines, and more, providing flexibility and extensibility for diverse use cases and environments.

Overall, Docker Swarm and Kubernetes serve different deployment scenarios, with Docker Swarm offering simplicity and ease of use for smaller deployments, while Kubernetes provides advanced features and scalability for large-scale, production-grade environments.

Thanks to Microsoft 🤣😂 #
02/04/2024

Thanks to Microsoft 🤣😂 #

https://www.youtube.com/?sub_confirmation=1
30/03/2024

https://www.youtube.com/?sub_confirmation=1

🚀 Welcome to KhanCloudAcademy - Your Gateway to DevOps Mastery! 🚀Embark on a transformative learning journey with KhanCloudAcademy, your one-stop destinati...

Bash for Professionals unit 5 - CAT commands
29/03/2024

Bash for Professionals unit 5 - CAT commands

unit 5.1: Concatenate files ....................................................................................................................................

Bash for Professionals unit 4 - Listing files
28/03/2024

Bash for Professionals unit 4 - Listing files

UNIT 4.1: List Files in a Long Listing Format ......................................................................................................... UNIT ...

Address

Okhla

Website

Alerts

Be the first to know and let us send you an email when Khancloudacademy posts news and promotions. Your email address will not be used for any other purpose, and you can unsubscribe at any time.

Contact The Business

Send a message to Khancloudacademy:

Share