def scaldingWithAlgebird()

in src/main/scala/com/spotify/bdrc/pipeline/Count.scala [39:44]


  def scaldingWithAlgebird(input: TypedPipe[Rating]): TypedPipe[Long] = {
    import com.twitter.algebird.Aggregator.size
    input
      .aggregate(size)
      .toTypedPipe
  }