aboutsummaryrefslogtreecommitdiffstats
path: root/scalding/src/main/scala/sandcrawler/HBaseRowCountJob.scala
diff options
context:
space:
mode:
authorBryan Newbold <bnewbold@archive.org>2018-07-13 15:02:56 -0400
committerBryan Newbold <bnewbold@archive.org>2018-07-13 15:02:59 -0400
commit071f4ff633eaa2669c4afcfc421f95cdc0a6765f (patch)
tree01252344031096d79e7f6618b4c9d409a602e9b5 /scalding/src/main/scala/sandcrawler/HBaseRowCountJob.scala
parent2a2921d82a5a46549e9be2c2eb5703ce28fa7579 (diff)
downloadsandcrawler-071f4ff633eaa2669c4afcfc421f95cdc0a6765f.tar.gz
sandcrawler-071f4ff633eaa2669c4afcfc421f95cdc0a6765f.zip
snake_case to lowerCamelCase
... following scala norms. (as per Ellen's review)
Diffstat (limited to 'scalding/src/main/scala/sandcrawler/HBaseRowCountJob.scala')
-rw-r--r--scalding/src/main/scala/sandcrawler/HBaseRowCountJob.scala6
1 files changed, 3 insertions, 3 deletions
diff --git a/scalding/src/main/scala/sandcrawler/HBaseRowCountJob.scala b/scalding/src/main/scala/sandcrawler/HBaseRowCountJob.scala
index 7f5c84a..334b7a6 100644
--- a/scalding/src/main/scala/sandcrawler/HBaseRowCountJob.scala
+++ b/scalding/src/main/scala/sandcrawler/HBaseRowCountJob.scala
@@ -23,10 +23,10 @@ class HBaseRowCountJob(args: Args) extends JobBase(args) with HBasePipeConversio
object HBaseRowCountJob {
// eg, "wbgrp-journal-extract-0-qa", "mtrcs-zk1.us.archive.org:2181"
- def getHBaseSource(hbase_table: String, zookeeper_hosts: String) : HBaseSource = {
+ def getHBaseSource(hbaseTable: String, zookeeperHosts: String) : HBaseSource = {
return HBaseBuilder.build(
- hbase_table,
- zookeeper_hosts,
+ hbaseTable,
+ zookeeperHosts,
List("file:size"),
SourceMode.SCAN_ALL)
}