diff options
author | Bryan Newbold <bnewbold@archive.org> | 2018-07-17 18:55:17 -0700 |
---|---|---|
committer | Ellen Spertus <ellen.spertus@gmail.com> | 2018-07-19 15:50:26 -0700 |
commit | 2f39ba88482ba47a03fc52edcae891755ecb2b4d (patch) | |
tree | 91dd237cdb74300a3ce3c3c31498aaca353567b0 /scalding | |
parent | 1a22492d64103784018b50656141ea8b39faa85f (diff) | |
download | sandcrawler-2f39ba88482ba47a03fc52edcae891755ecb2b4d.tar.gz sandcrawler-2f39ba88482ba47a03fc52edcae891755ecb2b4d.zip |
more debugging notes
Diffstat (limited to 'scalding')
-rw-r--r-- | scalding/scalding-debugging.md | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/scalding/scalding-debugging.md b/scalding/scalding-debugging.md index 9143698..404fb4d 100644 --- a/scalding/scalding-debugging.md +++ b/scalding/scalding-debugging.md @@ -45,6 +45,20 @@ resolved by ensuring that the `HBaseSource` constructors had exactly identical names and arguments (eg, table names and zookeeper quorums have to be exact matches). +If you get: + + value toTypedPipe is not a member of cascading.pipe.Pipe + +You probably need to: + + import com.twitter.scalding.typed.TDsl._ + +## Running Individual Tests + +You can run a single test matching a string glob pattern like: + + sbt:sandcrawler> testOnly *CdxBackfill* + ## Fields Values of type `List[Fields]` are not printed in the expected way: |