Scalaz(52)- scalaz-stream: 并行运算-parallel processing concurrently by merging

   如果scalaz-stream真的是一个实用的数据流编程工具库的话,那它应该能处理同时从多个数据源获取数据以及把数据同时送到多个终点(Sink),最重要的是它应该可以实现高度灵活的多线程运算。但是:我们说Process代表了一串可能是无穷的元素。这个一串的意思是多个按序排列的元素。也就是说如果我们有一个Process(a,b,c),那么我们只能按顺序来进行运算:我们只能在完成了对a的运算后才能运算b。这样也说得过去:它让我们更容易理解scalaz-stream Process的运算过程。面对scalaz-stream这样的特性我们应该怎样去实现它的并行运算呢?实际上在很多应用场景中我们对运算结果的排列顺序并不关心,我们只对运算结果内容感兴趣。如:从数据库库存表中查询商品价格大于100的所有商品,这时我们对读出商品记录的顺序并不关心,我们只对每条记录的价格感兴趣。如果我们从很多源头(数据表)读取商品信息的话,可以同时对这些源头进行并行读取。scalaz-stream是通过merge来实现并行运算的。merge可以同时读取多个数据源然后产生一个合并的数据流。由于各个源头的滞后情况有所不同,所以merge产生结果的顺序是不可预测的(nondeterministic)。我们用个例子来示范有那些方法可以同时从三个文件中逐行读取文字然后再合并成一个多行文件:

val p1 = io linesR s"/Users/Tiger/Process.scala"  
//> p1  : scalaz.stream.Process[scalaz.concurrent.Task,String] = Await(scalaz.concurrent.Task@7494e528,<function1>,<function1>)
val p2 = io linesR s"/Users/Tiger/Wye.scala"      
//> p2  : scalaz.stream.Process[scalaz.concurrent.Task,String] = Await(scalaz.concurrent.Task@1f554b06,<function1>,<function1>)
val p3 = io linesR s"/Users/Tiger/Tee.scala"     
//> p3  : scalaz.stream.Process[scalaz.concurrent.Task,String] = Await(scalaz.concurrent.Task@694e1548,<function1>,<function1>)


p1,p2,p3是三个Source。它们分别从Process.scala, Wye.scala, Tee.scala中读取数据。我们可以模拟读取数据时可能遇到的延迟:

//假定读取数据造成不确定延迟
def readDelay(i: Int) = Thread.sleep( i/10 )      //> readDelay: (i: Int)Unit
val pa = p1.map{ s => readDelay(s.length); s}     //> pa  : scalaz.stream.Process[scalaz.concurrent.Task,String] = Await(scalaz.concurrent.Task@7494e528,<function1>,<function1>)
val pb = p2.map{ s => readDelay(s.length); s}     //> pb  : scalaz.stream.Process[scalaz.concurrent.Task,String] = Await(scalaz.concurrent.Task@1f554b06,<function1>,<function1>)
val pc = p3.map{ s => readDelay(s.length); s}     //> pc  : scalaz.stream.Process[scalaz.concurrent.Task,String] = Await(scalaz.concurrent.Task@694e1548,<function1>,<function1>)


现在pa,pb,pc都按照所读文件中每行文字长度来产生滞延。下面我们先统计一下每个Process运算所需要的时间:

val pa_start = System.currentTimeMillis           //> pa_start  : Long = 1470051661503
val palines= pa.runFoldMap(_ => 1).run            //> palines  : Int = 1616
println(s"reading p1 $palines lines in ${System.currentTimeMillis - pa_start}ms")
                                                  //> reading p1 1616 lines in 6413ms
val pb_start = System.currentTimeMillis           //> pb_start  : Long = 1470051667917
val pblines=pb.runFoldMap(_ => 1).run             //> pblines  : Int = 901
println(s"reading p2 $pblines lines in ${System.currentTimeMillis - pb_start}ms")
                                                  //> reading p2 901 lines in 3275ms
val pc_start = System.currentTimeMillis           //> pc_start  : Long = 1470051671192
val pclines=pc.runFoldMap(_ => 1).run             //> pclines  : Int = 306
println(s"reading p3 $pclines lines in ${System.currentTimeMillis - pc_start}ms")
                                                  //> reading p3 306 lines in 1181ms
