Commit 6a18966b authored by RingEric's avatar RingEric

删除没必要的文件

parent e7673d37
...@@ -71,7 +71,7 @@ object Analysis { ...@@ -71,7 +71,7 @@ object Analysis {
val eventTuple = new ArrayBuffer[(String, String)]() val eventTuple = new ArrayBuffer[(String, String)]()
//数组不为空 //数组不为空
if (!projects.isEmpty) { if (projects.nonEmpty) {
val eventMap = new util.HashMap[String, Any]() val eventMap = new util.HashMap[String, Any]()
for (project <- projects) { for (project <- projects) {
Jackson.autoParseJson(project.toString, eventMap) Jackson.autoParseJson(project.toString, eventMap)
......
...@@ -35,7 +35,11 @@ object FlinkEntry { ...@@ -35,7 +35,11 @@ object FlinkEntry {
.flatMap(x => x) .flatMap(x => x)
//过滤掉不合理的数据 //过滤掉不合理的数据
.filter(x => x.eventName.nonEmpty) .filter(x => x.eventName.nonEmpty)
.map(item => {
// TODO: 事件后续处理
item
})
.executeAndCollect() .executeAndCollect()
.foreach(println) .foreach(println)
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment