diff --git a/new_user_analysis/new_user_behavior_analysis.py b/new_user_analysis/new_user_behavior_analysis.py
index 64abaff32e503b3416319f94468536296625f1a3..fb1162a2e02406513b6ebc2d67a863a6a08c2a79 100644
--- a/new_user_analysis/new_user_behavior_analysis.py
+++ b/new_user_analysis/new_user_behavior_analysis.py
@@ -91,8 +91,8 @@ task_list = []
 tractate_list = []
 
 
-task_days = 3
-for t in range(2, task_days):
+task_days = 2
+for t in range(1, task_days):
     day_num = 0 - t
     now = (datetime.datetime.now() + datetime.timedelta(days=day_num))
     last_30_day_str = (now + datetime.timedelta(days=-30)).strftime("%Y%m%d")
@@ -240,7 +240,7 @@ WHERE dev.device_id is null and t2.device_id is not null
                          app_session_id
                )a on a.cl_id = dev.device_id
                LATERAL VIEW explode (a.recommend_type) v as recommend_type
-               group by cl_id having  session_pv0 >= 16
+               group by cl_id having  session_pv0 >= 8
        """.format(partition_day=today_str)
 
     print(new_urser_device_id_sql)