problem statement: I have a portfolio of securities that need to be processed in a parallel fashion. In Java i used a threadpool to process each security, and use a latch to countdown. Once complete I do some merging etc.

So I message my SecurityProcessor(which is an actor), and wait on all the futures to complete. In the end I use a MergeHelper to do the post-processing. The SecurityProcessor takes a security, does some i/o and processing and replies a Security

  val listOfFutures = new ListBuffer[Future[Security]]()
  var portfolioResponse: Portfolio = _
  for (security <- portfolio.getSecurities.toList) {
    val securityProcessor = actorOf[SecurityProcessor].start()
    listOfFutures += (securityProcessor ? security) map {
      _.asInstanceOf[Security]
    }
  }
  val futures = Future.sequence(listOfFutures.toList)
  futures.map {
    listOfSecurities =>
      portfolioResponse = MergeHelper.merge(portfolio, listOfSecurities)
  }.get

Is this design correct, and is there a better/cooler way to implement this common problem using akka?

link|improve this question

55% accept rate
feedback

1 Answer

up vote 3 down vote accepted
val futureResult = Future.sequence(
                  portfolio.getSecurities.toList map { security => (actorOf[SecurityProcessor].start() ? security).mapTo[Security] }
                ) map { securities => MergeHelper.merge(portfolio, securities) }
link|improve this answer
Really loved this suggestion and works as expected until i had to split it and add bunch of Eventhandler.info statements to debug an issue :( – matroyd Nov 21 '11 at 16:14
def debug[T](t: T): T = { EventHandler.info(t); t } – Viktor Klang Nov 21 '11 at 17:23
akka is awesome !! – matroyd Dec 12 '11 at 20:25
I'm very glad you like it, please share your tears of joy and/or pain on the Akka mailinglist! – Viktor Klang Dec 12 '11 at 21:23
feedback

Your Answer

 
or
required, but never shown

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