Earlier quoted context omitted.
Real servers can't be bought without IPMI and AFAIK the BMC cannot be turned off, so it's probably not worth worrying about BMC power if there's nothing you can do about it.
Sure, but as you're aware facebook, google, et al don't buy "real servers", they buy servers that actually meet their requirements. That's why "real vendors" like HP have missed the boat on selling millions of servers into the cloud.
Making Facebook’s software infrastructure more energy efficient with Autoscale
11–20 of 28 posts
Re: Making Facebook’s software infrastructure more energy efficient with Autoscale
#12Earlier quoted context omitted.
Getting IPMI controllers to do what you want is anything but trivial :)
Seriously. A person who would advocate using IPMI at scale has either never owned an IPMI card or has never worked at scale or both. The just don't work, and they erase whatever power savings you're trying to achieve.
Re: Making Facebook’s software infrastructure more energy efficient with Autoscale
#13Earlier quoted context omitted.
Getting IPMI controllers to do what you want is anything but trivial :)
Seriously. A person who would advocate using IPMI at scale has either never owned an IPMI card or has never worked at scale or both. The just don't work, and they erase whatever power savings you're trying to achieve.
I ran out of motivation, but I did manage to fix up some of the SuperMicro IPMI firmware: https://github.com/devicenull/supermicro_ipmi_firmware
Re: Making Facebook’s software infrastructure more energy efficient with Autoscale
#14Earlier quoted context omitted.
You know that would be trivial to do with bare metal and out of band management cards like Dell Dracs, IBM RSA cards, HP ILOs, or generic IPMI BMCs, right? Virtualization doesn't really add much of anything for that specific problem other than increased context switching and slightly lower performance. Disclaimer: building this type of thing (on bare metal) is a chunk of my day job. I see it as unbelievably trivial.…
If you want to power manage your pets, VMware makes sense. But yeah, there's a reason Facebook doesn't use virtualization.
If they do use virtualization, the fact, 0 request lead to low power does not correct any more, for example linux container, other container may accept requests, if so they have to dispatch request cross all containers and servers.
Re: Making Facebook’s software infrastructure more energy efficient with Autoscale
#15Basically, we found it was possible to shut down machines in periods of low load and then use "Wake On Lan" to start them up once load picked up again.
I am unsure if the on-off power cycling reduces machine longevity.
Might be something worth exploring at Facebook.
Re: Making Facebook’s software infrastructure more energy efficient with Autoscale
#16Vfx companies have software that turn off renddr farm machines in periods of low load. I helped write software that did this backin 2006. Basically, we found it was possible to shut down machines in periods of low load and then use "Wake On Lan" to start them up once load picked up again. I am unsure if the on-off power cycling reduces machine longevity. Might be something worth exploring at Facebook.
Possibly the disks are the most vulnerable components. I wonder if it would be possible in software to shut down the CPUs and have only disks + network running...
Re: Making Facebook’s software infrastructure more energy efficient with Autoscale
#17Re: Making Facebook’s software infrastructure more energy efficient with Autoscale
#18Vfx companies have software that turn off renddr farm machines in periods of low load. I helped write software that did this backin 2006. Basically, we found it was possible to shut down machines in periods of low load and then use "Wake On Lan" to start them up once load picked up again. I am unsure if the on-off power cycling reduces machine longevity. Might be something worth exploring at Facebook.
> I am unsure if the on-off power cycling reduces machine longevity. Possibly the disks are the most vulnerable components. I wonder if it would be possible in software to shut down the CPUs and have only disks + network running...
The downside is latency associated with changing state. Depending on the change it can be hundreds or thousands of micros to go through these states. On a server workload this can introduce huge latency outliers as a request blocks on a core to wake up.
Re: Making Facebook’s software infrastructure more energy efficient with Autoscale
#19Earlier quoted context omitted.
> I am unsure if the on-off power cycling reduces machine longevity. Possibly the disks are the most vulnerable components. I wonder if it would be possible in software to shut down the CPUs and have only disks + network running...
A bit late to the party on this one. Check out cpu "c states" and things like intels "speedstep." Modern cpus can reduce/shutdown power to individual packages and cores. This can reduce power consumption from a hundred tdp to tens of tdp. The downside is latency associated with changing state. Depending on the change it can be hundreds or thousands of micros to go through these states. On a server workload this can i…
If you're shutting down, you have massive latency anyway but if it's possible to at least save all the power not required for keeping disks up that 'd be great.
Re: Making Facebook’s software infrastructure more energy efficient with Autoscale
#20Earlier quoted context omitted.
If you want to power manage your pets, VMware makes sense. But yeah, there's a reason Facebook doesn't use virtualization.
I am curious why Facebook don't use? If they do use virtualization, the fact, 0 request lead to low power does not correct any more, for example linux container, other container may accept requests, if so they have to dispatch request cross all containers and servers.