Posts

Showing posts from December, 2020

What is a Load Balancer ?

  What is a Load Balancer ? ●      Load balancing aims to optimize resource use, maximize throughput, minimize response time, and avoid overload of any single resource. ●        Load balancing improves the distribution of workloads across multiple computing resources, such as computers, a computer cluster, network links, central processing units, or disk drives ●      Types of Load Balancer * Layer 4 * Layer 7   Best DevOps Training Institute in Gurgaon... Layer 4 Load Balancing Layer 4 load balancing (which is also called as transport layer load balancing) is widely acknowledged for its simple way to load balance the network traffic through multiple servers. This type is based on IP range/domain and port i.e. if a user request comes in for domain.com/blog, the traffic will be sent to the backend that manages all the user requests for domain.com on port 80.     Laye...

What is Version Control System in Devops?

Version control, also known as source control, is the practice of tracking and managing changes to software code. Version control systems are software tools that help software teams manage changes to source code over time. As development environments have accelerated, version control systems help software teams work faster and smarter. They are especially useful for DevOps teams since they help them to reduce development time and increase successful deployments.   Best Devops Training Institute in Gurgaon... Version control software keeps track of every modification to the code in a special kind of database. If a mistake is made, developers can turn back the clock and compare earlier versions of the code to help fix the mistake while minimizing disruption to all team members.   GIT   Version Control Systems (VCS) have seen great improvements over the past few decades and some are better than others. VCS are sometimes known as SCM (Source Code Management) tools...