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
98c206ca
Commit
98c206ca
authored
Sep 04, 2020
by
litaolemo
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
update
parent
047f8c17
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
21 additions
and
20 deletions
+21
-20
search_strategy_d.py
task/search_strategy_d.py
+21
-20
No files found.
task/search_strategy_d.py
View file @
98c206ca
...
...
@@ -81,25 +81,6 @@ for t in range(1, task_days):
today_str
=
now
.
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"
)
sql_spam_pv_device_id
=
"""
SELECT DISTINCT device_id
FROM ml.ml_d_ct_dv_devicespam_d --去除机构刷单设备,即作弊设备(浏览和曝光事件去除)
WHERE partition_day={yesterday_str}
UNION ALL
SELECT DISTINCT dev.device_id
FROM dim.dim_device_user_staff --去除内网用户
"""
.
format
(
yesterday_str
=
yesterday_str
,
today_str
=
today_str
)
print
(
sql_spam_pv_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
...
...
@@ -150,7 +131,7 @@ for t in range(1, task_days):
group by partition_date,device_id"""
.
format
(
yesterday_str
=
yesterday_str
,
today_str
=
today_str
)
print
(
sql_dev_device_id
)
dev_df
=
spark
.
sql
(
sql_dev_device_id
)
dev_df_view
=
spam_p
v_df
.
createOrReplaceTempView
(
"dev_view"
)
dev_df_view
=
de
v_df
.
createOrReplaceTempView
(
"dev_view"
)
dev_df_view
.
show
(
1
)
sql_res
=
dev_df_view
.
collect
()
for
res
in
sql_res
:
...
...
@@ -158,6 +139,26 @@ for t in range(1, task_days):
print
(
"-------------------------------"
)
sql_spam_pv_device_id
=
"""
SELECT DISTINCT device_id
FROM ml.ml_d_ct_dv_devicespam_d --去除机构刷单设备,即作弊设备(浏览和曝光事件去除)
WHERE partition_day={yesterday_str}
UNION ALL
SELECT DISTINCT dev_view.device_id
FROM dev_view.dim_device_user_staff --去除内网用户
"""
.
format
(
yesterday_str
=
yesterday_str
)
print
(
sql_spam_pv_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
=
r"""
SELECT t3.partition_date as partition_date
,t3.device_os_type as device_os_type
...
...
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