Browse Source

账号抓取分析任务 && 一些重构

luojunhui 4 months ago
parent
commit
e07f464005
1 changed files with 1 additions and 1 deletions
  1. 1 1
      tasks/ai_tasks/category_generation_task.py

+ 1 - 1
tasks/ai_tasks/category_generation_task.py

@@ -410,7 +410,7 @@ class ArticlePoolCategoryGenerationTask(CategoryGenerationTask):
         fetch_query = f"""
                select article_id, title from {self.const.ARTICLE_TABLE_NAME}
                where category_status = %s and status = %s and score > %s
-               order by score desc limit 100000;
+               order by score desc limit 1000;
            """
         fetch_result = self.db_client.fetch(
             query=fetch_query,