println(s"reading all ${palines+pblines+pclines} lines in ${System.currentTimeMillis - pa_start}ms")
                                                  //> reading all 2823 lines in 10870ms


三个文件总共有2823行,读取时间为10870ms。我们用append方式来连续运算:

val pl_start = System.currentTimeMillis           //> pl_start  : Long = 1470051672373
val plines = (pa ++ pb ++ pc).runFoldMap(_ => 1).run
                                                  //> plines  : Int = 2823
println(s"continue reading $plines in ${System.currentTimeMillis - pl_start}ms")
                                                  //> continue reading 2823 in 10501ms


连续运算所需时间10501ms,稍微短于分开运算结果。那么如果我们用merge来并行运算呢?

val par_start = System.currentTimeMillis          //> par_start  : Long = 1470051682874
val parlines = (pa merge pb merge pc).runFoldMap(_ => 1).run
                                                  //> parlines  : Int = 2823
println(s"parallel reading $parlines in ${System.currentTimeMillis - par_start}ms")
                                                  //> parallel reading 2823 in 6278ms


现在整个运算只需要6278ms,约莫是连续运算所需时间的60%。当然,如果我们需要从更多的源头读取数据的话,那么merge方法可以实现更高的效率提升。但是,由于stream可能是一串无穷的元素,我们更需要对一个stream无穷的元素实现并行运算。在上面的例子里我们用merge把三个源头的数据合并成为一个更长的数据串,如果我们对其中每条记录进行运算如抽取、对比筛选等的话,那么运算时间仍然与数据串的长度成直线正比。比如:在以上例子的基础上,我们需要对合并的数据进行统计:计算出使用元音(vowl)的频率的。我们可以先把每条记录中的vowl过滤出来;然后把所有筛选出来的记录加起来就能得出这个统计结果了:

//c 是个vowl
def vowls(c: Char): Boolean = List('A','E','I','O','U').contains(c)
                                                  //> vowls: (c: Char)Boolean

//返回Map代表每个字符频率, 测试使用了scalaz.Lens
def vowlCount(text: String): Map[Char,Int] = {
    text.toUpperCase.toList.filter(vowls).foldLeft(Map[Char,Int]()) { (b,a) =>
      if ((Lens.mapVLens(a) get b) == None) Lens.mapVLens(a) set(b,1.some)
      else Lens.mapVLens(a).set(b, (Lens.mapVLens(a) get b).map(_ + 1))
    }
 }                                                //> vowlCount: (text: String)Map[Char,Int]
//直接用scala标准库实现
def stdVowlsCount(text: String): Map[Char,Int] =
  text.toUpperCase.toList.filter(vowls).groupBy(s => s).mapValues(_.size)
                                                  //> stdVowlsCount: (text: String)Map[Char,Int]

我们先按序运算结果:

//为runFoldMap提供一个Map[Char,Int]Monoid实例
implicit object mapMonoid extends Monoid[Map[Char,Int]]  {
   def zero: Map[Char,Int] = Map()
   def append(m1: Map[Char,Int], m2: => Map[Char,Int]): Map[Char,Int] = {
     (m1.keySet ++ m2.keySet).map { k =>
       (k, m1.getOrElse(k,0) + m2.getOrElse(k,0))
     }.toMap
   }
}

val cnt_start = System.currentTimeMillis          //> cnt_start  : Long = 1470197392016
val merged = (pa merge pb merge pc)
  .map(vowlCount)
  .runFoldMap(identity).run                       //> merged  : Map[Char,Int] = Map(E -> 7330, U -> 1483, A -> 4531, I -> 4393, O-> 3748)
println(s"calc vowl frequency in ${System.currentTimeMillis - cnt_start}ms")
                                                  //> calc vowl frequency in 28646ms


整个运算需要28646ms。实际上 这些运算不会依赖每条记录的排列位置,那么如果能够实现并行运算的话可能会提高效率。scalaz-stream提供了merge.mergeN方法来支持对一顺数据流进行并行运算。merge.mergeN函数的款式如下:

