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
600c5e0e
Commit
600c5e0e
authored
Jan 22, 2019
by
王志伟
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
搜索统计去除用户黑名单
parent
8b8d7eb1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
23 additions
and
1 deletion
+23
-1
temp_count.scala
eda/feededa/src/main/scala/com/gmei/temp_count.scala
+23
-1
No files found.
eda/feededa/src/main/scala/com/gmei/temp_count.scala
View file @
600c5e0e
...
...
@@ -509,6 +509,24 @@ object GetHiveSearchData {
val
partition_date
=
stat_date
.
replace
(
"-"
,
""
)
val
exposureAccum
=
spark
.
sparkContext
.
longAccumulator
(
"search exposure data"
)
val
jigou_id
=
spark
.
sql
(
s
"""
|SELECT cl_id
|FROM online.ml_hospital_spam_pv_day
|WHERE partition_date>='20180402' AND partition_date<'${partition_date}'
|AND pv_ratio>=0.95
|UNION ALL
|SELECT cl_id
|FROM online.ml_hospital_spam_pv_month
|WHERE partition_date>='20171101' AND partition_date<'${partition_date}'
|AND pv_ratio>=0.95
|UNION ALL
|select device_id as cl_id from blacklist
"""
.
stripMargin
)
jigou_id
.
createOrReplaceTempView
(
"jigou_id"
)
val
exposureSql
=
spark
.
sql
(
s
"""
|select action,user_id,city_id,app
...
...
@@ -579,7 +597,11 @@ object GetHiveSearchData {
s
"""
|select
|count(1) click_num
|from online.tl_hdfs_maidian_view where partition_date='${partition_date}' and action='$strClickAction'
|from online.tl_hdfs_maidian_view ov left join jigou_id
|on ov.cl_id = jigou_id.cl_id
|where ov.partition_date='${partition_date}'
|and ov.action='$strClickAction'
|jigou_id.cl_id is null
"""
.
stripMargin
)
...
...
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