diff options
author | Bryan Newbold <bnewbold@archive.org> | 2018-07-13 15:02:56 -0400 |
---|---|---|
committer | Bryan Newbold <bnewbold@archive.org> | 2018-07-13 15:02:59 -0400 |
commit | 071f4ff633eaa2669c4afcfc421f95cdc0a6765f (patch) | |
tree | 01252344031096d79e7f6618b4c9d409a602e9b5 /scalding/src/main | |
parent | 2a2921d82a5a46549e9be2c2eb5703ce28fa7579 (diff) | |
download | sandcrawler-071f4ff633eaa2669c4afcfc421f95cdc0a6765f.tar.gz sandcrawler-071f4ff633eaa2669c4afcfc421f95cdc0a6765f.zip |
snake_case to lowerCamelCase
... following scala norms.
(as per Ellen's review)
Diffstat (limited to 'scalding/src/main')
-rw-r--r-- | scalding/src/main/scala/sandcrawler/HBaseCountJob.scala | 6 | ||||
-rw-r--r-- | scalding/src/main/scala/sandcrawler/HBaseRowCountJob.scala | 6 |
2 files changed, 6 insertions, 6 deletions
diff --git a/scalding/src/main/scala/sandcrawler/HBaseCountJob.scala b/scalding/src/main/scala/sandcrawler/HBaseCountJob.scala index 53ce325..863c16f 100644 --- a/scalding/src/main/scala/sandcrawler/HBaseCountJob.scala +++ b/scalding/src/main/scala/sandcrawler/HBaseCountJob.scala @@ -24,9 +24,9 @@ class HBaseCountJob(args: Args, colSpec: String) extends JobBase(args) with HBas } object HBaseCountJob { - def getHBaseSource(hbase_table: String, zookeeper_hosts: String, colSpec: String) = HBaseBuilder.build( - hbase_table, // HBase Table Name - zookeeper_hosts, // HBase Zookeeper server (to get runtime config info; can be array?) + def getHBaseSource(hbaseTable: String, zookeeperHosts: String, colSpec: String) = HBaseBuilder.build( + hbaseTable, // HBase Table Name + zookeeperHosts, // HBase Zookeeper server (to get runtime config info; can be array?) List(colSpec), SourceMode.SCAN_ALL) } 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) } |