Linux vs. BSD on EC2
From a strictly computational perspective, which OS platform is better suited for this? My guess is that this contest would be between Linux and BSD (Solaris has too fat an ass?). From what I understand, the BSDs are tightly engineered with the goals of performance and efficiency in mind (still has the best networking stack, or so I hear), whereas Linux may tend to be more hackish (I am not an authority here!). However, Linux's advantage could be its modularity, making it easier to shape it to specialized puposes (like cloud computing).
I've heard a lot of geeks say that although Linux makes for a better free desktop, a BSD would be their first choice as a server.
So, in the cloud computing landscape, who will perform better? A tight BSD image, or a tight Linux image? Which will be more efficient in terms of computational resources used?
BONUS QUESTION: Do you think virtualization services like EC2 will drive the creation of new *nix variants that are optimized for max price/performance on cloud services? If you know of any that exist now, please post links!
8 comments
[ 3.0 ms ] story [ 36.2 ms ] threadLeaving that minor detail aside, I (unsurprisingly) think FreeBSD is much better than any variety of linux for this purpose. The first rule of running servers is "apply security patches", while the second rule is "don't break things" (some people reverse these two...). FreeBSD works with a concept of "stable branches", and as a general rule, FreeBSD does not break APIs or ABIs except across major version upgrades. In contrast, security patches to linux have been known to change kernel/userland interfaces, as well as kernel APIs -- either of which can result in system administrators needing to run around fixing things after applying a security update.
This is even more relevant in the context of cloud computing, where the patching (or not patching) of the operating system is performed by someone (e.g., Amazon) other than the people actually using the virtual machine instances. I don't think Amazon has really figured out what to do with linux here; but for FreeBSD the right answer is simple: Update images as soon as security updates are released, secure in the knowledge that doing so won't break anything.
Anybody else know of any VPS's that offer BSD?