我收到错误:使用 Kotlin 时,Apache Beam 中 MapElements 转换的“重载分辨率歧义”
Posted
技术标签:
【中文标题】我收到错误:使用 Kotlin 时,Apache Beam 中 MapElements 转换的“重载分辨率歧义”【英文标题】:I get error: "Overload resolution ambiguity" from MapElements transform in Apache Beam when using Kotlin 【发布时间】:2019-12-22 00:13:44 【问题描述】:我正在探索 GoogleCloudPlatform 在Github 上提供的 Apache Beam 数据流模板。
特别是,我正在将 PubSubToBigQuery 模板从 Java 转换为 Kotlin。
通过这样做,我在 274
行的 MapElements.input(...).via(...)
转换中收到 Overload ambiguity resolution 错误。错误信息是:
Error:(62, 22) Kotlin: Cannot choose among the following candidates without completing type inference:
public final fun <NewInputT : Any!> via(fn: ((input: BigQueryInsertError!) -> FailsafeElement<String!, String!>!)!): MapElements<BigQueryInsertError!, FailsafeElement<String!, String!>!>! defined in org.apache.beam.sdk.transforms.MapElements
public final fun <NewInputT : Any!> via(fn: ((input: BigQueryInsertError!) -> FailsafeElement<String!, String!>!)!): MapElements<BigQueryInsertError!, FailsafeElement<String!, String!>!>! defined in org.apache.beam.sdk.transforms.MapElements
相关的Java代码sn-p为:
/*
* Step 3 Contd.
* Elements that failed inserts into BigQuery are extracted and converted to FailsafeElement
*/
PCollection<FailsafeElement<String, String>> failedInserts =
writeResult
.getFailedInsertsWithErr()
.apply(
"WrapInsertionErrors",
MapElements.into(FAILSAFE_ELEMENT_CODER.getEncodedTypeDescriptor())
.via((BigQueryInsertError e) -> wrapBigQueryInsertError(e)))
.setCoder(FAILSAFE_ELEMENT_CODER);
Kotlin 转换如下:
/*
* Step 3 Contd.
* Elements that failed inserts into BigQuery are extracted and converted to FailsafeElement
*/
val failedInserts: PCollection<FailsafeElement<String, String>> =
writeResult.failedInsertsWithErr
.apply(
"WrapInsertionErrors",
MapElements.into(FAILSAFE_ELEMENT_CODER.encodedTypeDescriptor)
.via e: BigQueryInsertError -> wrapBigQueryInsertError(e) )
.setCoder(FAILSAFE_ELEMENT_CODER)
我不知道如何解决这个问题。任何帮助都会很好。
【问题讨论】:
【参考方案1】:原因是Java和Kotlin的重载规则略有不同,也就是说在Kotlin中有两个匹配的重载;
public <NewInputT> MapElements<NewInputT, OutputT> via(ProcessFunction<NewInputT, OutputT> fn)
public <NewInputT> MapElements<NewInputT, OutputT> via(SerializableFunction<NewInputT, OutputT> fn)
最简单的解决方法是将 lambda 显式指定为 SerializableFunction
以获得正确的重载;
.via<BigQueryInsertError> (SerializableFunction e: BigQueryInsertError -> wrapBigQueryInsertError(e) ))
【讨论】:
以上是关于我收到错误:使用 Kotlin 时,Apache Beam 中 MapElements 转换的“重载分辨率歧义”的主要内容,如果未能解决你的问题,请参考以下文章
在 Kotlin 中无法“findViewById”。收到错误“类型推断失败”
Android studio,构建kotlin时出现奇怪错误:生成错误代码
当我启动 apache MySQL 服务器时,我收到错误“(HY000/2002):无法建立连接,因为目标机器主动拒绝它。”