I know there's one same question on SO but I didn't find the answers there helpful.
Availability says that the system will return a non-error response, even if one or more nodes in the system are down.
Partition Tolerance means that the system will keep functioning as a whole, even if some nodes in the system are down or there are communication breaks in the system.
If I am not wrong, both of them mean that the client will receive a response even if some nodes in the system are down. What is the difference between the two?
Availability is when every request sent to a node that is NOT down, returns a valid response. If it is a write request, the node should return a valid response even if it is not able to communicate the new update to the other nodes in the system. Similarly, if it is a read request the node should return the data it has even if it is not able to guarantee that it is the most recently updated data.
Partition tolerance means even if there is a network partition, i.e. the connection between two nodes breaks and they are not able to communicate back and forth, the system will not be down. Please note that network partition simply means lack of communication between two nodes in a system, it does not mean any of the nodes is down.
In the case of a distributed system, we cannot guarantee that there will be no network partitions, since network connectivity sits outside the scope of our system, to ensure that the system continues to work we either sacrifice consistency or availability.