Skip to content
Projects
Groups
Snippets
Help
Loading...
Sign in
Toggle navigation
V
vest
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
2
Merge Requests
2
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
rank
vest
Commits
0c5a9582
Commit
0c5a9582
authored
Dec 26, 2019
by
李小芳
Browse files
Options
Browse Files
Download
Plain Diff
Merge branch 'test' into 'master'
Test See merge request
!3
parents
aaa065f1
f3801996
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
19 additions
and
12 deletions
+19
-12
click_fun.py
click/views/click_fun.py
+1
-1
comment_fun.py
comment/views/comment_fun.py
+1
-1
follow_fun.py
follow/views/follow_fun.py
+1
-1
consum.py
moment/views/consum.py
+16
-9
No files found.
click/views/click_fun.py
View file @
0c5a9582
...
...
@@ -28,7 +28,7 @@ def click(card_info):
logging
.
info
(
"get redis_data:
%
s"
%
redis_data
)
values
=
list
(
redis_data
.
values
())
s
=
[
True
for
i
in
values
if
i
>
0
]
s
=
[
True
for
i
in
values
if
i
>
1
0
]
if
len
(
s
)
>
0
:
send_email_tome
(
str
(
redis_data
)
+
str
(
card_info
))
...
...
comment/views/comment_fun.py
View file @
0c5a9582
...
...
@@ -29,7 +29,7 @@ def comment(card_info):
logging
.
info
(
"get redis_data:
%
s"
%
redis_data
)
values
=
list
(
redis_data
.
values
())
s
=
[
True
for
i
in
values
if
i
>
0
]
s
=
[
True
for
i
in
values
if
i
>
1
0
]
if
len
(
s
)
>
0
:
send_email_tome
(
str
(
redis_data
)
+
str
(
card_info
))
...
...
follow/views/follow_fun.py
View file @
0c5a9582
...
...
@@ -27,7 +27,7 @@ def follow(card_info):
logging
.
info
(
"get redis_data:
%
s"
%
redis_data
)
values
=
list
(
redis_data
.
values
())
s
=
[
True
for
i
in
values
if
i
>
0
]
s
=
[
True
for
i
in
values
if
i
>
1
0
]
if
len
(
s
)
>
0
:
send_email_tome
(
str
(
redis_data
)
+
str
(
card_info
))
...
...
moment/views/consum.py
View file @
0c5a9582
...
...
@@ -23,7 +23,7 @@ from kafka.structs import TopicPartition
def
kafka_consum
(
topic_name
=
None
):
topic_name
=
settings
.
KAFKA_TOPIC_NAME
if
not
topic_name
else
topic_name
consumser_obj
=
KafkaConsumer
(
topic_name
,
auto_offset_reset
=
'largest'
,
bootstrap_servers
=
[
settings
.
KAFKA_BROKER_LIST
],
enable_auto_commit
=
True
,
consumser_obj
=
KafkaConsumer
(
topic_name
,
bootstrap_servers
=
[
settings
.
KAFKA_BROKER_LIST
],
enable_auto_commit
=
True
,
auto_commit_interval_ms
=
1
,
group_id
=
"vest"
)
consumser_obj
.
subscribe
([
topic_name
,
])
try
:
...
...
@@ -40,8 +40,9 @@ def kafka_consum(topic_name=None):
for
msg
in
consume_msg
:
card_info
=
json
.
loads
(
msg
.
value
)
if
card_info
[
'card_type'
]
==
"auto_vest"
:
logging
.
info
(
"消费到新数据了[
%
s,
%
s,
%
s,
%
s],get card_info:
%
s"
%
(
str
(
msg
.
topic
),
str
(
msg
.
partition
),
str
(
msg
.
offset
),
str
(
msg
.
key
),
card_info
))
redis_client
.
hset
(
redis_topic_partition_name
,
msg
.
partition
,
msg
.
offset
)
logging
.
info
(
"消费到新数据了[
%
s,
%
s,
%
s,
%
s],get card_info:
%
s"
%
(
str
(
msg
.
topic
),
str
(
msg
.
partition
),
str
(
msg
.
offset
),
str
(
msg
.
key
),
card_info
))
redis_client
.
hset
(
redis_topic_partition_name
,
msg
.
partition
,
msg
.
offset
)
# 代表当天数据
current_push_time
=
card_info
[
'current_push_time'
]
create_time
=
card_info
[
'create_time'
]
...
...
@@ -68,7 +69,7 @@ def kafka_consum(topic_name=None):
if
nowtime
.
day
-
push_time_date
.
day
==
0
:
# 今日的已经下发完了,需要去取之后的
action_type
=
card_info
[
'action_type'
]
logging
.
info
(
"今天已经下发完了[
%
s,
%
s,
%
s,
%
s]"
%
(
str
(
msg
.
topic
),
str
(
msg
.
partition
),
str
(
msg
.
offset
),
str
(
msg
.
key
)))
str
(
msg
.
topic
),
str
(
msg
.
partition
),
str
(
msg
.
offset
),
str
(
msg
.
key
)))
if
action_type
==
"comment"
:
auto_comment_user
(
card_info
,
after_day
=
True
)
elif
action_type
==
"click"
:
...
...
@@ -89,7 +90,9 @@ def kafka_consum(topic_name=None):
card_info
[
'have_comment_number'
]
<
20
:
card_info
[
"have_comment_number"
]
+=
1
is_success
=
comment
(
card_info
)
logging
.
info
(
"comment [
%
s,
%
s,
%
s,
%
s],当前ID:
%
s,下发状状态:
%
s"
%
(
str
(
msg
.
topic
),
str
(
msg
.
partition
),
str
(
msg
.
offset
),
str
(
msg
.
key
),
card_info
[
"card_id"
],
is_success
))
logging
.
info
(
"comment [
%
s,
%
s,
%
s,
%
s],当前ID:
%
s,下发状状态:
%
s"
%
(
str
(
msg
.
topic
),
str
(
msg
.
partition
),
str
(
msg
.
offset
),
str
(
msg
.
key
),
card_info
[
"card_id"
],
is_success
))
# 调完接口后需要再次去拿新的push_time的时间
auto_comment_user
(
card_info
)
...
...
@@ -98,7 +101,9 @@ def kafka_consum(topic_name=None):
if
'have_click_number'
in
card_info
and
card_info
[
'have_click_number'
]
<
20
:
card_info
[
"have_click_number"
]
+=
1
is_success
=
click
(
card_info
)
logging
.
info
(
"click [
%
s,
%
s,
%
s,
%
s],当前ID:
%
s,下发状状态:
%
s"
%
(
str
(
msg
.
topic
),
str
(
msg
.
partition
),
str
(
msg
.
offset
),
str
(
msg
.
key
),
card_info
[
"card_id"
],
is_success
))
logging
.
info
(
"click [
%
s,
%
s,
%
s,
%
s],当前ID:
%
s,下发状状态:
%
s"
%
(
str
(
msg
.
topic
),
str
(
msg
.
partition
),
str
(
msg
.
offset
),
str
(
msg
.
key
),
card_info
[
"card_id"
],
is_success
))
auto_click_user
(
card_info
)
...
...
@@ -108,16 +113,18 @@ def kafka_consum(topic_name=None):
card_info
[
'have_follow_number'
]
<
20
:
card_info
[
"have_follow_number"
]
+=
1
is_success
=
follow
(
card_info
)
logging
.
info
(
"follow [
%
s,
%
s,
%
s,
%
s],当前ID:
%
s,下发状状态:
%
s"
%
(
str
(
msg
.
topic
),
str
(
msg
.
partition
),
str
(
msg
.
offset
),
str
(
msg
.
key
),
card_info
[
"card_id"
],
is_success
))
logging
.
info
(
"follow [
%
s,
%
s,
%
s,
%
s],当前ID:
%
s,下发状状态:
%
s"
%
(
str
(
msg
.
topic
),
str
(
msg
.
partition
),
str
(
msg
.
offset
),
str
(
msg
.
key
),
card_info
[
"card_id"
],
is_success
))
auto_follow_user
(
card_info
)
else
:
# push_time时间未到 需要等待
logging
.
info
(
"follow [
%
s,
%
s,
%
s,
%
s],push_time未到,需要等待"
%
(
str
(
msg
.
topic
),
str
(
msg
.
partition
),
str
(
msg
.
offset
),
str
(
msg
.
key
)))
str
(
msg
.
topic
),
str
(
msg
.
partition
),
str
(
msg
.
offset
),
str
(
msg
.
key
)))
save_data_to_kafka
(
card_info
)
pass
logging
.
info
(
"消费处理耗时:
%
f"
%
(
time
.
time
()
-
begin
))
logging
.
info
(
"消费处理耗时:
%
f"
%
(
time
.
time
()
-
begin
))
except
:
consumser_obj
.
close
()
logging_exception
()
...
...
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