FAQ
1 min read
4

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
7

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