Surviving dropped connections
Without --partial, an interrupted rsync deletes the partial destination file and you start over on next run. With --partial, the partial file is kept, and the next run does delta transfer to fill in the rest. For a 50 GB file dropped at 80 %, that's the difference between "start over" and "finish the last 10 GB."
The -P shorthand
-P is --partial --progress in one. For any large transfer, use it. There's no scenario where you want progress hidden and partials discarded.
--partial-dir for cleanliness
Plain --partial leaves partial files at their final destination paths. --partial-dir=.rsync-partial stashes them in a sibling directory until they're complete. Tidier when you don't want half-files mixed with finished ones.