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
838c47ab
Commit
838c47ab
authored
Dec 05, 2018
by
王志伟
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
新统计
parent
3ca23564
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
25 additions
and
27 deletions
+25
-27
testt.scala
eda/feededa/src/main/scala/com/gmei/testt.scala
+25
-27
No files found.
eda/feededa/src/main/scala/com/gmei/testt.scala
View file @
838c47ab
...
@@ -48,36 +48,34 @@ object testt {
...
@@ -48,36 +48,34 @@ object testt {
//机构id
//机构id
val
agency_id
=
sc
.
sql
(
//
val agency_id = sc.sql(
s
"""
//
s"""
|SELECT DISTINCT(cl_id) as device_id
//
|SELECT DISTINCT(cl_id) as device_id
|FROM online.ml_hospital_spam_pv_day
//
|FROM online.ml_hospital_spam_pv_day
|WHERE partition_date >= '20180402'
//
|WHERE partition_date >= '20180402'
|AND partition_date <= '20181203'
//
|AND partition_date <= '20181203'
|AND pv_ratio >= 0.95
//
|AND pv_ratio >= 0.95
|UNION ALL
//
|UNION ALL
|SELECT DISTINCT(cl_id) as device_id
//
|SELECT DISTINCT(cl_id) as device_id
|FROM online.ml_hospital_spam_pv_month
//
|FROM online.ml_hospital_spam_pv_month
|WHERE partition_date >= '20171101'
//
|WHERE partition_date >= '20171101'
|AND partition_date <= '20181203'
//
|AND partition_date <= '20181203'
|AND pv_ratio >= 0.95
//
|AND pv_ratio >= 0.95
"""
.
stripMargin
//
""".stripMargin
)
//
)
// agency_id.show()
//
//
agency_id.show()
agency_id
.
createOrReplaceTempView
(
"agency_id"
)
//
agency_id.createOrReplaceTempView("agency_id")
val
diary_pv
=
sc
.
sql
(
val
diary_pv
=
sc
.
sql
(
s
"""
s
"""
|select ov.partition_date, count(params["business_id"]) as diary_pv
|select partition_date,count(cl_id)
|from online.tl_hdfs_maidian_view ov left join agency_id
|from online.tl_hdfs_maidian_view
|on ov.cl_id = agency_id.device_id
|where action="page_view"
|where ov.action="page_view"
|and params["page_name"]="diary_detail"
|and ov.params["page_name"]="diary_detail"
|and params["referrer"]='my_diary'
|and (ov.params["out"]-ov.params["in"])<7200
|and partition_date >='20181120'
|and agency_id.device_id is null
|GROUP BY partition_date
|and ov.partition_date >='20181120'
|order by partition_date
|and ov.cl_id not in (select distinct(device_id) from blacklist)
|group by ov.partition_date order by ov.partition_date
"""
.
stripMargin
"""
.
stripMargin
)
)
diary_pv
.
show
()
diary_pv
.
show
()
...
...
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