Is there a way to build cluster machine that behaves like a single PC?

0

Is there some way to build a cluster from several desktops in such a way, that it can run an unprepared application and be seen as just a multicore CPU? I understand it will be a lot slower than running Beowulf with a prepared MPI calculation, but we have no sources of the app we want to run on cluster. It just uses posix-multithreading. Anything?

Barafu Albino

Posted 2014-03-28T18:59:49.170

Reputation: 245

Question was closed 2014-04-01T15:34:15.130

possible duplicate of Is it possible to combine processing power of 2 computers?

– Moses – 2014-04-01T00:16:09.890

I am asking exactly how to avoid solutions offered in that question – Barafu Albino – 2014-04-01T05:11:37.703

Answers

2

If that is a Linux program, the Kerrighed patches on Linux 2.6.30 can be used to create a Linux single system image cluster.

Dan D.

Posted 2014-03-28T18:59:49.170

Reputation: 5 138

0

It's very hard... If the app itself doesn't have the ability for outsourcing, then we can do nothing.

But maybe you can explore an alternative way. For example, if the function of your app is to process some input and generate some output, why not just dividing the input into multiple groups and distribute them over multiple machines?

Dan

Posted 2014-03-28T18:59:49.170

Reputation: 1