No.
No, it's not.
Fail early, fail fast, crash loudly, and then react. That, plus deep validation testing, is how you build robust systems. Trying to soldier on when things are wrong just propagates bad data and bad behaviour into a larger surface area that needs cleanup.
Assert everything, even in production. Capture all failures and action each one (turn a 500 crash into a validation failure 400, etc)
Monitor all logs for unexpected/new anomalies.
Be vigilant around testing. Failure cases are part of the spec, too!
That's how robust systems are really built!
With respect to local functions, I think most developers would agree that defensive programming is well-regarded (otherwise this browser would crash on half the web pages I visit).
With respect to distributed system, basically the rest of that section agrees with you, concluding with:
"In fact, using a middleware or services layer that forces engineers to think about their resilience strategies in the face of network failures is quite valuable. After all, the engineers are the best people to decide how a system should behave when things go wrong."
So you basically just re-iterated what the author wrote.
Distributed computing is going to be less efficient than centralized system, now you have multiple vectors susceptible attack...
I find the best architecture is a detached standalone-tenancy meaning a copy of the web application distributed as an image running on a different server assets distributed across different web host providers. 1 clone of your app = 1 domain = 1 customer
This way DDOS attack requires knowing all of your customer's domains which runs your web application, and it dramatically increases the cost of launching a successful and prolonged DDOS attack. The attacker even with a huge bandwidth rate now has to spread it thin across hundreds of your customers website.
Sure your own website hosted on amazon s3 could take a hit but your customers are still able to run their business without drama from foreign state actors or xbox players.
Microservices is about management, not about code.
As another commenter mentioned, Netflix designed Hystrix to guard against this specific scenario. There are important lessons here regardless of our local app design.