in reply to Could there be ThreadedMapReduce (and/or ForkedMapReduce) instead of DistributedMapReduce?

Unless something has really changed within Perl recently, ithreads won't do what you want here, as they are not OS threads. You'll still have one process on one processor.

  • Comment on Re: Could there be ThreadedMapReduce (and/or ForkedMapReduce) instead of DistributedMapReduce?

Replies are listed 'Best First'.
Re^2: Could there be ThreadedMapReduce (and/or ForkedMapReduce) instead of DistributedMapReduce?
by tphyahoo (Vicar) on Oct 20, 2006 at 18:49 UTC
    So maybe I would need to use forks, and store part of the computation on the hard drive, in some temp directory?

    That's ok by me, as long as the abstraction is hidden away and reduceForked( $functionBuilder, $arrayref, $initvalue ) always does what I mean.

    I want this. Bad :)