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
d203b389
Commit
d203b389
authored
Aug 16, 2019
by
张彦钊
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
change test file
parent
49029114
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
42 additions
and
1 deletion
+42
-1
monitor.py
monitor.py
+42
-1
No files found.
monitor.py
View file @
d203b389
...
@@ -37,12 +37,53 @@ def Json(x):
...
@@ -37,12 +37,53 @@ def Json(x):
#rdd transform
#rdd transform
def
model
(
rdd
):
def
model
(
rdd
):
try
:
try
:
rdd
=
rdd
.
filter
(
lambda
x
:
Json
(
x
))
rdd
=
rdd
.
filter
(
lambda
x
:
Json
(
x
))
.
map
(
lambda
x
:
get_data
(
x
))
# .repartition(10)
# .repartition(10)
return
rdd
return
rdd
except
:
except
:
print
(
"fail"
)
print
(
"fail"
)
def
get_data
(
x
):
try
:
data
=
json
.
loads
(
x
[
1
])
device_id
=
data
[
'device'
][
'device_id'
]
diary_id
=
data
[
'params'
][
'extra_param'
][
0
][
"card_id"
]
return
device_id
,
diary_id
except
Exception
as
e
:
print
(
"get_data fail"
)
send_email
(
"get_data"
,
"get_data"
,
e
)
def
write_redis
(
device_id
,
cid_list
):
try
:
db
=
pymysql
.
connect
(
host
=
'172.16.40.158'
,
port
=
4000
,
user
=
'root'
,
passwd
=
'3SYz54LS9#^9sBvC'
,
db
=
'eagle'
)
sql
=
"select b.id from src_mimas_prod_api_diary_tags a left join src_zhengxing_api_tag b "
\
"on a.tag_id = b.id where b.tag_type = '3' and a.diary_id in {}"
.
format
(
tuple
(
cid_list
))
cursor
=
db
.
cursor
()
cursor
.
execute
(
sql
)
result
=
cursor
.
fetchall
()
tags
=
list
(
set
([
i
[
0
]
for
i
in
result
]))
if
tags
is
not
None
:
sql
=
"select a.id from src_mimas_prod_api_diary a left join src_mimas_prod_api_diary_tags b "
\
"on a.id=b.diary_id left join src_zhengxing_api_tag c on b.tag_id=c.id "
\
"where a.is_online = 1 and a.content_level >= '3' "
\
"and c.id in {} and c.tag_type = '3'"
.
format
(
tuple
(
tags
))
cursor
.
execute
(
sql
)
result
=
cursor
.
fetchall
()
if
result
is
not
None
:
cids
=
list
(
set
([
i
[
0
]
for
i
in
result
]))
r
=
redis
.
StrictRedis
.
from_url
(
'redis://:ReDis!GmTx*0aN6@172.16.40.133:6379'
)
key
=
str
(
device_id
)
+
"_dislike_diary"
if
r
.
exists
(
key
):
value
=
eval
(
r
.
get
(
key
))
value
.
extend
(
cids
)
cids
=
json
.
dumps
(
list
(
set
(
value
)))
r
.
set
(
key
,
json
.
dumps
(
cids
))
else
:
r
.
set
(
key
,
json
.
dumps
(
cids
))
r
.
expire
(
key
,
7
*
24
*
60
*
60
)
except
Exception
as
e
:
print
(
"insert redis fail"
)
print
(
e
)
# Spark-Streaming-Kafka
# Spark-Streaming-Kafka
sc
=
SparkContext
(
conf
=
SparkConf
()
.
setMaster
(
"spark://nvwa01:7077"
)
.
setAppName
(
"filter"
)
.
set
(
"spark.io.compression.codec"
,
"lzf"
))
sc
=
SparkContext
(
conf
=
SparkConf
()
.
setMaster
(
"spark://nvwa01:7077"
)
.
setAppName
(
"filter"
)
.
set
(
"spark.io.compression.codec"
,
"lzf"
))
ssc
=
SQLContext
(
sc
)
ssc
=
SQLContext
(
sc
)
...
...
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