Skip to content
Projects
Groups
Snippets
Help
Loading...
Sign in
Toggle navigation
F
flink-monitor
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
赵建伟
flink-monitor
Commits
4abe0f8a
Commit
4abe0f8a
authored
Mar 19, 2020
by
赵建伟
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
update codes
parent
d50d81fa
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
30 additions
and
27 deletions
+30
-27
PortraitMonitorShdOperator.java
...mei/data/monitor/operator/PortraitMonitorShdOperator.java
+1
-1
PortraitMonitorSucOperator.java
...mei/data/monitor/operator/PortraitMonitorSucOperator.java
+29
-26
No files found.
src/main/java/com/gmei/data/monitor/operator/PortraitMonitorShdOperator.java
View file @
4abe0f8a
...
...
@@ -169,7 +169,7 @@ public class PortraitMonitorShdOperator implements BaseOperator{
}
}
if
(
logTime
>=
tenMinitesAgoTimestamp
&&
logTime
<=
currentTimestamp
)
{
++
count
;
count
++
;
}
}
if
(
count
>
0
){
...
...
src/main/java/com/gmei/data/monitor/operator/PortraitMonitorSucOperator.java
View file @
4abe0f8a
...
...
@@ -10,6 +10,7 @@ import org.apache.flink.api.common.functions.FilterFunction;
import
org.apache.flink.api.common.functions.MapFunction
;
import
org.apache.flink.api.java.tuple.Tuple
;
import
org.apache.flink.streaming.api.datastream.DataStream
;
import
org.apache.flink.streaming.api.datastream.SingleOutputStreamOperator
;
import
org.apache.flink.streaming.api.environment.StreamExecutionEnvironment
;
import
org.apache.flink.streaming.api.functions.windowing.ProcessWindowFunction
;
import
org.apache.flink.streaming.api.windowing.time.Time
;
...
...
@@ -46,33 +47,35 @@ public class PortraitMonitorSucOperator implements BaseOperator{
@Override
public
void
run
()
{
dataStream
.
map
(
new
MapFunction
<
String
,
GmPortraitResult
>()
{
@Override
public
GmPortraitResult
map
(
String
value
)
{
try
{
JSONObject
jsonObject
=
JSONObject
.
parseObject
(
value
);
GmPortraitResult
gmPortraitResult
=
JSON
.
toJavaObject
(
jsonObject
,
GmPortraitResult
.
class
);
if
(
null
==
gmPortraitResult
){
return
new
GmPortraitResult
();
}
return
gmPortraitResult
;
}
catch
(
Exception
e
){
e
.
printStackTrace
();
SingleOutputStreamOperator
map
=
dataStream
.
map
(
new
MapFunction
<
String
,
GmPortraitResult
>()
{
@Override
public
GmPortraitResult
map
(
String
value
)
{
try
{
JSONObject
jsonObject
=
JSONObject
.
parseObject
(
value
);
GmPortraitResult
gmPortraitResult
=
JSON
.
toJavaObject
(
jsonObject
,
GmPortraitResult
.
class
);
if
(
null
==
gmPortraitResult
)
{
return
new
GmPortraitResult
();
}
return
gmPortraitResult
;
}
catch
(
Exception
e
)
{
e
.
printStackTrace
();
return
new
GmPortraitResult
();
}
}
)
.
filter
(
new
FilterFunction
<
GmPortraitResult
>()
{
@Override
public
boolean
filter
(
GmPortraitResult
value
)
throws
Exception
{
if
(
null
==
value
.
getAction
()
||
null
==
value
.
getDevice_id
()
||
null
==
value
.
getLog_time
()
||
null
==
value
.
getEvent
())
{
return
false
;
}
return
tru
e
;
}
});
map
.
print
();
SingleOutputStreamOperator
filter
=
map
.
filter
(
new
FilterFunction
<
GmPortraitResult
>()
{
@Override
public
boolean
filter
(
GmPortraitResult
value
)
throws
Exception
{
if
(
null
==
value
.
getAction
()
||
null
==
value
.
getDevice_id
()
||
null
==
value
.
getLog_time
()
||
null
==
value
.
getEvent
())
{
return
fals
e
;
}
})
return
true
;
}
});
filter
.
print
();
filter
.
keyBy
(
"event"
)
.
timeWindow
(
Time
.
seconds
(
windownSize
),
Time
.
seconds
(
slideSize
))
.
process
(
new
ProcessWindowFunction
<
GmPortraitResult
,
TblMonitorPortraitSuc
,
Tuple
,
TimeWindow
>()
{
...
...
@@ -80,12 +83,12 @@ public class PortraitMonitorSucOperator implements BaseOperator{
public
void
process
(
Tuple
key
,
Context
context
,
Iterable
<
GmPortraitResult
>
elements
,
Collector
<
TblMonitorPortraitSuc
>
out
)
{
Integer
count
=
0
;
Date
date
=
new
Date
();
long
currentTimestamp
=
DateUtils
.
getCurrentTimestamp
(
date
);
long
tenMinitesAgoTimestamp
=
DateUtils
.
getTenMinitesAgoTimestamp
(
date
);
long
currentTimestamp
=
DateUtils
.
getCurrentTimestamp
(
date
)
/
1000
;
long
tenMinitesAgoTimestamp
=
DateUtils
.
getTenMinitesAgoTimestamp
(
date
)
/
1000
;
for
(
GmPortraitResult
element
:
elements
)
{
long
logTime
=
Long
.
valueOf
(
Math
.
round
(
Double
.
valueOf
(
element
.
getLog_time
())));
if
(
logTime
>=
tenMinitesAgoTimestamp
&&
logTime
<=
currentTimestamp
){
++
count
;
count
++
;
}
}
if
(
count
>
0
){
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment