Commit cb750d52 authored by 张彦钊's avatar 张彦钊

change test file

parent 8572836f
...@@ -96,36 +96,34 @@ def write_redis(device_id,cid_list): ...@@ -96,36 +96,34 @@ def write_redis(device_id,cid_list):
print("insert redis fail") print("insert redis fail")
print(e) print(e)
def group_redis(y): def group_redis(device_id,cid_list):
for x in y: db = pymysql.connect(host='172.16.40.158', port=4000, user='root', passwd='3SYz54LS9#^9sBvC', db='eagle')
device_id = x[0] sql = "select b.id from src_mimas_prod_api_diary_tags a left join src_zhengxing_api_tag b " \
cid_list = x[1] "on a.tag_id = b.id where b.tag_type = '3' and a.diary_id in {}".format(tuple(cid_list))
db = pymysql.connect(host='172.16.40.158', port=4000, user='root', passwd='3SYz54LS9#^9sBvC', db='eagle') cursor = db.cursor()
sql = "select b.id from src_mimas_prod_api_diary_tags a left join src_zhengxing_api_tag b " \ cursor.execute(sql)
"on a.tag_id = b.id where b.tag_type = '3' and a.diary_id in {}".format(tuple(cid_list)) result = cursor.fetchall()
cursor = db.cursor() db.close()
tags = list(set([i[0] for i in result]))
if len(tags) != 0:
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) cursor.execute(sql)
result = cursor.fetchall() result = cursor.fetchall()
tags = list(set([i[0] for i in result])) cids = list(set([i[0] for i in result]))
if len(tags) != 0: if len(cids) >1 :
sql = "select a.id from src_mimas_prod_api_diary a left join src_mimas_prod_api_diary_tags b " \ r = redis.StrictRedis.from_url('redis://:ReDis!GmTx*0aN6@172.16.40.133:6379')
"on a.id=b.diary_id left join src_zhengxing_api_tag c on b.tag_id=c.id " \ key = str(device_id) + "_dislike_diary"
"where a.is_online = 1 and a.content_level >= '3' " \ if r.exists(key):
"and c.id in {} and c.tag_type = '3'".format(tuple(tags)) value = eval(r.get(key))
cursor.execute(sql) value.extend(cids)
result = cursor.fetchall() cids = json.dumps(list(set(value)))
cids = list(set([i[0] for i in result])) r.set(key, json.dumps(cids))
if len(cids) >1 : else:
r = redis.StrictRedis.from_url('redis://:ReDis!GmTx*0aN6@172.16.40.133:6379') r.set(key, json.dumps(cids))
key = str(device_id) + "_dislike_diary" r.expire(key, 60*60)
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, 60*60)
# def group_write(rdd): # def group_write(rdd):
...@@ -147,7 +145,7 @@ kafkaParams = {"metadata.broker.list": "172.16.44.25:9092,172.16.44.31:9092,172. ...@@ -147,7 +145,7 @@ kafkaParams = {"metadata.broker.list": "172.16.44.25:9092,172.16.44.31:9092,172.
stream = KafkaUtils.createDirectStream(ssc, ["gm-maidian-data"], kafkaParams) stream = KafkaUtils.createDirectStream(ssc, ["gm-maidian-data"], kafkaParams)
transformstream = stream.transform(lambda x:model(x)).foreachRDD(lambda x:x.groupByKey(). transformstream = stream.transform(lambda x:model(x)).foreachRDD(lambda x:x.groupByKey().
foreachPartition(group_redis)) foreach(group_redis))
# transformstream.pprint() # transformstream.pprint()
# print(transformstream) # print(transformstream)
ssc.start() ssc.start()
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment