FAQ
1 min read
22

How is horizontal scaling different from vertical scaling?

July 29, 2019
0

Horizontal scaling is usually done by partitioning the data where each node contains only a portion of data. Whereas, in the case of vertical scaling, the data is present is on a single node only and scaling is done by spreading the load between the CPU and RAM resources.

Continue Reading
FAQ
1 min read
21

What is vertical scaling?

July 29, 2019
0

Vertical scaling refers to adding more computational resources such as RAM, CPU, etc. to the server (either database or application server) as per the demand. Vertical scaling is done to increase the input/output operations, amplification of CPU/RAM capacity as well as the disk capacity.

Continue Reading
FAQ
1 min read
19

What is horizontal scaling?

July 29, 2019
0

Horizontal scaling refers to adding more processing units or physical machines to the server or database. It is involved with the growth in the number of nodes in the cluster, which reduces the responsibilities of each node in the cluster. The load is reduced by providing additional end-points for client

Continue Reading
FAQ
1 min read
21

What are the benefits of auto-scaling?

July 29, 2019
0

The benefits of auto-scaling include- •Better fault tolerance: Auto-scaling helps in determining and detecting which of the instances present on the server is unhealthy. Once established, the unhealthy instance is quickly terminated, and another healthy instance is sent as a replacement for the unhealthy one. •Better availability: Auto-scaling helps in

Continue Reading
FAQ
1 min read
19

What are the advantages of auto-scaling?

July 29, 2019
0

The key advantages of auto-scaling include- •Companies which run their own web infrastructure, auto-scaling refers to allowing some of the servers to go offline when there is low load, thereby saving on electricity costs •Companies which have their infrastructure hosted in the cloud, auto-scaling helps in keeping lower bills, as

Continue Reading