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
63687715
Commit
63687715
authored
Aug 16, 2019
by
高雅喆
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
update
parent
b0330eeb
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
5 additions
and
20 deletions
+5
-20
dist_update_user_history_order_tags.py
eda/smart_rank/dist_update_user_history_order_tags.py
+5
-20
No files found.
eda/smart_rank/dist_update_user_history_order_tags.py
View file @
63687715
...
@@ -19,24 +19,6 @@ from pyspark.sql.functions import lit
...
@@ -19,24 +19,6 @@ from pyspark.sql.functions import lit
from
pyspark.sql.functions
import
concat_ws
from
pyspark.sql.functions
import
concat_ws
def
get_user_device_id
(
user_id
):
try
:
db_zhengxing
=
pymysql
.
connect
(
host
=
"172.16.30.141"
,
port
=
3306
,
user
=
"work"
,
password
=
"BJQaT9VzDcuPBqkd"
,
db
=
"zhengxing"
,
cursorclass
=
pymysql
.
cursors
.
DictCursor
)
cur_zhengxing
=
db_zhengxing
.
cursor
()
sql
=
"select device_id from statistic_device where id = (select max(device_id) from statistic_device_user where user_id =
%
d) "
%
(
int
(
user_id
))
cur_zhengxing
.
execute
(
sql
)
cl_id
=
cur_zhengxing
.
fetchall
()
if
cl_id
:
return
cl_id
[
0
][
"device_id"
]
else
:
return
""
except
Exception
as
e
:
print
(
e
)
def
get_user_history_order_service_tag
(
user_id
,
stat_date
):
def
get_user_history_order_service_tag
(
user_id
,
stat_date
):
try
:
try
:
if
user_id
:
if
user_id
:
...
@@ -50,9 +32,12 @@ def get_user_history_order_service_tag(user_id, stat_date):
...
@@ -50,9 +32,12 @@ def get_user_history_order_service_tag(user_id, stat_date):
"and b.tag_type<'4' "
.
format
(
user_id
=
user_id
)
"and b.tag_type<'4' "
.
format
(
user_id
=
user_id
)
cur_zhengxing
.
execute
(
sql
)
cur_zhengxing
.
execute
(
sql
)
tags_dict
=
cur_zhengxing
.
fetchall
()
tags_dict
=
cur_zhengxing
.
fetchall
()
tags_list
=
[
i
[
"tag_id"
]
for
i
in
tags_dict
]
tags_list
=
[
i
[
"tag_id"
]
for
i
in
tags_dict
]
cl_id
=
get_user_device_id
(
user_id
)
sql_cl_id
=
"select device_id from statistic_device where id = (select max(device_id) from statistic_device_user where user_id =
%
d) "
%
(
int
(
user_id
))
cur_zhengxing
.
execute
(
sql_cl_id
)
cl_id
=
cur_zhengxing
.
fetchall
()[
0
][
"device_id"
]
db_jerry_test
=
pymysql
.
connect
(
host
=
'172.16.40.158'
,
port
=
4000
,
user
=
'root'
,
passwd
=
'3SYz54LS9#^9sBvC'
,
db_jerry_test
=
pymysql
.
connect
(
host
=
'172.16.40.158'
,
port
=
4000
,
user
=
'root'
,
passwd
=
'3SYz54LS9#^9sBvC'
,
db
=
'jerry_test'
,
charset
=
'utf8'
)
db
=
'jerry_test'
,
charset
=
'utf8'
)
cur_jerry_test
=
db_jerry_test
.
cursor
()
cur_jerry_test
=
db_jerry_test
.
cursor
()
...
...
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