Reputation: 303
I have a rookie question. Suppose we have a website (www.abc.com) on server 1 and a second website www.xyz.com on server 2 and the second website is referencing some files(css or javascript) on server 1. Can high traffic on server 1 slow down server 2?
Upvotes: 1
Views: 89
Reputation: 1189
Yes, It can slow down other websites which are hosted on same server or hosted on other server.
It can happen due to following few issues:
If you do not properly manage IIS it hampers server performance.
If you used IIS7 onward then IIS can internally manage 2nd and 3rd issue for you.
Upvotes: 2
Reputation: 442
Yes. I've seen it happen. In the case I witnessed, server 2 was serving something more complex than just static files, it was a widget that displayed on the server 1's site. That widget in turn, did a DB query on server 2's DB, and the rest is history.
It's certainly less troublesome to server 2, if it's only serving static files, but again the short answer is yes, that the traffic can become a strain on server 2 no matter what is being served, if the traffic is high enough.
Upvotes: 1
Reputation: 47705
Yes, it is possible. You can read about something related, the slashdot effect at wikipedia, that explains real cases in an informative way.
Upvotes: 1