diff options
author | Bryan Newbold <bnewbold@archive.org> | 2018-07-23 13:56:51 -0700 |
---|---|---|
committer | Bryan Newbold <bnewbold@archive.org> | 2018-07-24 11:28:12 -0700 |
commit | 9a00e7beb5f1024ea77fc42196733a0447cf6d12 (patch) | |
tree | edfa21af6560e3669d0d6db995c44ad19086d353 /scalding/scalding-debugging.md | |
parent | 92650c4663bba7d8d9914e2bc120a4b923a7a94b (diff) | |
download | sandcrawler-9a00e7beb5f1024ea77fc42196733a0447cf6d12.tar.gz sandcrawler-9a00e7beb5f1024ea77fc42196733a0447cf6d12.zip |
reference TDsl note in docs
Diffstat (limited to 'scalding/scalding-debugging.md')
-rw-r--r-- | scalding/scalding-debugging.md | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/scalding/scalding-debugging.md b/scalding/scalding-debugging.md index 9143698..bd9dd36 100644 --- a/scalding/scalding-debugging.md +++ b/scalding/scalding-debugging.md @@ -45,6 +45,22 @@ 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 some types][tdsl] from: + + import com.twitter.scalding.typed.TDsl._ + +[tdsl]: https://github.com/twitter/scalding/wiki/Type-safe-api-reference#interoperating-between-fields-api-and-type-safe-api + +## 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: |