updating the Linux kernel
Many of your questions may have already been answered in earlier discussions or in the FAQ. The search results page will indicate current discussions as well as past list serves, articles, and papers.
Greg Lindahl glindahl at hpti.comMon Jun 12 09:47:10 PDT 2000
- Previous message: updating the Linux kernel
- Next message: updating the Linux kernel
- Messages sorted by: [ date ] [ thread ] [ subject ] [ author ]
> Do I save all results at every program statement to a file? > Do I have the slaves send the results back to the master after every step > in the calculation? There are 2 solutions. The traditional one is to have the program save its state every Nth timestep to disk. Since failures are rare, the fact that you lose some work and have to wait for disk I/O is acceptable. A more clever but expensive solution is to use only 1/2 of your RAM, and save a copy of all the state to memory of a different node. You can do this more frequently than saving to disk since you have a lot more network bandwidth than disk bandwidth. The bonus is that you lose less work when you do have a failure, and you never wait for (wasted) disk I/O to save the state in the first place. -- greg
- Previous message: updating the Linux kernel
- Next message: updating the Linux kernel
- Messages sorted by: [ date ] [ thread ] [ subject ] [ author ]
More information about the Beowulf mailing list