/**
   * Merges non-deterministically processes that are output of the `source` process.
   *
   * Merging stops when all processes generated by source have stopped, and all source process stopped as well.
   * Merging will also stop when resulting process terminated. In that case the cleanup of all `source`
   * processes is run, followed by cleanup of resulting process.
   *
   * When one of the source processes fails the mergeN process will fail with that reason.
   *
   * Merging is non-deterministic, but is fair in sense that every process is consulted, once it has `A` ready.
   * That means processes that are `faster` provide it's `A` more often than slower processes.
   *
   * Internally mergeN keeps small buffer that reads ahead up to `n` values of `A` where `n` equals to number
   * of active source streams. That does not mean that every `source` process is consulted in this read-ahead
   * cache, it just tries to be as much fair as possible when processes provide their `A` on almost the same speed.
   *
   */
  def mergeN[A](source: Process[Task, Process[Task, A]])(implicit S: Strategy): Process[Task, A] =
    scalaz.stream.nondeterminism.njoin(0, 0)(source)(S)

  /**
   * MergeN variant, that allows to specify maximum of open `source` processes.
   * If, the maxOpen is <= 0 it acts like standard mergeN, where the number of processes open is not limited.
   * However, when the maxOpen > 0, then at any time only `maxOpen` processes will be running at any time
   *
   * This allows for limiting the eventual concurrent processing of opened streams not only by supplied strategy,
   * but also by providing a `maxOpen` value.
   *
   *
   * @param maxOpen   Max number of open (running) processes at a time
   * @param source    source of processes to merge
   */
  def mergeN[A](maxOpen: Int)(source: Process[Task, Process[Task, A]])(implicit S: Strategy): Process[Task, A] =
    scalaz.stream.nondeterminism.njoin(maxOpen, maxOpen)(source)(S)


mergeN的入参source类型款式是这样的:Process[Task,Process[Task,A]],意思是在Process里还有一个Process。这个内部Process是并行运算的。这样的类型款式也可以被理解为:内部的Process是读取数据库的记录(data),我们可以同时从多个源头读取数据,外部Process是数据库连接(connection)。应用在我们上面的例子里:内部Process就是vowlCount作业,因为我们希望对每条记录的vowlCount并行处理。那么我们先要进行类型款式转换:从Process[Task,A] 转换到 Process[Task,Process[Task,A]]:

val merged = (pa merge pb merge pc)               //> merged  : scalaz.stream.Process[scalaz.concurrent.Task,String] = Append(Hal
                                                  //| t(End),Vector(<function1>))
val par = merged.map {text => Task {vowlCount(text)} }
          .map {task => Process.eval(task)}       //> par  : scalaz.stream.Process[scalaz.concurrent.Task,scalaz.stream.Process[scalaz.concurrent.Task,Map[Char,Int]]] = Append(Halt(End),Vector(<function1>))

这个par的类型是我们希望的了。现在我们可以看看mergeN运算的效率:

val cnt_start = System.currentTimeMillis          //> cnt_start  : Long = 1470204623562
val merged = (pa merge pb merge pc)               //> merged  : scalaz.stream.Process[scalaz.concurrent.Task,String] = Append(Halt(End),Vector(<function1>))
val par = merged.map {text => Task {vowlCount(text)} }
          .map {task => Process.eval(task)}       //> par  : scalaz.stream.Process[scalaz.concurrent.Task,scalaz.stream.Process[scalaz.concurrent.Task,Map[Char,Int]]] = Append(Halt(End),Vector(<function1>))
val resm = merge.mergeN(par).runFoldMap(identity).run
                                                  //> resm  : Map[Char,Int] = Map(E -> 7330, U -> 1483, A -> 4531, I -> 4393, O -> 3748)
println(s"parallel calc vowl frequency in ${System.currentTimeMillis - cnt_start}ms")
                                                  //> parallel calc vowl frequency in 6922ms


看看这个结果:从28646ms降到6922,约莫4倍效率的提高,够显著的了。如果我们把上面这个例子用在实际的数据库操作上:比如对几个数据库表里的所有在一定价格范围内商品购买次数进行统计等,我们是可以在scalaz-stream里实现这个场景并行运算的。














  • 0
    点赞
  • 1
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值