aboutsummaryrefslogtreecommitdiffstats
path: root/scald-mvp/src/main/scala/sandcrawler/HBaseRowCountJob.scala
blob: 23c4764634ad4f8cb94c695fd92f0557d9f27708 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
package sandcrawler

import com.twitter.scalding._
import parallelai.spyglass.hbase.{HBaseSource, HBasePipeConversions, HBaseConstants}
import parallelai.spyglass.hbase.HBaseConstants.SourceMode
import cascading.tuple.Fields

class HBaseRowCountJob(args: Args) extends Job(args) with HBasePipeConversions {

  // For now doesn't actually count, just dumps a "word count"

  val output = args("output")

  val hbs = new HBaseSource(
    "wbgrp-journal-extract-0-qa",     // HBase Table Name
    "mtrcs-zk1.us.archive.org:2181",  // HBase Zookeeper server (to get runtime config info; can be array?)
     new Fields("key"),
     List("column_family"),
    sourceMode = SourceMode.SCAN_ALL)
    .read
    .debug
    .fromBytesWritable(new Fields("key"))
    .write(Tsv(output format "get_list"))
}