1

My company uses Apache cloud stack, but we are planing on upgrading our on premise cluster, and change our IAAS from Cloud-Stack to Open-stack my question is, can we use different servers generations, CPUs. I found services online that offer heterogeneous support as a sale point while they are based on Open-Stack. Note: Open-Stack NOVA / Magnum solutions

  • 2
    OpenStack contains a [wide variety of more or less related software components](https://www.openstack.org/software/). Some are more suitable for a heterogeneous infrastructure than others. It might be helpful to know which components you intend to use. – Gerald Schneider Aug 21 '17 at 07:59
  • Okay, I would say NOVA / Magnum because we have a web application. as for storage; we only using one unit currently for the cluster, but in production projects we will go with one storage method/protocol. i'm not sure about networking. – Saleh Alshaikh-navigator Aug 21 '17 at 08:30

1 Answers1

1

The whole basis of OpenStack is that you can run it on any hardware you have available, it doesn't have to be homogeneous. That being said, it is helpful for some components to be identical.

Regarding Nova instances, for example, if you want to do live migrations of virtual machines from host to host the CPU has to be identical. If you don't need that, or you emulate the same CPU on all hosts regardless of what CPU is built into them, you should have no problems.

Regarding containers controlled with Magnum: Live migrations are not done here, you just start and stop the containers on any host available. As long as no specific CPU flags are needed by your application there is no problem here either with differing hosts.

Gerald Schneider
  • 23,274
  • 8
  • 57
  • 89