@@ -36,6 +36,36 @@ class AsyncRetriever(Retriever):
36
36
def __post_init__ (self , parameters : Mapping [str , Any ]) -> None :
37
37
self ._parameters = parameters
38
38
39
+ @property
40
+ def exit_on_rate_limit (self ) -> bool :
41
+ """
42
+ Whether to exit on rate limit. This is a property of the job repository
43
+ and not the stream slicer. The stream slicer is responsible for creating
44
+ the jobs, but the job repository is responsible for managing the rate
45
+ limits and other job-related properties.
46
+
47
+ Note:
48
+ - If the `creation_requester` cannot place / create the job - it might be the case of the RateLimits
49
+ - If the `creation_requester` can place / create the job - it means all other requesters should successfully manage
50
+ to complete the results.
51
+ """
52
+ job_orchestrator = self .stream_slicer ._job_orchestrator
53
+ if job_orchestrator is None :
54
+ # Default value when orchestrator is not available
55
+ return False
56
+ return job_orchestrator ._job_repository .creation_requester .exit_on_rate_limit # type: ignore
57
+
58
+ @exit_on_rate_limit .setter
59
+ def exit_on_rate_limit (self , value : bool ) -> None :
60
+ """
61
+ Sets the `exit_on_rate_limit` property of the job repository > creation_requester,
62
+ meaning that the Job cannot be placed / created if the rate limit is reached.
63
+ Thus no further work on managing jobs is expected to be done.
64
+ """
65
+ job_orchestrator = self .stream_slicer ._job_orchestrator
66
+ if job_orchestrator is not None :
67
+ job_orchestrator ._job_repository .creation_requester .exit_on_rate_limit = value # type: ignore[attr-defined, assignment]
68
+
39
69
@property
40
70
def state (self ) -> StreamState :
41
71
"""
0 commit comments