开发者社区 问答 正文

Cannot determine simple type name "stream"

sql开了timewindow导致流变成了撤回流,无法直接插入,遂将其转为dataStream,本地无问题,在流上报错 《Caused by: org.apache.flink.shaded.guava18.com.google.common.util.concurrent.UncheckedExecutionException: org.apache.flink.api.common.InvalidProgramException: Table program cannot be compiled. This is a bug. Please file an issue.

Caused by: org.codehaus.commons.compiler.CompileException: Line 7, Column 33: Cannot determine simple type name "stream"》

展开
收起
游客lgntoh5onpoak 2020-03-20 15:51:22 2400 分享 版权
1 条回答
写回答
取消 提交回答
  • entity实体类全部加上无参构造和全参构造注解,完美解决。

    @EqualsAndHashCode(callSuper = true) @TableName("user") @Data @NoArgsConstructor @AllArgsConstructor public class User extends Model { ...... }

    2020-04-15 23:14:39
    赞同 展开评论
问答分类:
问答地址: