Skip to content
Projects
Groups
Snippets
Help
Loading...
Sign in
Toggle navigation
F
ffm-baseline
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
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
ML
ffm-baseline
Commits
e703ed26
Commit
e703ed26
authored
Dec 28, 2018
by
高雅喆
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
add GetDevicePortrait
parent
d905ce69
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
7 additions
and
8 deletions
+7
-8
EsmmData.scala
eda/feededa/src/main/scala/com/gmei/EsmmData.scala
+6
-7
GmeiConfig.scala
eda/feededa/src/main/scala/com/gmei/GmeiConfig.scala
+1
-1
No files found.
eda/feededa/src/main/scala/com/gmei/EsmmData.scala
View file @
e703ed26
...
...
@@ -543,6 +543,7 @@ object GetDevicePortrait {
val
ti
=
new
TiContext
(
sc
)
ti
.
tidbMapTable
(
dbName
=
"jerry_prod"
,
tableName
=
"data_feed_click"
)
ti
.
tidbMapTable
(
dbName
=
"jerry_prod"
,
tableName
=
"diary_feat"
)
import
sc.implicits._
val
stat_date
=
param
.
date
.
replace
(
"-"
,
""
)
...
...
@@ -570,19 +571,17 @@ object GetDevicePortrait {
val
max_count_tag
=
sc
.
sql
(
s
"""
|select a.device_id,a.stat_date,a.level1_id
,a.
level1_count
|select a.device_id,a.stat_date,a.level1_id
as max_level1_id,a.level1_count as max_
level1_count
|from tag_count a
|inner join
|(select device_id,max(level1_count) as max_count from tag_count group by device_id) b
|on a.level1_count = b.max_count and a.device_id = b.device_id
"""
.
stripMargin
)
max_count_tag
.
show
()
println
(
max_count_tag
.
count
())
// GmeiConfig.writeToJDBCTable(diary_tag,"diary_feat",SaveMode.Overwrite)
).
rdd
.
map
(
x
=>
(
x
(
0
).
toString
,
x
(
1
).
toString
,
x
(
2
).
toString
,
x
(
3
).
toString
))
max_count_tag
.
foreachPartition
(
GmeiConfig
.
updateDeviceFeat
)
max_count_tag
.
take
(
10
).
foreach
(
println
)
println
(
max_count_tag
.
count
())
sc
.
stop
()
...
...
eda/feededa/src/main/scala/com/gmei/GmeiConfig.scala
View file @
e703ed26
...
...
@@ -82,7 +82,7 @@ object GmeiConfig extends Serializable {
def
updateDeviceFeat
(
iterator
:
Iterator
[(
String
,
String
,
String
,
String
)])
:
Unit
={
var
conn
:
Connection
=
null
var
ps
:
java.sql.PreparedStatement
=
null
val
sql
=
s
"replace into device_feat(device_id,stat_date,
level1_id,
level1_count) values(?,?,?,?)"
val
sql
=
s
"replace into device_feat(device_id,stat_date,
max_level1_id,max_
level1_count) values(?,?,?,?)"
conn
=
DriverManager
.
getConnection
(
"jdbc:mysql://10.66.157.22:4000/jerry_prod"
,
"root"
,
"3SYz54LS9#^9sBvC"
)
ps
=
conn
.
prepareStatement
(
sql
)
try
{
...
...
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