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
3d622daa
Commit
3d622daa
authored
Mar 19, 2020
by
赵建伟
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
update codes
parent
0e4dddd8
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
15 additions
and
15 deletions
+15
-15
PortraitMonitorMain.java
src/main/java/com/gmei/data/monitor/PortraitMonitorMain.java
+5
-5
PortraitMonitorErrOperator.java
...mei/data/monitor/operator/PortraitMonitorErrOperator.java
+10
-10
No files found.
src/main/java/com/gmei/data/monitor/PortraitMonitorMain.java
View file @
3d622daa
...
...
@@ -49,11 +49,11 @@ public class PortraitMonitorMain {
// 获得流处理环境对象
StreamExecutionEnvironment
env
=
StreamExecutionEnvironment
.
getExecutionEnvironment
();
//
env.enableCheckpointing(1000);
//
env.setStateBackend(new FsStateBackend(checkpointPath));
//
env.setRestartStrategy(RestartStrategies.fixedDelayRestart(1, 3000));
//
CheckpointConfig config = env.getCheckpointConfig();
//
config.enableExternalizedCheckpoints(CheckpointConfig.ExternalizedCheckpointCleanup.RETAIN_ON_CANCELLATION);
env
.
enableCheckpointing
(
1000
);
env
.
setStateBackend
(
new
FsStateBackend
(
checkpointPath
));
env
.
setRestartStrategy
(
RestartStrategies
.
fixedDelayRestart
(
1
,
3000
));
CheckpointConfig
config
=
env
.
getCheckpointConfig
();
config
.
enableExternalizedCheckpoints
(
CheckpointConfig
.
ExternalizedCheckpointCleanup
.
RETAIN_ON_CANCELLATION
);
// env.setStreamTimeCharacteristic(TimeCharacteristic.EventTime);
...
...
src/main/java/com/gmei/data/monitor/operator/PortraitMonitorErrOperator.java
View file @
3d622daa
...
...
@@ -62,7 +62,6 @@ public class PortraitMonitorErrOperator implements BaseOperator{
jsonObject
.
put
(
"statistics_action"
,
eventType
);
}
}
}
String
appAction
=
appObject
.
getString
(
"action"
);
if
(
null
!=
appAction
)
{
String
[]
edits
=
{
"create"
,
"update"
,
"answer"
};
...
...
@@ -75,6 +74,7 @@ public class PortraitMonitorErrOperator implements BaseOperator{
}
}
}
}
String
type
=
jsonObject
.
getString
(
"type"
);
String
device
=
jsonObject
.
getString
(
"device"
);
if
(
null
!=
type
&&
null
!=
device
)
{
...
...
@@ -92,6 +92,15 @@ public class PortraitMonitorErrOperator implements BaseOperator{
}
}
})
.
filter
(
new
FilterFunction
<
String
>()
{
@Override
public
boolean
filter
(
String
value
)
throws
Exception
{
if
(
StringUtils
.
isBlank
(
value
)){
return
false
;
}
return
true
;
}
})
.
map
(
new
MapFunction
<
String
,
Tuple2
<
String
,
String
>>()
{
@Override
public
Tuple2
<
String
,
String
>
map
(
String
value
)
throws
Exception
{
...
...
@@ -99,15 +108,6 @@ public class PortraitMonitorErrOperator implements BaseOperator{
return
new
Tuple2
<>(
value
,
monitorTime
);
}
})
.
filter
(
new
FilterFunction
<
Tuple2
<
String
,
String
>>()
{
@Override
public
boolean
filter
(
Tuple2
<
String
,
String
>
tuple2
)
throws
Exception
{
if
(
StringUtils
.
isBlank
(
tuple2
.
f0
)){
return
false
;
}
return
true
;
}
})
.
addSink
(
new
PortraitErrMysqlSink
(
outJdbcUrl
,
maxRetry
,
retryInteral
))
.
setParallelism
(
parallelism
);
}
...
...
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