作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我的flink项目中有如下代码:
public class Test {
public static void main(String[] args) throws Exception {
// set up the execution environment
final ExecutionEnvironment env = ExecutionEnvironment.getExecutionEnvironment();
DataSet<Event> events =
env.readCsvFile(args[0]).pojoType(
Event.class,
"time",
"vid",
"speed",
"xWay",
"lane",
"dir",
"seg",
"pos"
);
System.out.println("----> " + events.count());
}
}
这是 Event
类:
class Event {
public int time;
public int vid;
public int speed;
public int xWay;
public int lane;
public int dir;
public int seg;
public int pos;
public Event() { }
public Event(int time_in, int vid_in, int speed_in, int xWay_in, int lane_in, int dir_in, int seg_in, int pos_in) {
this.time = time_in;
this.vid = vid_in;
this.speed = speed_in;
this.xWay = xWay_in;
this.lane = lane_in;
this.dir = dir_in;
this.seg = seg_in;
this.pos = pos_in;
}
}
项目编译成功,但运行时出现错误:
java.lang.ClassCastException: org.apache.flink.api.java.typeutils.GenericTypeInfo cannot be cast to org.apache.flink.api.java.typeutils.PojoTypeInfo
CSV 文件有 8 个整数值,每行用逗号分隔。
documentation有以下例子:
DataSet<Person>> csvInput = env.readCsvFile("hdfs:///the/CSV/file")
.pojoType(Person.class, "name", "age", "zipcode");
不知道是不是POJO定义错了,肯定是。我使用 map
和 readTextFile
实现了我想要的,但这可能更昂贵。
最佳答案
ClassCastException
是一个将被修复的错误 soon并被一个更有意义的异常所取代。 Event
是 GenericType
而不是 PojoType
。我认为原因可能是 Event
是成员类而不是全局可访问类。添加 static
修饰符应该可以解决问题。
关于java - Flink readCsvFile 方法与 pojoTypes,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/47682317/
我的flink项目中有如下代码: public class Test { public static void main(String[] args) throws Exception {
我是一名优秀的程序员,十分优秀!