7

如果你想在 Scalding 中创建一个包含超过 22 个字段的管道,你会受到 Scala 元组的限制,它不能超过 22 个项目。

有没有办法使用集合而不是元组?我想像以下示例中的内容,遗憾的是它不起作用:

input.read.mapTo('line -> aLotOfFields) { line: String =>
  (1 to 24).map(_.toString)
}.write(output)
4

2 回答 2

4

实际上你可以。它在常见问题解答中 - https://github.com/twitter/scalding/wiki/Frequently-asked-questions#what-if-i-have-more-than-22-fields-in-my-data-set

val toFields = (1 to 24).map(f => Symbol("field_" + f)).toList

input
  .read
  .mapTo('line -> toFields) { line: String =>
    new Tuple((1 to 24).map(_.toString).map(_.asInstanceOf[AnyRef]): _*)

  }

最后一张地图(_.asInstanceOf[AnyRef]) 看起来很难看,所以如果你找到更好的解决方案,请告诉我。

于 2013-11-07T20:53:43.843 回答
3

将元组包装到案例类中。与分别使用元组和集合相比,它还将使您的代码更具可读性和类型安全性。

于 2013-12-01T13:13:21.800 回答