Skip to content
Projects
Groups
Snippets
Help
Loading...
Sign in
Toggle navigation
M
meta_base_code
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
宋柯
meta_base_code
Commits
bbcb6312
Commit
bbcb6312
authored
Sep 04, 2020
by
litaolemo
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
update
parent
3fbbc173
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
37 additions
and
23 deletions
+37
-23
search_strategy_d.py
task/search_strategy_d.py
+37
-23
No files found.
task/search_strategy_d.py
View file @
bbcb6312
...
@@ -20,6 +20,7 @@ import datetime
...
@@ -20,6 +20,7 @@ import datetime
import
time
import
time
from
pyspark
import
SparkConf
from
pyspark
import
SparkConf
from
pyspark.sql
import
SparkSession
,
DataFrame
from
pyspark.sql
import
SparkSession
,
DataFrame
# from pyspark.sql.functions import lit
# from pyspark.sql.functions import lit
# import pytispark.pytispark as pti
# import pytispark.pytispark as pti
...
@@ -80,7 +81,7 @@ for t in range(1, task_days):
...
@@ -80,7 +81,7 @@ for t in range(1, task_days):
today_str
=
now
.
strftime
(
"
%
Y
%
m
%
d"
)
today_str
=
now
.
strftime
(
"
%
Y
%
m
%
d"
)
yesterday_str
=
(
now
+
datetime
.
timedelta
(
days
=-
1
))
.
strftime
(
"
%
Y
%
m
%
d"
)
yesterday_str
=
(
now
+
datetime
.
timedelta
(
days
=-
1
))
.
strftime
(
"
%
Y
%
m
%
d"
)
one_week_age_str
=
(
now
+
datetime
.
timedelta
(
days
=-
7
))
.
strftime
(
"
%
Y
%
m
%
d"
)
one_week_age_str
=
(
now
+
datetime
.
timedelta
(
days
=-
7
))
.
strftime
(
"
%
Y
%
m
%
d"
)
sql_
distinct
_device_id
=
"""
sql_
spam_pv
_device_id
=
"""
SELECT DISTINCT device_id
SELECT DISTINCT device_id
FROM ml.ml_d_ct_dv_devicespam_d --去除机构刷单设备,即作弊设备(浏览和曝光事件去除)
FROM ml.ml_d_ct_dv_devicespam_d --去除机构刷单设备,即作弊设备(浏览和曝光事件去除)
...
@@ -90,27 +91,36 @@ for t in range(1, task_days):
...
@@ -90,27 +91,36 @@ for t in range(1, task_days):
SELECT DISTINCT dev.device_id
SELECT DISTINCT dev.device_id
FROM dim.dim_device_user_staff --去除内网用户
FROM dim.dim_device_user_staff --去除内网用户
UNION ALL
) """
.
format
(
yesterday_str
=
yesterday_str
,
today_str
=
today_str
)
(
print
(
sql_spam_pv_device_id
)
SELECT t1.device_id
spam_pv_df
=
spark
.
sql
(
sql_spam_pv_device_id
)
spam_pv_view
=
spam_pv_df
.
createOrReplaceTempView
(
"spam_pv"
)
spam_pv_df
.
show
(
1
)
sql_res
=
spam_pv_df
.
collect
()
for
res
in
sql_res
:
print
(
res
)
print
(
"-------------------------------"
)
sql_dev_device_id
=
"""
SELECT partition_date,device_id
FROM
FROM
(--找出user_id当天活跃的第一个设备id
(--找出user_id当天活跃的第一个设备id
SELECT user_id,partition_date,
SELECT user_id,partition_date,
if(size(device_list) > 0, device_list [ 0 ], '') AS device_id
if(size(device_list) > 0, device_list [ 0 ], '') AS device_id
FROM online.ml_user_updates
FROM online.ml_user_updates
WHERE partition_date>='${{yesterday_str}}' AND partition_date<'${{today_str}
}'
WHERE partition_date>='{yesterday_str}' AND partition_date<'{today_str
}'
)t1
)t1
JOIN
JOIN
( --医生账号
( --医生账号
SELECT distinct user_id
SELECT distinct user_id
FROM online.tl_hdfs_doctor_view
FROM online.tl_hdfs_doctor_view
WHERE partition_date = {yesterday_str}
WHERE partition_date = '{yesterday_str}'
--马甲账号/模特用户
--马甲账号/模特用户
UNION ALL
UNION ALL
SELECT user_id
SELECT user_id
FROM ml.ml_c_ct_ui_user_dimen_d
FROM ml.ml_c_ct_ui_user_dimen_d
WHERE partition_day = {yesterday_str}
WHERE partition_day = '{yesterday_str}'
AND (is_puppet = 'true' or is_classifyuser = 'true')
AND (is_puppet = 'true' or is_classifyuser = 'true')
UNION ALL
UNION ALL
...
@@ -126,25 +136,25 @@ for t in range(1, task_days):
...
@@ -126,25 +136,25 @@ for t in range(1, task_days):
SELECT user_id, v.device_id as device_id
SELECT user_id, v.device_id as device_id
FROM online.ml_user_history_detail
FROM online.ml_user_history_detail
LATERAL VIEW EXPLODE(device_history_list) v AS device_id
LATERAL VIEW EXPLODE(device_history_list) v AS device_id
WHERE partition_date = {yesterday_str}
WHERE partition_date = '{yesterday_str}'
)t1
)t1
JOIN
JOIN
(
(
SELECT device_id
SELECT device_id
FROM online.ml_device_history_detail
FROM online.ml_device_history_detail
WHERE partition_date = {yesterday_str}
WHERE partition_date = '{yesterday_str}'
AND is_login_doctor = '1'
AND is_login_doctor = '1'
)t2
)t2
ON t1.device_id = t2.device_id
ON t1.device_id = t2.device_id
)t2
)t2
on t1.user_id=t2.user_id
on t1.user_id=t2.user_id
group by
device_id
group by partition_date,
device_id
)dev """
.
format
(
yesterday_str
=
yesterday_str
,
today_str
=
today_str
)
) """
.
format
(
yesterday_str
=
yesterday_str
,
today_str
=
today_str
)
print
(
sql_d
istinct
_device_id
)
print
(
sql_d
ev
_device_id
)
d
istinct_device_id_df
=
spark
.
sql
(
sql_distinct_device_id
,
)
d
ev_df
=
spark
.
sql
(
sql_dev_device_id
)
d
istinct_device_id_view
=
distinct_device_id_df
.
createOrReplaceTempView
(
"distinct_device_id
_view"
)
d
ev_df_view
=
spam_pv_df
.
createOrReplaceTempView
(
"dev
_view"
)
d
istinct_device_id_df
.
show
(
1
)
d
ev_df_view
.
show
(
1
)
sql_res
=
d
istinct_device_id_df
.
collect
()
sql_res
=
d
ev_df_view
.
collect
()
for
res
in
sql_res
:
for
res
in
sql_res
:
print
(
res
)
print
(
res
)
...
@@ -257,10 +267,12 @@ FROM
...
@@ -257,10 +267,12 @@ FROM
)t2
)t2
on t1.cl_id=t2.device_id AND t1.partition_date = t2.partition_date
on t1.cl_id=t2.device_id AND t1.partition_date = t2.partition_date
LEFT JOIN distinct_device_id_view
LEFT JOIN spam_pv on spam_pv.device_id=t1.cl_id
on t1.partition_date=distinct_device_id_view.partition_date AND t1.cl_id=distinct_device_id_view.device_id
LEFT JOIN dev_view
WHERE (distinct_device_id_view.dev_device_id IS NULL or distinct_device_id_view.dev_device_id ='')
on t1.partition_date=dev_view.partition_date and t1.cl_id=dev_view.device_id
GROUP BY t1.partition_date,t2.active_type,device_os_type,channel
WHERE (spam_pv.device_id IS NULL or spam_pv.device_id ='')
and (dev_view.device_id is null or dev_view.device_id ='')
GROUP BY t1.partition_date,active_type,device_os_type,channel
)t
)t
)t3
)t3
...
@@ -349,9 +361,11 @@ LEFT JOIN
...
@@ -349,9 +361,11 @@ LEFT JOIN
LATERAL VIEW explode(mas.active_type) t2 AS active_type
LATERAL VIEW explode(mas.active_type) t2 AS active_type
)dev
)dev
on t1.cl_id=dev.device_id and t1.partition_date = dev.partition_date
on t1.cl_id=dev.device_id and t1.partition_date = dev.partition_date
LEFT JOIN distinct_device_id_view
LEFT JOIN spam_pv on spam_pv.device_id=t1.cl_id
on t1.cl_id=distinct_device_id_view.device_id
LEFT JOIN dev_view
WHERE (distinct_device_id_view.dev_device_id IS NULL or distinct_device_id_view.dev_device_id ='')
on t1.partition_date=dev_view.partition_date and t1.cl_id=dev_view.device_id
WHERE (spam_pv.device_id IS NULL or spam_pv.device_id ='')
and (dev_view.device_id is null or dev_view.device_id ='')
GROUP BY t1.partition_date,active_type,device_os_type,channel
GROUP BY t1.partition_date,active_type,device_os_type,channel
)t4
)t4
on t3.partition_date=t4.partition_date and t3.active_type=t4.active_type and t3.device_os_type = t4.device_os_type AND t3.channel = t4.channel
on t3.partition_date=t4.partition_date and t3.active_type=t4.active_type and t3.device_os_type = t4.device_os_type AND t3.channel = t4.channel
...
...
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