crawlo 1.1.0__py3-none-any.whl → 1.1.2__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Potentially problematic release.
This version of crawlo might be problematic. Click here for more details.
- crawlo/__init__.py +34 -24
- crawlo/__version__.py +1 -1
- crawlo/cli.py +40 -40
- crawlo/commands/__init__.py +13 -13
- crawlo/commands/check.py +594 -155
- crawlo/commands/genspider.py +152 -111
- crawlo/commands/list.py +156 -119
- crawlo/commands/run.py +285 -170
- crawlo/commands/startproject.py +196 -101
- crawlo/commands/stats.py +188 -167
- crawlo/commands/utils.py +187 -0
- crawlo/config.py +280 -0
- crawlo/core/__init__.py +2 -2
- crawlo/core/engine.py +171 -158
- crawlo/core/enhanced_engine.py +190 -0
- crawlo/core/processor.py +40 -40
- crawlo/core/scheduler.py +162 -57
- crawlo/crawler.py +1028 -493
- crawlo/downloader/__init__.py +242 -78
- crawlo/downloader/aiohttp_downloader.py +212 -199
- crawlo/downloader/cffi_downloader.py +252 -277
- crawlo/downloader/httpx_downloader.py +257 -246
- crawlo/event.py +11 -11
- crawlo/exceptions.py +78 -78
- crawlo/extension/__init__.py +31 -31
- crawlo/extension/log_interval.py +49 -49
- crawlo/extension/log_stats.py +44 -44
- crawlo/extension/logging_extension.py +34 -34
- crawlo/filters/__init__.py +154 -37
- crawlo/filters/aioredis_filter.py +242 -150
- crawlo/filters/memory_filter.py +269 -202
- crawlo/items/__init__.py +23 -23
- crawlo/items/base.py +21 -21
- crawlo/items/fields.py +53 -53
- crawlo/items/items.py +104 -104
- crawlo/middleware/__init__.py +21 -21
- crawlo/middleware/default_header.py +32 -32
- crawlo/middleware/download_delay.py +28 -28
- crawlo/middleware/middleware_manager.py +135 -135
- crawlo/middleware/proxy.py +248 -245
- crawlo/middleware/request_ignore.py +30 -30
- crawlo/middleware/response_code.py +18 -18
- crawlo/middleware/response_filter.py +26 -26
- crawlo/middleware/retry.py +125 -90
- crawlo/mode_manager.py +201 -0
- crawlo/network/__init__.py +21 -7
- crawlo/network/request.py +311 -203
- crawlo/network/response.py +269 -166
- crawlo/pipelines/__init__.py +13 -13
- crawlo/pipelines/console_pipeline.py +39 -39
- crawlo/pipelines/csv_pipeline.py +317 -0
- crawlo/pipelines/json_pipeline.py +219 -0
- crawlo/pipelines/mongo_pipeline.py +116 -116
- crawlo/pipelines/mysql_pipeline.py +195 -195
- crawlo/pipelines/pipeline_manager.py +56 -56
- crawlo/project.py +153 -0
- crawlo/queue/pqueue.py +37 -0
- crawlo/queue/queue_manager.py +304 -0
- crawlo/queue/redis_priority_queue.py +192 -0
- crawlo/settings/__init__.py +7 -7
- crawlo/settings/default_settings.py +226 -169
- crawlo/settings/setting_manager.py +99 -99
- crawlo/spider/__init__.py +639 -129
- crawlo/stats_collector.py +59 -59
- crawlo/subscriber.py +106 -106
- crawlo/task_manager.py +30 -27
- crawlo/templates/crawlo.cfg.tmpl +10 -10
- crawlo/templates/project/__init__.py.tmpl +3 -3
- crawlo/templates/project/items.py.tmpl +17 -17
- crawlo/templates/project/middlewares.py.tmpl +87 -76
- crawlo/templates/project/pipelines.py.tmpl +336 -64
- crawlo/templates/project/run.py.tmpl +239 -0
- crawlo/templates/project/settings.py.tmpl +248 -54
- crawlo/templates/project/spiders/__init__.py.tmpl +5 -5
- crawlo/templates/spider/spider.py.tmpl +178 -32
- crawlo/utils/__init__.py +7 -7
- crawlo/utils/controlled_spider_mixin.py +336 -0
- crawlo/utils/date_tools.py +233 -233
- crawlo/utils/db_helper.py +343 -343
- crawlo/utils/func_tools.py +82 -82
- crawlo/utils/large_scale_config.py +287 -0
- crawlo/utils/large_scale_helper.py +344 -0
- crawlo/utils/log.py +128 -128
- crawlo/utils/queue_helper.py +176 -0
- crawlo/utils/request.py +267 -267
- crawlo/utils/request_serializer.py +220 -0
- crawlo/utils/spider_loader.py +62 -62
- crawlo/utils/system.py +11 -11
- crawlo/utils/tools.py +4 -4
- crawlo/utils/url.py +39 -39
- crawlo-1.1.2.dist-info/METADATA +567 -0
- crawlo-1.1.2.dist-info/RECORD +108 -0
- examples/__init__.py +7 -0
- tests/__init__.py +7 -7
- tests/test_final_validation.py +154 -0
- tests/test_proxy_health_check.py +32 -32
- tests/test_proxy_middleware_integration.py +136 -136
- tests/test_proxy_providers.py +56 -56
- tests/test_proxy_stats.py +19 -19
- tests/test_proxy_strategies.py +59 -59
- tests/test_redis_config.py +29 -0
- tests/test_redis_queue.py +225 -0
- tests/test_request_serialization.py +71 -0
- tests/test_scheduler.py +242 -0
- crawlo/pipelines/mysql_batch_pipline.py +0 -273
- crawlo/utils/concurrency_manager.py +0 -125
- crawlo/utils/pqueue.py +0 -174
- crawlo/utils/project.py +0 -197
- crawlo-1.1.0.dist-info/METADATA +0 -49
- crawlo-1.1.0.dist-info/RECORD +0 -97
- examples/gxb/items.py +0 -36
- examples/gxb/run.py +0 -16
- examples/gxb/settings.py +0 -72
- examples/gxb/spider/__init__.py +0 -2
- examples/gxb/spider/miit_spider.py +0 -180
- examples/gxb/spider/telecom_device.py +0 -129
- {examples/gxb → crawlo/queue}/__init__.py +0 -0
- {crawlo-1.1.0.dist-info → crawlo-1.1.2.dist-info}/WHEEL +0 -0
- {crawlo-1.1.0.dist-info → crawlo-1.1.2.dist-info}/entry_points.txt +0 -0
- {crawlo-1.1.0.dist-info → crawlo-1.1.2.dist-info}/top_level.txt +0 -0
|
@@ -1,117 +1,117 @@
|
|
|
1
|
-
# -*- coding: utf-8 -*-
|
|
2
|
-
from typing import Optional
|
|
3
|
-
from motor.motor_asyncio import AsyncIOMotorClient
|
|
4
|
-
from pymongo.errors import PyMongoError
|
|
5
|
-
from crawlo.utils.log import get_logger
|
|
6
|
-
from crawlo.exceptions import ItemDiscard
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
class MongoPipeline:
|
|
10
|
-
def __init__(self, crawler):
|
|
11
|
-
self.crawler = crawler
|
|
12
|
-
self.settings = crawler.settings
|
|
13
|
-
self.logger = get_logger(self.__class__.__name__, self.settings.get('LOG_LEVEL'))
|
|
14
|
-
|
|
15
|
-
# 初始化连接参数
|
|
16
|
-
self.client = None
|
|
17
|
-
self.db = None
|
|
18
|
-
self.collection = None
|
|
19
|
-
|
|
20
|
-
# 配置默认值
|
|
21
|
-
self.mongo_uri = self.settings.get('MONGO_URI', 'mongodb://localhost:27017')
|
|
22
|
-
self.db_name = self.settings.get('MONGO_DATABASE', 'scrapy_db')
|
|
23
|
-
self.collection_name = self.settings.get('MONGO_COLLECTION', crawler.spider.name)
|
|
24
|
-
|
|
25
|
-
# 注册关闭事件
|
|
26
|
-
crawler.subscriber.subscribe(self.spider_closed, event='spider_closed')
|
|
27
|
-
|
|
28
|
-
@classmethod
|
|
29
|
-
def from_crawler(cls, crawler):
|
|
30
|
-
return cls(crawler)
|
|
31
|
-
|
|
32
|
-
async def _ensure_connection(self):
|
|
33
|
-
"""确保连接已建立"""
|
|
34
|
-
if self.client is None:
|
|
35
|
-
self.client = AsyncIOMotorClient(self.mongo_uri)
|
|
36
|
-
self.db = self.client[self.db_name]
|
|
37
|
-
self.collection = self.db[self.collection_name]
|
|
38
|
-
self.logger.info(f"MongoDB连接建立 (集合: {self.collection_name})")
|
|
39
|
-
|
|
40
|
-
async def process_item(self, item, spider) -> Optional[dict]:
|
|
41
|
-
"""处理item的核心方法"""
|
|
42
|
-
try:
|
|
43
|
-
await self._ensure_connection()
|
|
44
|
-
|
|
45
|
-
item_dict = dict(item)
|
|
46
|
-
result = await self.collection.insert_one(item_dict)
|
|
47
|
-
|
|
48
|
-
# 统计计数
|
|
49
|
-
self.crawler.stats.inc_value('mongodb/inserted')
|
|
50
|
-
self.logger.debug(f"插入文档ID: {result.inserted_id}")
|
|
51
|
-
|
|
52
|
-
return item
|
|
53
|
-
|
|
54
|
-
except Exception as e:
|
|
55
|
-
self.crawler.stats.inc_value('mongodb/failed')
|
|
56
|
-
self.logger.error(f"MongoDB插入失败: {e}")
|
|
57
|
-
raise ItemDiscard(f"MongoDB操作失败: {e}")
|
|
58
|
-
|
|
59
|
-
async def spider_closed(self):
|
|
60
|
-
"""关闭爬虫时清理资源"""
|
|
61
|
-
if self.client:
|
|
62
|
-
self.client.close()
|
|
63
|
-
self.logger.info("MongoDB连接已关闭")
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
class MongoPoolPipeline:
|
|
67
|
-
def __init__(self, crawler):
|
|
68
|
-
self.crawler = crawler
|
|
69
|
-
self.settings = crawler.settings
|
|
70
|
-
self.logger = get_logger(self.__class__.__name__, self.settings.get('LOG_LEVEL'))
|
|
71
|
-
|
|
72
|
-
# 连接池配置
|
|
73
|
-
self.client = AsyncIOMotorClient(
|
|
74
|
-
self.settings.get('MONGO_URI', 'mongodb://localhost:27017'),
|
|
75
|
-
maxPoolSize=self.settings.getint('MONGO_MAX_POOL_SIZE', 100),
|
|
76
|
-
minPoolSize=self.settings.getint('MONGO_MIN_POOL_SIZE', 10),
|
|
77
|
-
connectTimeoutMS=5000,
|
|
78
|
-
socketTimeoutMS=30000
|
|
79
|
-
)
|
|
80
|
-
|
|
81
|
-
self.db = self.client[self.settings.get('MONGO_DATABASE', 'scrapy_db')]
|
|
82
|
-
self.collection = self.db[self.settings.get('MONGO_COLLECTION', crawler.spider.name)]
|
|
83
|
-
|
|
84
|
-
crawler.subscriber.subscribe(self.spider_closed, event='spider_closed')
|
|
85
|
-
self.logger.info(f"MongoDB连接池已初始化 (集合: {self.collection.name})")
|
|
86
|
-
|
|
87
|
-
@classmethod
|
|
88
|
-
def create_instance(cls, crawler):
|
|
89
|
-
return cls(crawler)
|
|
90
|
-
|
|
91
|
-
async def process_item(self, item, spider) -> Optional[dict]:
|
|
92
|
-
"""处理item方法(带重试机制)"""
|
|
93
|
-
try:
|
|
94
|
-
item_dict = dict(item)
|
|
95
|
-
|
|
96
|
-
# 带重试的插入操作
|
|
97
|
-
for attempt in range(3):
|
|
98
|
-
try:
|
|
99
|
-
result = await self.collection.insert_one(item_dict)
|
|
100
|
-
self.crawler.stats.inc_value('mongodb/insert_success')
|
|
101
|
-
self.logger.debug(f"插入成功 [attempt {attempt + 1}]: {result.inserted_id}")
|
|
102
|
-
return item
|
|
103
|
-
except PyMongoError as e:
|
|
104
|
-
if attempt == 2: # 最后一次尝试仍失败
|
|
105
|
-
raise
|
|
106
|
-
self.logger.warning(f"插入重试中 [attempt {attempt + 1}]: {e}")
|
|
107
|
-
|
|
108
|
-
except Exception as e:
|
|
109
|
-
self.crawler.stats.inc_value('mongodb/insert_failed')
|
|
110
|
-
self.logger.error(f"MongoDB操作最终失败: {e}")
|
|
111
|
-
raise ItemDiscard(f"MongoDB操作失败: {e}")
|
|
112
|
-
|
|
113
|
-
async def spider_closed(self):
|
|
114
|
-
"""资源清理"""
|
|
115
|
-
if hasattr(self, 'client'):
|
|
116
|
-
self.client.close()
|
|
1
|
+
# -*- coding: utf-8 -*-
|
|
2
|
+
from typing import Optional
|
|
3
|
+
from motor.motor_asyncio import AsyncIOMotorClient
|
|
4
|
+
from pymongo.errors import PyMongoError
|
|
5
|
+
from crawlo.utils.log import get_logger
|
|
6
|
+
from crawlo.exceptions import ItemDiscard
|
|
7
|
+
|
|
8
|
+
|
|
9
|
+
class MongoPipeline:
|
|
10
|
+
def __init__(self, crawler):
|
|
11
|
+
self.crawler = crawler
|
|
12
|
+
self.settings = crawler.settings
|
|
13
|
+
self.logger = get_logger(self.__class__.__name__, self.settings.get('LOG_LEVEL'))
|
|
14
|
+
|
|
15
|
+
# 初始化连接参数
|
|
16
|
+
self.client = None
|
|
17
|
+
self.db = None
|
|
18
|
+
self.collection = None
|
|
19
|
+
|
|
20
|
+
# 配置默认值
|
|
21
|
+
self.mongo_uri = self.settings.get('MONGO_URI', 'mongodb://localhost:27017')
|
|
22
|
+
self.db_name = self.settings.get('MONGO_DATABASE', 'scrapy_db')
|
|
23
|
+
self.collection_name = self.settings.get('MONGO_COLLECTION', crawler.spider.name)
|
|
24
|
+
|
|
25
|
+
# 注册关闭事件
|
|
26
|
+
crawler.subscriber.subscribe(self.spider_closed, event='spider_closed')
|
|
27
|
+
|
|
28
|
+
@classmethod
|
|
29
|
+
def from_crawler(cls, crawler):
|
|
30
|
+
return cls(crawler)
|
|
31
|
+
|
|
32
|
+
async def _ensure_connection(self):
|
|
33
|
+
"""确保连接已建立"""
|
|
34
|
+
if self.client is None:
|
|
35
|
+
self.client = AsyncIOMotorClient(self.mongo_uri)
|
|
36
|
+
self.db = self.client[self.db_name]
|
|
37
|
+
self.collection = self.db[self.collection_name]
|
|
38
|
+
self.logger.info(f"MongoDB连接建立 (集合: {self.collection_name})")
|
|
39
|
+
|
|
40
|
+
async def process_item(self, item, spider) -> Optional[dict]:
|
|
41
|
+
"""处理item的核心方法"""
|
|
42
|
+
try:
|
|
43
|
+
await self._ensure_connection()
|
|
44
|
+
|
|
45
|
+
item_dict = dict(item)
|
|
46
|
+
result = await self.collection.insert_one(item_dict)
|
|
47
|
+
|
|
48
|
+
# 统计计数
|
|
49
|
+
self.crawler.stats.inc_value('mongodb/inserted')
|
|
50
|
+
self.logger.debug(f"插入文档ID: {result.inserted_id}")
|
|
51
|
+
|
|
52
|
+
return item
|
|
53
|
+
|
|
54
|
+
except Exception as e:
|
|
55
|
+
self.crawler.stats.inc_value('mongodb/failed')
|
|
56
|
+
self.logger.error(f"MongoDB插入失败: {e}")
|
|
57
|
+
raise ItemDiscard(f"MongoDB操作失败: {e}")
|
|
58
|
+
|
|
59
|
+
async def spider_closed(self):
|
|
60
|
+
"""关闭爬虫时清理资源"""
|
|
61
|
+
if self.client:
|
|
62
|
+
self.client.close()
|
|
63
|
+
self.logger.info("MongoDB连接已关闭")
|
|
64
|
+
|
|
65
|
+
|
|
66
|
+
class MongoPoolPipeline:
|
|
67
|
+
def __init__(self, crawler):
|
|
68
|
+
self.crawler = crawler
|
|
69
|
+
self.settings = crawler.settings
|
|
70
|
+
self.logger = get_logger(self.__class__.__name__, self.settings.get('LOG_LEVEL'))
|
|
71
|
+
|
|
72
|
+
# 连接池配置
|
|
73
|
+
self.client = AsyncIOMotorClient(
|
|
74
|
+
self.settings.get('MONGO_URI', 'mongodb://localhost:27017'),
|
|
75
|
+
maxPoolSize=self.settings.getint('MONGO_MAX_POOL_SIZE', 100),
|
|
76
|
+
minPoolSize=self.settings.getint('MONGO_MIN_POOL_SIZE', 10),
|
|
77
|
+
connectTimeoutMS=5000,
|
|
78
|
+
socketTimeoutMS=30000
|
|
79
|
+
)
|
|
80
|
+
|
|
81
|
+
self.db = self.client[self.settings.get('MONGO_DATABASE', 'scrapy_db')]
|
|
82
|
+
self.collection = self.db[self.settings.get('MONGO_COLLECTION', crawler.spider.name)]
|
|
83
|
+
|
|
84
|
+
crawler.subscriber.subscribe(self.spider_closed, event='spider_closed')
|
|
85
|
+
self.logger.info(f"MongoDB连接池已初始化 (集合: {self.collection.name})")
|
|
86
|
+
|
|
87
|
+
@classmethod
|
|
88
|
+
def create_instance(cls, crawler):
|
|
89
|
+
return cls(crawler)
|
|
90
|
+
|
|
91
|
+
async def process_item(self, item, spider) -> Optional[dict]:
|
|
92
|
+
"""处理item方法(带重试机制)"""
|
|
93
|
+
try:
|
|
94
|
+
item_dict = dict(item)
|
|
95
|
+
|
|
96
|
+
# 带重试的插入操作
|
|
97
|
+
for attempt in range(3):
|
|
98
|
+
try:
|
|
99
|
+
result = await self.collection.insert_one(item_dict)
|
|
100
|
+
self.crawler.stats.inc_value('mongodb/insert_success')
|
|
101
|
+
self.logger.debug(f"插入成功 [attempt {attempt + 1}]: {result.inserted_id}")
|
|
102
|
+
return item
|
|
103
|
+
except PyMongoError as e:
|
|
104
|
+
if attempt == 2: # 最后一次尝试仍失败
|
|
105
|
+
raise
|
|
106
|
+
self.logger.warning(f"插入重试中 [attempt {attempt + 1}]: {e}")
|
|
107
|
+
|
|
108
|
+
except Exception as e:
|
|
109
|
+
self.crawler.stats.inc_value('mongodb/insert_failed')
|
|
110
|
+
self.logger.error(f"MongoDB操作最终失败: {e}")
|
|
111
|
+
raise ItemDiscard(f"MongoDB操作失败: {e}")
|
|
112
|
+
|
|
113
|
+
async def spider_closed(self):
|
|
114
|
+
"""资源清理"""
|
|
115
|
+
if hasattr(self, 'client'):
|
|
116
|
+
self.client.close()
|
|
117
117
|
self.logger.info("MongoDB连接池已释放")
|
|
@@ -1,195 +1,195 @@
|
|
|
1
|
-
# -*- coding: utf-8 -*-
|
|
2
|
-
import asyncio
|
|
3
|
-
import aiomysql
|
|
4
|
-
from typing import Optional
|
|
5
|
-
from asyncmy import create_pool
|
|
6
|
-
from crawlo.utils.log import get_logger
|
|
7
|
-
from crawlo.exceptions import ItemDiscard
|
|
8
|
-
from crawlo.utils.db_helper import make_insert_sql, logger
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
class AsyncmyMySQLPipeline:
|
|
12
|
-
def __init__(self, crawler):
|
|
13
|
-
self.crawler = crawler
|
|
14
|
-
self.settings = crawler.settings
|
|
15
|
-
self.logger = get_logger(self.__class__.__name__, self.settings.get('LOG_LEVEL'))
|
|
16
|
-
|
|
17
|
-
# 使用异步锁和初始化标志确保线程安全
|
|
18
|
-
self._pool_lock = asyncio.Lock()
|
|
19
|
-
self._pool_initialized = False
|
|
20
|
-
self.pool = None
|
|
21
|
-
self.table_name = (
|
|
22
|
-
self.settings.get('MYSQL_TABLE') or
|
|
23
|
-
getattr(crawler.spider, 'mysql_table', None) or
|
|
24
|
-
f"{crawler.spider.name}_items"
|
|
25
|
-
)
|
|
26
|
-
|
|
27
|
-
# 注册关闭事件
|
|
28
|
-
crawler.subscriber.subscribe(self.spider_closed, event='spider_closed')
|
|
29
|
-
|
|
30
|
-
@classmethod
|
|
31
|
-
def from_crawler(cls, crawler):
|
|
32
|
-
return cls(crawler)
|
|
33
|
-
|
|
34
|
-
async def _ensure_pool(self):
|
|
35
|
-
"""确保连接池已初始化(线程安全)"""
|
|
36
|
-
if self._pool_initialized:
|
|
37
|
-
return
|
|
38
|
-
|
|
39
|
-
async with self._pool_lock:
|
|
40
|
-
if not self._pool_initialized: # 双重检查避免竞争条件
|
|
41
|
-
try:
|
|
42
|
-
self.pool = await create_pool(
|
|
43
|
-
host=self.settings.get('MYSQL_HOST', 'localhost'),
|
|
44
|
-
port=self.settings.get_int('MYSQL_PORT', 3306),
|
|
45
|
-
user=self.settings.get('MYSQL_USER', 'root'),
|
|
46
|
-
password=self.settings.get('MYSQL_PASSWORD', ''),
|
|
47
|
-
db=self.settings.get('MYSQL_DB', 'scrapy_db'),
|
|
48
|
-
minsize=self.settings.get_int('MYSQL_POOL_MIN', 3),
|
|
49
|
-
maxsize=self.settings.get_int('MYSQL_POOL_MAX', 10),
|
|
50
|
-
echo=self.settings.get_bool('MYSQL_ECHO', False)
|
|
51
|
-
)
|
|
52
|
-
self._pool_initialized = True
|
|
53
|
-
self.logger.debug(f"MySQL连接池初始化完成(表: {self.table_name})")
|
|
54
|
-
except Exception as e:
|
|
55
|
-
self.logger.error(f"MySQL连接池初始化失败: {e}")
|
|
56
|
-
raise
|
|
57
|
-
|
|
58
|
-
async def process_item(self, item, spider, kwargs=None) -> Optional[dict]:
|
|
59
|
-
"""处理item的核心方法"""
|
|
60
|
-
kwargs = kwargs or {}
|
|
61
|
-
spider_name = getattr(spider, 'name', 'unknown') # 获取爬虫名称
|
|
62
|
-
try:
|
|
63
|
-
await self._ensure_pool()
|
|
64
|
-
item_dict = dict(item)
|
|
65
|
-
sql = make_insert_sql(table=self.table_name, data=item_dict, **kwargs)
|
|
66
|
-
|
|
67
|
-
rowcount = await self._execute_sql(sql=sql)
|
|
68
|
-
if rowcount > 1:
|
|
69
|
-
self.logger.info(
|
|
70
|
-
f"爬虫 {spider_name} 成功插入 {rowcount} 条记录到表 {self.table_name}"
|
|
71
|
-
)
|
|
72
|
-
elif rowcount == 1:
|
|
73
|
-
self.logger.debug(
|
|
74
|
-
f"爬虫 {spider_name} 成功插入单条记录到表 {self.table_name}"
|
|
75
|
-
)
|
|
76
|
-
else:
|
|
77
|
-
self.logger.warning(
|
|
78
|
-
f"爬虫 {spider_name}: SQL执行成功但未插入新记录 - {sql[:100]}..."
|
|
79
|
-
)
|
|
80
|
-
|
|
81
|
-
return item
|
|
82
|
-
|
|
83
|
-
except Exception as e:
|
|
84
|
-
self.logger.error(f"处理item时发生错误: {e}")
|
|
85
|
-
raise ItemDiscard(f"处理失败: {e}")
|
|
86
|
-
|
|
87
|
-
async def _execute_sql(self, sql: str, values: list = None) -> int:
|
|
88
|
-
"""执行SQL语句并处理结果"""
|
|
89
|
-
async with self.pool.acquire() as conn:
|
|
90
|
-
async with conn.cursor() as cursor:
|
|
91
|
-
try:
|
|
92
|
-
# 根据是否有参数值选择不同的执行方法
|
|
93
|
-
if values is not None:
|
|
94
|
-
rowcount = await cursor.execute(sql, values)
|
|
95
|
-
else:
|
|
96
|
-
rowcount = await cursor.execute(sql)
|
|
97
|
-
|
|
98
|
-
await conn.commit()
|
|
99
|
-
self.crawler.stats.inc_value('mysql/insert_success')
|
|
100
|
-
return rowcount
|
|
101
|
-
except Exception as e:
|
|
102
|
-
await conn.rollback()
|
|
103
|
-
self.crawler.stats.inc_value('mysql/insert_failed')
|
|
104
|
-
raise ItemDiscard(f"MySQL插入失败: {e}")
|
|
105
|
-
|
|
106
|
-
async def spider_closed(self):
|
|
107
|
-
"""关闭爬虫时清理资源"""
|
|
108
|
-
if self.pool:
|
|
109
|
-
self.pool.close()
|
|
110
|
-
await self.pool.wait_closed()
|
|
111
|
-
self.logger.info("MySQL连接池已关闭")
|
|
112
|
-
|
|
113
|
-
|
|
114
|
-
class AiomysqlMySQLPipeline:
|
|
115
|
-
def __init__(self, crawler):
|
|
116
|
-
self.crawler = crawler
|
|
117
|
-
self.settings = crawler.settings
|
|
118
|
-
self.logger = get_logger(self.__class__.__name__, self.settings.get('LOG_LEVEL'))
|
|
119
|
-
|
|
120
|
-
# 使用异步锁和初始化标志
|
|
121
|
-
self._pool_lock = asyncio.Lock()
|
|
122
|
-
self._pool_initialized = False
|
|
123
|
-
self.pool = None
|
|
124
|
-
self.table_name = (
|
|
125
|
-
self.settings.get('MYSQL_TABLE') or
|
|
126
|
-
getattr(crawler.spider, 'mysql_table', None) or
|
|
127
|
-
f"{crawler.spider.name}_items"
|
|
128
|
-
)
|
|
129
|
-
|
|
130
|
-
crawler.subscriber.subscribe(self.spider_closed, event='spider_closed')
|
|
131
|
-
|
|
132
|
-
@classmethod
|
|
133
|
-
def create_instance(cls, crawler):
|
|
134
|
-
return cls(crawler)
|
|
135
|
-
|
|
136
|
-
async def _init_pool(self):
|
|
137
|
-
"""延迟初始化连接池(线程安全)"""
|
|
138
|
-
if self._pool_initialized:
|
|
139
|
-
return
|
|
140
|
-
|
|
141
|
-
async with self._pool_lock:
|
|
142
|
-
if not self._pool_initialized:
|
|
143
|
-
try:
|
|
144
|
-
self.pool = await aiomysql.create_pool(
|
|
145
|
-
host=self.settings.get('MYSQL_HOST', 'localhost'),
|
|
146
|
-
port=self.settings.getint('MYSQL_PORT', 3306),
|
|
147
|
-
user=self.settings.get('MYSQL_USER', 'root'),
|
|
148
|
-
password=self.settings.get('MYSQL_PASSWORD', ''),
|
|
149
|
-
db=self.settings.get('MYSQL_DB', 'scrapy_db'),
|
|
150
|
-
minsize=self.settings.getint('MYSQL_POOL_MIN', 2),
|
|
151
|
-
maxsize=self.settings.getint('MYSQL_POOL_MAX', 5),
|
|
152
|
-
cursorclass=aiomysql.DictCursor,
|
|
153
|
-
autocommit=False
|
|
154
|
-
)
|
|
155
|
-
self._pool_initialized = True
|
|
156
|
-
self.logger.debug(f"aiomysql连接池已初始化(表: {self.table_name})")
|
|
157
|
-
except Exception as e:
|
|
158
|
-
self.logger.error(f"aiomysql连接池初始化失败: {e}")
|
|
159
|
-
raise
|
|
160
|
-
|
|
161
|
-
async def process_item(self, item, spider) -> Optional[dict]:
|
|
162
|
-
"""处理item方法"""
|
|
163
|
-
try:
|
|
164
|
-
await self._init_pool()
|
|
165
|
-
|
|
166
|
-
item_dict = dict(item)
|
|
167
|
-
sql = f"""
|
|
168
|
-
INSERT INTO `{self.table_name}`
|
|
169
|
-
({', '.join([f'`{k}`' for k in item_dict.keys()])})
|
|
170
|
-
VALUES ({', '.join(['%s'] * len(item_dict))})
|
|
171
|
-
"""
|
|
172
|
-
|
|
173
|
-
async with self.pool.acquire() as conn:
|
|
174
|
-
async with conn.cursor() as cursor:
|
|
175
|
-
try:
|
|
176
|
-
await cursor.execute(sql, list(item_dict.values()))
|
|
177
|
-
await conn.commit()
|
|
178
|
-
self.crawler.stats.inc_value('mysql/insert_success')
|
|
179
|
-
except aiomysql.Error as e:
|
|
180
|
-
await conn.rollback()
|
|
181
|
-
self.crawler.stats.inc_value('mysql/insert_failed')
|
|
182
|
-
raise ItemDiscard(f"MySQL错误: {e.args[1]}")
|
|
183
|
-
|
|
184
|
-
return item
|
|
185
|
-
|
|
186
|
-
except Exception as e:
|
|
187
|
-
self.logger.error(f"Pipeline处理异常: {e}")
|
|
188
|
-
raise ItemDiscard(f"处理失败: {e}")
|
|
189
|
-
|
|
190
|
-
async def spider_closed(self):
|
|
191
|
-
"""资源清理"""
|
|
192
|
-
if self.pool:
|
|
193
|
-
self.pool.close()
|
|
194
|
-
await self.pool.wait_closed()
|
|
195
|
-
self.logger.info("aiomysql连接池已释放")
|
|
1
|
+
# -*- coding: utf-8 -*-
|
|
2
|
+
import asyncio
|
|
3
|
+
import aiomysql
|
|
4
|
+
from typing import Optional
|
|
5
|
+
from asyncmy import create_pool
|
|
6
|
+
from crawlo.utils.log import get_logger
|
|
7
|
+
from crawlo.exceptions import ItemDiscard
|
|
8
|
+
from crawlo.utils.db_helper import make_insert_sql, logger
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
class AsyncmyMySQLPipeline:
|
|
12
|
+
def __init__(self, crawler):
|
|
13
|
+
self.crawler = crawler
|
|
14
|
+
self.settings = crawler.settings
|
|
15
|
+
self.logger = get_logger(self.__class__.__name__, self.settings.get('LOG_LEVEL'))
|
|
16
|
+
|
|
17
|
+
# 使用异步锁和初始化标志确保线程安全
|
|
18
|
+
self._pool_lock = asyncio.Lock()
|
|
19
|
+
self._pool_initialized = False
|
|
20
|
+
self.pool = None
|
|
21
|
+
self.table_name = (
|
|
22
|
+
self.settings.get('MYSQL_TABLE') or
|
|
23
|
+
getattr(crawler.spider, 'mysql_table', None) or
|
|
24
|
+
f"{crawler.spider.name}_items"
|
|
25
|
+
)
|
|
26
|
+
|
|
27
|
+
# 注册关闭事件
|
|
28
|
+
crawler.subscriber.subscribe(self.spider_closed, event='spider_closed')
|
|
29
|
+
|
|
30
|
+
@classmethod
|
|
31
|
+
def from_crawler(cls, crawler):
|
|
32
|
+
return cls(crawler)
|
|
33
|
+
|
|
34
|
+
async def _ensure_pool(self):
|
|
35
|
+
"""确保连接池已初始化(线程安全)"""
|
|
36
|
+
if self._pool_initialized:
|
|
37
|
+
return
|
|
38
|
+
|
|
39
|
+
async with self._pool_lock:
|
|
40
|
+
if not self._pool_initialized: # 双重检查避免竞争条件
|
|
41
|
+
try:
|
|
42
|
+
self.pool = await create_pool(
|
|
43
|
+
host=self.settings.get('MYSQL_HOST', 'localhost'),
|
|
44
|
+
port=self.settings.get_int('MYSQL_PORT', 3306),
|
|
45
|
+
user=self.settings.get('MYSQL_USER', 'root'),
|
|
46
|
+
password=self.settings.get('MYSQL_PASSWORD', ''),
|
|
47
|
+
db=self.settings.get('MYSQL_DB', 'scrapy_db'),
|
|
48
|
+
minsize=self.settings.get_int('MYSQL_POOL_MIN', 3),
|
|
49
|
+
maxsize=self.settings.get_int('MYSQL_POOL_MAX', 10),
|
|
50
|
+
echo=self.settings.get_bool('MYSQL_ECHO', False)
|
|
51
|
+
)
|
|
52
|
+
self._pool_initialized = True
|
|
53
|
+
self.logger.debug(f"MySQL连接池初始化完成(表: {self.table_name})")
|
|
54
|
+
except Exception as e:
|
|
55
|
+
self.logger.error(f"MySQL连接池初始化失败: {e}")
|
|
56
|
+
raise
|
|
57
|
+
|
|
58
|
+
async def process_item(self, item, spider, kwargs=None) -> Optional[dict]:
|
|
59
|
+
"""处理item的核心方法"""
|
|
60
|
+
kwargs = kwargs or {}
|
|
61
|
+
spider_name = getattr(spider, 'name', 'unknown') # 获取爬虫名称
|
|
62
|
+
try:
|
|
63
|
+
await self._ensure_pool()
|
|
64
|
+
item_dict = dict(item)
|
|
65
|
+
sql = make_insert_sql(table=self.table_name, data=item_dict, **kwargs)
|
|
66
|
+
|
|
67
|
+
rowcount = await self._execute_sql(sql=sql)
|
|
68
|
+
if rowcount > 1:
|
|
69
|
+
self.logger.info(
|
|
70
|
+
f"爬虫 {spider_name} 成功插入 {rowcount} 条记录到表 {self.table_name}"
|
|
71
|
+
)
|
|
72
|
+
elif rowcount == 1:
|
|
73
|
+
self.logger.debug(
|
|
74
|
+
f"爬虫 {spider_name} 成功插入单条记录到表 {self.table_name}"
|
|
75
|
+
)
|
|
76
|
+
else:
|
|
77
|
+
self.logger.warning(
|
|
78
|
+
f"爬虫 {spider_name}: SQL执行成功但未插入新记录 - {sql[:100]}..."
|
|
79
|
+
)
|
|
80
|
+
|
|
81
|
+
return item
|
|
82
|
+
|
|
83
|
+
except Exception as e:
|
|
84
|
+
self.logger.error(f"处理item时发生错误: {e}")
|
|
85
|
+
raise ItemDiscard(f"处理失败: {e}")
|
|
86
|
+
|
|
87
|
+
async def _execute_sql(self, sql: str, values: list = None) -> int:
|
|
88
|
+
"""执行SQL语句并处理结果"""
|
|
89
|
+
async with self.pool.acquire() as conn:
|
|
90
|
+
async with conn.cursor() as cursor:
|
|
91
|
+
try:
|
|
92
|
+
# 根据是否有参数值选择不同的执行方法
|
|
93
|
+
if values is not None:
|
|
94
|
+
rowcount = await cursor.execute(sql, values)
|
|
95
|
+
else:
|
|
96
|
+
rowcount = await cursor.execute(sql)
|
|
97
|
+
|
|
98
|
+
await conn.commit()
|
|
99
|
+
self.crawler.stats.inc_value('mysql/insert_success')
|
|
100
|
+
return rowcount
|
|
101
|
+
except Exception as e:
|
|
102
|
+
await conn.rollback()
|
|
103
|
+
self.crawler.stats.inc_value('mysql/insert_failed')
|
|
104
|
+
raise ItemDiscard(f"MySQL插入失败: {e}")
|
|
105
|
+
|
|
106
|
+
async def spider_closed(self):
|
|
107
|
+
"""关闭爬虫时清理资源"""
|
|
108
|
+
if self.pool:
|
|
109
|
+
self.pool.close()
|
|
110
|
+
await self.pool.wait_closed()
|
|
111
|
+
self.logger.info("MySQL连接池已关闭")
|
|
112
|
+
|
|
113
|
+
|
|
114
|
+
class AiomysqlMySQLPipeline:
|
|
115
|
+
def __init__(self, crawler):
|
|
116
|
+
self.crawler = crawler
|
|
117
|
+
self.settings = crawler.settings
|
|
118
|
+
self.logger = get_logger(self.__class__.__name__, self.settings.get('LOG_LEVEL'))
|
|
119
|
+
|
|
120
|
+
# 使用异步锁和初始化标志
|
|
121
|
+
self._pool_lock = asyncio.Lock()
|
|
122
|
+
self._pool_initialized = False
|
|
123
|
+
self.pool = None
|
|
124
|
+
self.table_name = (
|
|
125
|
+
self.settings.get('MYSQL_TABLE') or
|
|
126
|
+
getattr(crawler.spider, 'mysql_table', None) or
|
|
127
|
+
f"{crawler.spider.name}_items"
|
|
128
|
+
)
|
|
129
|
+
|
|
130
|
+
crawler.subscriber.subscribe(self.spider_closed, event='spider_closed')
|
|
131
|
+
|
|
132
|
+
@classmethod
|
|
133
|
+
def create_instance(cls, crawler):
|
|
134
|
+
return cls(crawler)
|
|
135
|
+
|
|
136
|
+
async def _init_pool(self):
|
|
137
|
+
"""延迟初始化连接池(线程安全)"""
|
|
138
|
+
if self._pool_initialized:
|
|
139
|
+
return
|
|
140
|
+
|
|
141
|
+
async with self._pool_lock:
|
|
142
|
+
if not self._pool_initialized:
|
|
143
|
+
try:
|
|
144
|
+
self.pool = await aiomysql.create_pool(
|
|
145
|
+
host=self.settings.get('MYSQL_HOST', 'localhost'),
|
|
146
|
+
port=self.settings.getint('MYSQL_PORT', 3306),
|
|
147
|
+
user=self.settings.get('MYSQL_USER', 'root'),
|
|
148
|
+
password=self.settings.get('MYSQL_PASSWORD', ''),
|
|
149
|
+
db=self.settings.get('MYSQL_DB', 'scrapy_db'),
|
|
150
|
+
minsize=self.settings.getint('MYSQL_POOL_MIN', 2),
|
|
151
|
+
maxsize=self.settings.getint('MYSQL_POOL_MAX', 5),
|
|
152
|
+
cursorclass=aiomysql.DictCursor,
|
|
153
|
+
autocommit=False
|
|
154
|
+
)
|
|
155
|
+
self._pool_initialized = True
|
|
156
|
+
self.logger.debug(f"aiomysql连接池已初始化(表: {self.table_name})")
|
|
157
|
+
except Exception as e:
|
|
158
|
+
self.logger.error(f"aiomysql连接池初始化失败: {e}")
|
|
159
|
+
raise
|
|
160
|
+
|
|
161
|
+
async def process_item(self, item, spider) -> Optional[dict]:
|
|
162
|
+
"""处理item方法"""
|
|
163
|
+
try:
|
|
164
|
+
await self._init_pool()
|
|
165
|
+
|
|
166
|
+
item_dict = dict(item)
|
|
167
|
+
sql = f"""
|
|
168
|
+
INSERT INTO `{self.table_name}`
|
|
169
|
+
({', '.join([f'`{k}`' for k in item_dict.keys()])})
|
|
170
|
+
VALUES ({', '.join(['%s'] * len(item_dict))})
|
|
171
|
+
"""
|
|
172
|
+
|
|
173
|
+
async with self.pool.acquire() as conn:
|
|
174
|
+
async with conn.cursor() as cursor:
|
|
175
|
+
try:
|
|
176
|
+
await cursor.execute(sql, list(item_dict.values()))
|
|
177
|
+
await conn.commit()
|
|
178
|
+
self.crawler.stats.inc_value('mysql/insert_success')
|
|
179
|
+
except aiomysql.Error as e:
|
|
180
|
+
await conn.rollback()
|
|
181
|
+
self.crawler.stats.inc_value('mysql/insert_failed')
|
|
182
|
+
raise ItemDiscard(f"MySQL错误: {e.args[1]}")
|
|
183
|
+
|
|
184
|
+
return item
|
|
185
|
+
|
|
186
|
+
except Exception as e:
|
|
187
|
+
self.logger.error(f"Pipeline处理异常: {e}")
|
|
188
|
+
raise ItemDiscard(f"处理失败: {e}")
|
|
189
|
+
|
|
190
|
+
async def spider_closed(self):
|
|
191
|
+
"""资源清理"""
|
|
192
|
+
if self.pool:
|
|
193
|
+
self.pool.close()
|
|
194
|
+
await self.pool.wait_closed()
|
|
195
|
+
self.logger.info("aiomysql连接池已释放")
|