what is the Vertical and Horizontal distribution?
Asked Answered
C

4

11
  • Vertical distribution : Distributed processing is equivalent to organizing a client-server application as a multitiered architecture . Place logically different components on different machines.
  • Horizontal distribution : Distribution of the clients and servers - more common in modern architecture. A client or server may be physically split up into logically equivalent parts, but each part is operating on its own share of the complete data set, thus balancing the load.

I tried to understand the difference between the vertical and horizontal. what's the meaning of "logically" and "physically" ?...but I can't! Does anybody know?

Considered answered 1/5, 2011 at 0:9 Comment(0)
N
10

AFAIK

horizontal - You add more machines. These machines are equal meaning that they play similar role. For example you have Node server that handles all requests. You install it on three machines. All these machines do the same thing. When the load is high you add another machine with Node server.

vertical - You get better machines to handle the load. Also machines play different roles - for example you have Authentication server on one machine and Node server on the other.

Newton answered 14/5, 2011 at 13:10 Comment(1)
This is horizontal / vertical scalability.Kloman
C
18

From the solution manual of Distributed Systems: Principles and Paradigms (Tanenbaum, van Steen):

  • Vertical distribution refers to the distribution of the different layers in a multitiered architecture across multiple machines.
  • Horizontal distribution deals with the distribution of a single layer across multiple machines, such as distributing a single database.

Examples of layers could be:

  • User Interface
  • Application
  • Database
Complementary answered 3/2, 2012 at 18:48 Comment(0)
N
10

AFAIK

horizontal - You add more machines. These machines are equal meaning that they play similar role. For example you have Node server that handles all requests. You install it on three machines. All these machines do the same thing. When the load is high you add another machine with Node server.

vertical - You get better machines to handle the load. Also machines play different roles - for example you have Authentication server on one machine and Node server on the other.

Newton answered 14/5, 2011 at 13:10 Comment(1)
This is horizontal / vertical scalability.Kloman
A
1

Very Simple -

  • Vertical : buy a high end machine to handle more load
  • Horizontal : buy couple more machines to handle more load

You with high probability would start with vertical since its simple to get started. Once load on your system reaches a threshold you would land on horizontal to make your architecture more scalable.

Anticlerical answered 4/8, 2018 at 4:15 Comment(2)
That's the difference between horizontal vs vertical scalability and not distribution!Thermal
What has been typed makes sense actually.Encephalic
J
-1

Vertical - Upgrading two computers to handle one task. Adding more processors, ram and many other components of upgrading the computers.

Horizontal. - Purchasing more computers to handle one task. It is more efficient since many computers will work on one task at the same time. It is also very fast compared to Vertical. Most organization systems use this technique.

Jenson answered 29/3, 2022 at 6:35 Comment(1)
Your answer could be improved with additional supporting information. Please edit to add further details, such as citations or documentation, so that others can confirm that your answer is correct. You can find more information on how to write good answers in the help center.Bolshevist

© 2022 - 2025 — McMap. All rights reserved.