Software Engineer
I heard these from a wise teacher and these were very reassuring.
Spend time with the problem. Understanding and solving the problem are same.
make the system appear as if there is only one copy of data and all operations on it are atomic. It means all clients must be able to read the latest data once it is…
On a single machine if there is any internal fault, we expect the system to crash instead of giving wrong values.
Why?
All data doesn’t fit in one machine. So different partitions are made on different machines and each piece of data will live in one partition. This is useful for scaling applications.
We have to see
Why ?