Commit e5dead1d authored by 王志伟's avatar 王志伟

计算多天的推荐重复问题

parent b07d8b12
......@@ -312,12 +312,12 @@ object Repeated_content_recommendation_moreday {
val exp_diary = sc.sql(
s"""
|select stat_date,device_id,concat_ws(',',collect_set(distinct cid_id)) as expoure_diary
|select device_id,concat_ws(',',collect_set(distinct cid_id)) as expoure_diary
|from data_feed_exposure_precise
|where cid_type = 'diary'
|and device_id not in (select device_id from blacklist)
|and stat_date ='${stat_date}'
|group by device_id,stat_date
|group by device_id
""".stripMargin
)
exp_diary.show()
......
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