Does a RAID 1 really protect from HDD failure?
Solution 1:
You mean if the disk is damaged such that corrupted data is read off it that appears legitimate? That's not a "normal failure". RAID 1 protects against normal failures of a single disk.
It also won't protect you if one disk catches on fire and blows up the other one. These are "abnormal failures". For example, if one disk's write hardware breaks and it doesn't really write data but doesn't report errors, then RAID 1 will fail.
Modern disks have data error detection. So unless there's something like a firmware bug, if data cannot be read accurately, the disk should be able to report it.
An inconsistency between two disks in a functioning RAID 1 array is already a failed condition caused by something outside what the RAID 1 array protects against. For example, it could occur if power is removed. But RAID 1 is not supposed to protect you against power loss. So it doesn't matter if it corrupts data in that case -- it's not supposed to not do that. Whichever disk it copies is fine. It doesn't matter. Neither is more correct than the other.
RAID 1 makes sense if you want to protect against the failure of one device. Write endurance has nothing to do with anything. A RAID 1 array will fail if either device cannot be written to.
RAID is not backup. RAID only gives you the ability to tolerate a specific category of faults. If your fault is not one of those in that specific category, RAID won't help you and can even hurt you.