Cluster beowulf

I need to create a cluster and I wonder if the beowulf cluster type automatically distributes tasks to nodes without having to configure. E.g. an Apache server will automatically distribute processing with us? Or need to install an apache server different?
 
Your question is not clear to me. Do you want failover Apache (HA) cluster or compute cluster (parallel computing)? Apache mostly comes under HA failover cluster. It will be behind load balancer (LB). LB can be crated using reverse proxy server such as nginx or any other supported Open Source software. LB need to share and create VIP (virtual IP) using pf+CARP or any other open source software.

Parallel computing is used for simulations, financial modeling, large data set mining and crunching.
 
HA and clustering are different techniques with different implementations. What you are probably looking for is a HA solution. Have a look at net/haproxy. Or, as Vivek mentioned, carp(4). But I'm not sure if carp would scale well with 16 machines or if it's the right solution for you.
 
Back
Top