Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I know about the parallel collections in Scala. They are handy! However, I would like to iterate over the lines of a file that is too large for memory in parallel. I could create threads and set up a lock over a Scanner, for example, but it would be great if I could run code such as:

Source.fromFile(path).getLines.par foreach { line =>

Unfortunately, however

error: value par is not a member of Iterator[String]

What is the easiest way to accomplish some parallelism here? For now, I will read in somes lines and handle them in parallel.

share|improve this question
You could create an array of actors and dispatch each line as a message to one of the actors. That way at least you don't have to mess with locking. – Kim Stebel Jul 19 '11 at 17:54
@kim But does this block, so the file doesn't spam the mailboxes? – ziggystar Jul 19 '11 at 19:43
1  
It does not block, so the mailboxes would get spammed. However, the actors could explicitly request work from the actor that reads the file. – Kim Stebel Jul 19 '11 at 20:50

4 Answers

up vote 12 down vote accepted

You could use grouping to easily slice the iterator into chunks you can load into memory and then process in parallel.

val chunkSize = 128 * 1024
val iterator = Source.fromFile(path).getLines.grouped(chunkSize)
iterator.foreach { lines => 
    lines.par.foreach { line => process(line) }
}

In my opinion, something like this is the simplest way to do it.

share|improve this answer
Won't calling grouped on getLines still have to load the whole file into memory? Or am I way off base? – Ian McLaird Jul 20 '11 at 4:33
2  
It shouldn't because operations on iterators are usually as lazy as possible. For instance, map will produce a new iterator from the original without looping through the underlying collection. To verify, I actually looked at the latest scala source. Grouping the iterator produces a GroupedIterator class that does some internal buffering of the stream to group it into chunks. It does not force traversal of the entire iterator. – Joshua Hartman Jul 20 '11 at 15:29

I'll put this as a separate answer since it's fundamentally different from my last one (and it actually works)

Here's an outline for a solution using actors, which is basically what Kim Stebel's comment describes. There are two actor classes, a single FileReader actor that reads individual lines from the file on demand, and several Worker actors. The workers all send requests for lines to the reader, and process lines in parallel as they are read from the file.

I'm using Akka actors here but using another implementation is basically the same idea.

case object LineRequest
case object BeginProcessing

class FileReader extends Actor {

  //reads a single line from the file or returns None if EOF
  def getLine:Option[String] = ...

  def receive = {
    case LineRequest => self.sender.foreach{_ ! getLine} //sender is an Option[ActorRef]
  }
}

class Worker(reader: ActorRef) extends Actor {

  def process(line:String) ...

  def receive = {
    case BeginProcessing => reader ! LineRequest
    case Some(line) => {
      process(line)
      reader ! LineRequest
    }
    case None => self.stop
  }
}

val reader = actorOf[FileReader].start    
val workers = Vector.fill(4)(actorOf(new Worker(reader)).start)
workers.foreach{_ ! BeginProcessing}
//wait for the workers to stop...

This way, no more than 4 (or however many workers you have) unprocessed lines are in memory at a time.

share|improve this answer

Easiest solution is just convert the Iterator to a list

Source.fromFile(path).getLines.toList.par foreach { line =>

Edit: I missed the part about the file being too large to process entirely in memory. In this case, you should probably use a regular Java BufferedReader to read the lines in one at a time. Then you can use a mutable queue or list to build a reasonably-sized collection and then use the parallel foreach.

share|improve this answer
Would using toList case the whole source to be loaded into memory, or does it work in a "lazy" way? -- based on your edit I'd say yes to the former. – Dylan Jul 19 '11 at 17:59
toList will not be called until getLines has completed, which means the entire file is read into memory and split into lines. So that wouldn't work well on very large files. – Dan Simon Jul 19 '11 at 18:09

The comments on Dan Simon's answer got me thinking. Why don't we try wrapping the Source in a Stream:

def src(source: Source) = Stream[String] = {
  if (source.hasNext) Stream.cons(source.takeWhile( _ != '\n' ).mkString)
  else Stream.empty
}

Then you could consume it in parallel like this:

src(Source.fromFile(path)).par foreach process

I tried this out, and it compiles and runs at any rate. I'm not honestly sure if it's loading the whole file into memory or not, but I don't think it is.

share|improve this answer
According to this blog post, the elements of a Stream are saved in memory after being evaluated, so even though lines are processed as they're read in, it will ultimately fill up memory as before, but I think you're on the right track here. I think combining this with Joshua Hartman's chunking idea and using Stream.drop will work. – Dan Simon Jul 20 '11 at 5:15
In addition to that, calling par will evaluate all the elements and create a strict parallel collection. There is no such collection as a parallel stream (at least not yet). – axel22 Jul 20 '11 at 11:25
Thanks for the comments, guys. You've taught me some things. – Ian McLaird Jul 20 '11 at 12:17

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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