Skip to content
Projects
Groups
Snippets
Help
Loading...
Sign in
Toggle navigation
S
streamingUserPortrait
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
赵威
streamingUserPortrait
Commits
dd6c4b88
Commit
dd6c4b88
authored
Feb 05, 2021
by
赵威
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
try logger
parent
98e3bbc2
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
75 additions
and
74 deletions
+75
-74
build.sbt
build.sbt
+2
-4
Main.scala
src/main/scala/com.gmei.up/Main.scala
+73
-70
No files found.
build.sbt
View file @
dd6c4b88
...
...
@@ -3,10 +3,6 @@ ThisBuild / scalaVersion := "2.11.12"
ThisBuild
/
version
:=
"0.1.0"
ThisBuild
/
organization
:=
"com.gmei.up"
// val esVersion = "7.5.0"
// val es = "org.elasticsearch" % "elasticsearch" % esVersion
// val esCore= "org.elasticsearch" % "elasticsearch-core" % esVersion
val
jsonVersion
=
"3.6.10"
val
jsonNative
=
"org.json4s"
%%
"json4s-native"
%
jsonVersion
val
jsonJackson
=
"org.json4s"
%%
"json4s-jackson"
%
jsonVersion
...
...
@@ -32,6 +28,8 @@ lazy val root = (project in file("."))
.
settings
(
name
:=
"streamingUserPortrait"
,
libraryDependencies
+=
"com.typesafe.scala-logging"
%%
"scala-logging"
%
"3.9.2"
,
libraryDependencies
+=
"com.alibaba"
%
"fastjson"
%
"1.2.75"
,
libraryDependencies
+=
jsonNative
,
libraryDependencies
+=
jsonJackson
,
...
...
src/main/scala/com.gmei.up/Main.scala
View file @
dd6c4b88
package
com.gmei.up
import
java.util.Properties
import
com.typesafe.scalalogging.Logger
import
org.apache.flink.api.scala._
import
org.apache.flink.streaming.api.scala.
{
StreamExecutionEnvironment
,
DataStream
}
import
org.apache.flink.streaming.connectors.kafka.
{
...
...
@@ -33,86 +34,88 @@ object Main {
// val query = ES.generateServiceDiaryRequest(List("光子嫩肤", "水光针"), List("丰胸", "胸部塑身"), -1)
// println("###############")
try
{
val
logger
=
Logger
(
"Root"
)
val
env
=
StreamExecutionEnvironment
.
getExecutionEnvironment
logger
.
info
(
"hello"
)
// TODO read from config
val
kafkaConsumerProperties
=
new
Properties
kafkaConsumerProperties
.
setProperty
(
"group.id"
,
"user_portrait_flink_streaming"
)
kafkaConsumerProperties
.
setProperty
(
"bootstrap.servers"
,
"172.16.44.25:9092,172.16.44.31:9092,172.16.44.45:9092"
)
//
//
TODO read from config
//
val kafkaConsumerProperties = new Properties
//
kafkaConsumerProperties.setProperty("group.id", "user_portrait_flink_streaming")
//
kafkaConsumerProperties.setProperty(
//
"bootstrap.servers",
//
"172.16.44.25:9092,172.16.44.31:9092,172.16.44.45:9092"
//
)
val
kafkaConsumer
=
new
FlinkKafkaConsumer
[
UserInfo
](
"gm-portrait-update-device"
,
new
UserInfoDeserializationSchema
,
kafkaConsumerProperties
)
//
val kafkaConsumer = new FlinkKafkaConsumer[UserInfo](
//
"gm-portrait-update-device",
//
new UserInfoDeserializationSchema,
//
kafkaConsumerProperties
//
)
val
stream
:
DataStream
[
UserInfo
]
=
env
.
addSource
(
kafkaConsumer
)
//
val stream: DataStream[UserInfo] = env.addSource(kafkaConsumer)
stream
.
map
{
user
=>
try
{
val
deviceId
=
user
.
deviceId
val
projects
=
user
.
projects
.
toList
val
secondDemands
=
user
.
secondDemands
.
toList
val
secondPositions
=
user
.
secondPositions
.
toList
val
secondSolutions
=
user
.
secondSolutions
.
toList
val
cityId
=
user
.
cityId
println
(
deviceId
)
// println(projects.mkString(" "))
//
stream.map { user =>
//
try {
//
val deviceId = user.deviceId
//
val projects = user.projects.toList
//
val secondDemands = user.secondDemands.toList
//
val secondPositions = user.secondPositions.toList
//
val secondSolutions = user.secondSolutions.toList
//
val cityId = user.cityId
//
println(deviceId)
//
// println(projects.mkString(" "))
val
diaryRead
=
Redis
.
getRead
(
deviceId
,
"diary"
)
val
tractateRead
=
Redis
.
getRead
(
deviceId
,
"tractate"
)
val
answerRead
=
Redis
.
getRead
(
deviceId
,
"answer"
)
//
val diaryRead = Redis.getRead(deviceId, "diary")
//
val tractateRead = Redis.getRead(deviceId, "tractate")
//
val answerRead = Redis.getRead(deviceId, "answer")
val
diaryReq
=
ES
.
generateDiaryRequest
(
projects
,
secondDemands
,
secondPositions
,
secondSolutions
,
diaryRead
,
cityId
,
300
)
val
tractateReq
=
ES
.
generateTractateRequest
(
projects
,
secondDemands
,
secondPositions
,
secondSolutions
,
tractateRead
,
300
)
val
answerReq
=
ES
.
generateAnswerRequest
(
projects
,
secondDemands
,
secondPositions
,
secondSolutions
,
answerRead
,
100
)
val
serviceDiaryReq
=
ES
.
generateServiceDiaryRequest
(
projects
,
secondDemands
,
secondPositions
,
secondSolutions
,
diaryRead
,
cityId
,
100
)
//
val diaryReq =
//
ES.generateDiaryRequest(
//
projects,
//
secondDemands,
//
secondPositions,
//
secondSolutions,
//
diaryRead,
//
cityId,
//
300
//
)
//
val tractateReq =
//
ES.generateTractateRequest(
//
projects,
//
secondDemands,
//
secondPositions,
//
secondSolutions,
//
tractateRead,
//
300
//
)
//
val answerReq =
//
ES.generateAnswerRequest(projects, secondDemands, secondPositions, secondSolutions, answerRead, 100)
//
val serviceDiaryReq =
//
ES.generateServiceDiaryRequest(
//
projects,
//
secondDemands,
//
secondPositions,
//
secondSolutions,
//
diaryRead,
//
cityId,
//
100
//
)
Redis
.
save
(
ES
.
request
(
diaryReq
),
deviceId
,
"diary"
)
Redis
.
save
(
ES
.
request
(
tractateReq
),
deviceId
,
"tractate"
)
Redis
.
save
(
ES
.
request
(
answerReq
),
deviceId
,
"answer"
)
Redis
.
save
(
ES
.
request
(
serviceDiaryReq
),
deviceId
,
"service_diary"
)
//
Redis.save(ES.request(diaryReq), deviceId, "diary")
//
Redis.save(ES.request(tractateReq), deviceId, "tractate")
//
Redis.save(ES.request(answerReq), deviceId, "answer")
//
Redis.save(ES.request(serviceDiaryReq), deviceId, "service_diary")
deviceId
}
catch
{
case
e
:
Throwable
=>
e
.
printStackTrace
()
""
}
}
//
deviceId
//
} catch {
//
case e: Throwable =>
//
e.printStackTrace()
//
""
//
}
//
}
// stream.print
env
.
execute
(
"flink streaming user portrait"
)
//
//
stream.print
//
env.execute("flink streaming user portrait")
}
catch
{
case
e
:
Throwable
=>
...
...
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