This document discusses scaling R to large datasets using Scala and Akka. It describes how R has limitations for parallelism and handling large data in memory. The author demonstrates reading a large CSV file of 100 million doubles (1.7GB) in parallel using Scala, Akka actors and Rserve. Producer and Worker actors divide the file and sum parts in Rserve. This allows scaling R computations to large data beyond a single machine's memory. Potential applications mentioned include optimization, distributed linear algebra, machine learning and statistics.