cobweb-launcher 3.1.16__py3-none-any.whl → 3.1.17__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.
- cobweb/schedulers/scheduler.py +9 -8
- cobweb/schedulers/scheduler_with_redis.py +2 -2
- {cobweb_launcher-3.1.16.dist-info → cobweb_launcher-3.1.17.dist-info}/METADATA +1 -1
- {cobweb_launcher-3.1.16.dist-info → cobweb_launcher-3.1.17.dist-info}/RECORD +7 -7
- {cobweb_launcher-3.1.16.dist-info → cobweb_launcher-3.1.17.dist-info}/LICENSE +0 -0
- {cobweb_launcher-3.1.16.dist-info → cobweb_launcher-3.1.17.dist-info}/WHEEL +0 -0
- {cobweb_launcher-3.1.16.dist-info → cobweb_launcher-3.1.17.dist-info}/top_level.txt +0 -0
cobweb/schedulers/scheduler.py
CHANGED
@@ -65,15 +65,16 @@ class Scheduler(ABC, threading.Thread):
|
|
65
65
|
with self.lock:
|
66
66
|
return self.__WORKING_ITEMS__.copy()
|
67
67
|
|
68
|
-
def remove_working_items(self, items: list[str] = None):
|
68
|
+
def remove_working_items(self, items: list[str] = None) -> int:
|
69
69
|
if not items:
|
70
|
-
return
|
71
|
-
|
72
|
-
|
73
|
-
|
74
|
-
|
75
|
-
|
76
|
-
|
70
|
+
return 0
|
71
|
+
with self.lock:
|
72
|
+
deleted_count = 0
|
73
|
+
for item in items:
|
74
|
+
if item in self.__WORKING_ITEMS__:
|
75
|
+
del self.__WORKING_ITEMS__[item]
|
76
|
+
deleted_count += 1
|
77
|
+
return deleted_count
|
77
78
|
|
78
79
|
def get_working_items_count(self) -> int:
|
79
80
|
with self.lock:
|
@@ -97,12 +97,12 @@ class RedisScheduler(Scheduler):
|
|
97
97
|
"""
|
98
98
|
刷新doing种子过期时间,防止reset重新消费
|
99
99
|
"""
|
100
|
+
time.sleep(20)
|
100
101
|
if item_info := self.get_working_items():
|
101
102
|
refresh_time = int(time.time())
|
102
103
|
seed_info = {k: -refresh_time - v / 1000 for k, v in item_info.items()}
|
103
104
|
self.db.zadd(self.todo_key, seed_info, xx=True)
|
104
105
|
self.set_working_items(seed_info)
|
105
|
-
time.sleep(20)
|
106
106
|
|
107
107
|
@check_pause
|
108
108
|
def delete(self):
|
@@ -114,7 +114,7 @@ class RedisScheduler(Scheduler):
|
|
114
114
|
|
115
115
|
if self.remove_working_items(items):
|
116
116
|
self.db.zrem(self.todo_key, *items)
|
117
|
-
|
117
|
+
elif seeds:
|
118
118
|
self.done.push(seeds)
|
119
119
|
|
120
120
|
if self.done.length < self.done_queue_max_size:
|
@@ -24,16 +24,16 @@ cobweb/pipelines/pipeline.py,sha256=OgSEZ2DdqofpZcer1Wj1tuBqn8OHVjrYQ5poqt75czQ,
|
|
24
24
|
cobweb/pipelines/pipeline_csv.py,sha256=TFqxqgVUqkBF6Jott4zd6fvCSxzG67lpafRQtXPw1eg,807
|
25
25
|
cobweb/pipelines/pipeline_loghub.py,sha256=zwIa_pcWBB2UNGd32Cu-i1jKGNruTbo2STdxl1WGwZ0,1829
|
26
26
|
cobweb/schedulers/__init__.py,sha256=LEya11fdAv0X28YzbQTeC1LQZ156Fj4cyEMGqQHUWW0,49
|
27
|
-
cobweb/schedulers/scheduler.py,sha256=
|
28
|
-
cobweb/schedulers/scheduler_with_redis.py,sha256=
|
27
|
+
cobweb/schedulers/scheduler.py,sha256=lBN0ZgfZADq3EH_lPdLOxhrgmZ2GCxrZqzdQQT_bdR8,2937
|
28
|
+
cobweb/schedulers/scheduler_with_redis.py,sha256=d8lG4QZEfS9m4V9QnOqia-I3hZ_2gwM4InOX7BOR3-M,6358
|
29
29
|
cobweb/utils/__init__.py,sha256=TRFJyyBjaQH_sejU6G_msOeHpjc3ZXU0dUOO5GQfknM,171
|
30
30
|
cobweb/utils/bloom.py,sha256=A8xqtHXp7jgRoBuUlpovmq8lhU5y7IEF0FOCjfQDb6s,1855
|
31
31
|
cobweb/utils/decorators.py,sha256=ZwVQlz-lYHgXgKf9KRCp15EWPzTDdhoikYUNUCIqNeM,1140
|
32
32
|
cobweb/utils/dotting.py,sha256=L-jGSApdnFIP4jUWH6p5qIme0aJ1vyDrxAx8wOJWvcs,1960
|
33
33
|
cobweb/utils/oss.py,sha256=wmToIIVNO8nCQVRmreVaZejk01aCWS35e1NV6cr0yGI,4192
|
34
34
|
cobweb/utils/tools.py,sha256=14TCedqt07m4z6bCnFAsITOFixeGr8V3aOKk--L7Cr0,879
|
35
|
-
cobweb_launcher-3.1.
|
36
|
-
cobweb_launcher-3.1.
|
37
|
-
cobweb_launcher-3.1.
|
38
|
-
cobweb_launcher-3.1.
|
39
|
-
cobweb_launcher-3.1.
|
35
|
+
cobweb_launcher-3.1.17.dist-info/LICENSE,sha256=z1rxSIGOyzcSb3orZxFPxzx-0C1vTocmswqBNxpKfEk,1063
|
36
|
+
cobweb_launcher-3.1.17.dist-info/METADATA,sha256=vz70vRxivUpOV_beizaVdV3EJQucKbJFdXz6-ntliDg,5998
|
37
|
+
cobweb_launcher-3.1.17.dist-info/WHEEL,sha256=ewwEueio1C2XeHTvT17n8dZUJgOvyCWCt0WVNLClP9o,92
|
38
|
+
cobweb_launcher-3.1.17.dist-info/top_level.txt,sha256=4GETBGNsKqiCUezmT-mJn7tjhcDlu7nLIV5gGgHBW4I,7
|
39
|
+
cobweb_launcher-3.1.17.dist-info/RECORD,,
|
File without changes
|
File without changes
|
File without changes
|