The documentation on the pmap function leaves me wondering how efficient it would be for something like fetching a collection of XML feeds over the web. I have no idea how many concurrent fetch operations pmap would spawn and what the maximum would be.

link|improve this question

feedback

3 Answers

up vote 4 down vote accepted

If you check the source you see:

> (use 'clojure.repl)
> (source pmap)
(defn pmap
  "Like map, except f is applied in parallel. Semi-lazy in that the
  parallel computation stays ahead of the consumption, but doesn't
  realize the entire result unless required. Only useful for
  computationally intensive functions where the time of f dominates
  the coordination overhead."
  {:added "1.0"}
  ([f coll]
   (let [n (+ 2 (.. Runtime getRuntime availableProcessors))
         rets (map #(future (f %)) coll)
         step (fn step [[x & xs :as vs] fs]
                (lazy-seq
                 (if-let [s (seq fs)]
                   (cons (deref x) (step xs (rest s)))
                   (map deref vs))))]
     (step rets (drop n rets))))
  ([f coll & colls]
   (let [step (fn step [cs]
                (lazy-seq
                 (let [ss (map seq cs)]
                   (when (every? identity ss)
                     (cons (map first ss) (step (map rest ss)))))))]
     (pmap #(apply f %) (step (cons coll colls))))))

The (+ 2 (.. Runtime getRuntime availableProcessors)) is a big clue there. pmap will grab the first (+ 2 processors) pieces of work and run them asynchronously via future. So if you have 2 cores, it's going to launch 4 pieces of work at a time, trying to keep a bit ahead of you but the max should be 2+n.

future ultimately uses the agent I/O thread pool which supports an unbounded number of threads. It will grow as work is thrown at it and shrink if threads are unused.

link|improve this answer
So is the short answer that pmap is perfectly fine for dispatching a lot of web calls and processing the responses? Are there any caveats? – dan Feb 16 '11 at 22:57
1  
I may be wrong, but the issue will probably be that the n+2 threads will block waiting for web responses. So you won't get enough in-flight requests for maximum throughput - pmap is really intended for CPU-bound workloads. If this is happening to you, then you can just wrap each request call in a future and they will all fly off at once. – mikera Feb 17 '11 at 0:21
Well there's never a short answer with concurrency. :) I'd say that pmap is not actually ideal for this use case. You really want to wait for all of the sources in parallel - pmap will delay starting the 5th one in the case above. UNLESS, you don't necessarily want to get through all your sources, in which case pmap's lazy behavior is good. I would be tempted for your stuff to instead map over sources and use future to make each request. – Alex Miller Feb 17 '11 at 0:23
feedback

Building on Alex's excellent answer that explains how pmap works, here's my suggestion for your situation:

(doall
  (map
    #(future (my-web-fetch-function %))
    list-of-xml-feeds-to-fetch))

Rationale:

  • You want as many pieces of work in-flight as you can, since most will block on network IO.
  • Future will fire off an asynchronous piece of work for each request, to be handled in a thread pool. You can let Clojure take care of that intelligently.
  • The doall on the map will force the evaluation of the full sequence (i.e. the launch of all the requests).
  • Your main thread can start dereferencing the futures right away, and can therefore continue making progress as the individual results come back
link|improve this answer
feedback

No time to write a long response, but there's a clojure.contrib http-agent which creates each get/post request as its own agent. So you can fire off a thousand requests and they'll all run in parallel and complete as the results come in.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.