我尝试运行一个简单的 SCIO 代码。
case class Foo(first: String, second: String, third: String)
尝试Foo
在 a中使用SCollection
它会导致错误:
Cannot find an implicit Coder instance for type:
>> (String, my.Foo)
...
<redacted prose>
...
错误信息中写了很多。我似乎无法理解,尽管所有这些文本如何为我应该围绕 Coders 做的事情提供任何信息来解决这个问题。
任何人都可以阐明如何解决这个问题。
不使用implicits的奖励积分。