aboutsummaryrefslogtreecommitdiffstats
path: root/scalding
diff options
context:
space:
mode:
authorBryan Newbold <bnewbold@archive.org>2018-08-20 18:50:07 -0700
committerBryan Newbold <bnewbold@archive.org>2018-08-21 21:25:56 -0700
commit7c49fecd01cbd89bb5987442b89a4aafc1186ff9 (patch)
treec73d532fde19e2492fff573edb1d0ef10d7b084f /scalding
parent9514b6a3620a98e4fc069ca31b77eac6f9c98bec (diff)
downloadsandcrawler-7c49fecd01cbd89bb5987442b89a4aafc1186ff9.tar.gz
sandcrawler-7c49fecd01cbd89bb5987442b89a4aafc1186ff9.zip
make col counter generic
Diffstat (limited to 'scalding')
-rw-r--r--scalding/src/main/scala/sandcrawler/HBaseColCountJob.scala (renamed from scalding/src/main/scala/sandcrawler/GrobidMetadataCountJob.scala)13
1 files changed, 7 insertions, 6 deletions
diff --git a/scalding/src/main/scala/sandcrawler/GrobidMetadataCountJob.scala b/scalding/src/main/scala/sandcrawler/HBaseColCountJob.scala
index 08f3340..a007339 100644
--- a/scalding/src/main/scala/sandcrawler/GrobidMetadataCountJob.scala
+++ b/scalding/src/main/scala/sandcrawler/HBaseColCountJob.scala
@@ -10,27 +10,28 @@ import parallelai.spyglass.hbase.HBaseConstants.SourceMode
import parallelai.spyglass.hbase.HBasePipeConversions
import parallelai.spyglass.hbase.HBaseSource
-class GrobidMetadataCountJob(args: Args) extends JobBase(args) with HBasePipeConversions {
+class HBaseColCountJob(args: Args) extends JobBase(args) with HBasePipeConversions {
val output = args("output")
- GrobidMetadataCountJob.getHBaseSource(
+ HBaseColCountJob.getHBaseSource(
args("hbase-table"),
- args("zookeeper-hosts"))
+ args("zookeeper-hosts"),
+ args("column")
.read
.debug
.groupAll { _.size('count) }
.write(Tsv(output))
}
-object GrobidMetadataCountJob {
+object HBaseColCountJob {
// eg, "wbgrp-journal-extract-0-qa",7 "mtrcs-zk1.us.archive.org:2181"
- def getHBaseSource(hbaseTable: String, zookeeperHosts: String) : HBaseSource = {
+ def getHBaseSource(hbaseTable: String, zookeeperHosts: String, col: String) : HBaseSource = {
HBaseBuilder.build(
hbaseTable,
zookeeperHosts,
- List("grobid0:metadata"),
+ List(col),
SourceMode.SCAN_ALL)
}
}