what is the difference between distributed systems and parallel systems?

570 viewsEngineeringOther

Adding to this, could anyone please suggest me resources on learning them properly? Ones that can eli5?

In: Engineering

3 Answers

Anonymous 0 Comments

On a parallel system, you can generally assume that all data can be accessed by all “threads” with little cost. This could be 1 system that has a bunch of cores and the data stored in ram, or it could be a networked cluster with a high performance centralized file system. You can also generally assume failures are rare and not account for them.

On a distributed system you can not assume this. The data may be extremely expensive to move between systems, and each may need to operate independently. The data may not even exists in 1 central location, and it may be impossible get the current state of the entire system’s data with complete accuracy. You generally must also assume that any part could fail or disappear at any time and keep running anyway.

You are viewing 1 out of 3 answers, click here to view all answers.