Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Can I emulate MS Compute Cluster Server on my dev machine?

I have a project for a client that will consist of managing jobs on a MS Compute Cluster. I will be developing the application outside of their network, and would like a way to develop/debug my app without the need to be on their network.

I am developing the app in C#, and all I have so far is the Microsoft Compute Cluster Pack SDK.

like image 909
Todd Avatar asked Nov 06 '22 22:11

Todd


2 Answers

The webcast was helpful, in that it lead me to the MPI.Net API. MPI.Net will allow me to write an executable that can be launched via mpiexec.exe, and can manage the process of creating and monitoring parallel tasks. From what I understand, the head node in the cluster will automatically delegate each task to the appropriate compute nodes for me.

Since mpiexec.exe ships with the ComputeCluster SDK, and will run on my multi core dev machine, this may be close enough to cluster emulation for me to get my job done.

Thanks for your help.

like image 58
Todd Avatar answered Nov 12 '22 09:11

Todd


Depending on the "beefyness" of your development machine, you could set up a local cluster relatively easily using HyperV. You aren't going to see the productivity gains of an actual cluster/actual hardware, but for management tools such as you are trying to build it should work fine. A commodity box with 4-8 GB of ram should do nicely to create a head node and two child nodes for dev/test.

like image 29
argodev Avatar answered Nov 12 '22 11:11

argodev