-
Notifications
You must be signed in to change notification settings - Fork 17
Expand file tree
/
Copy pathrun.py
More file actions
687 lines (545 loc) · 26.2 KB
/
Copy pathrun.py
File metadata and controls
687 lines (545 loc) · 26.2 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
from __future__ import annotations
import json
import json as jsonlib
import logging
import random
import string
import time
from datetime import timedelta
from typing import TYPE_CHECKING, Any
from apify_client._logging import create_redirect_logger
from apify_client._utils import (
encode_key_value_store_record_value,
filter_out_none_values_recursively,
parse_date_fields,
pluck_data,
to_safe_id,
)
from apify_client.clients.base import ActorJobBaseClient, ActorJobBaseClientAsync
from apify_client.clients.resource_clients.dataset import DatasetClient, DatasetClientAsync
from apify_client.clients.resource_clients.key_value_store import KeyValueStoreClient, KeyValueStoreClientAsync
from apify_client.clients.resource_clients.log import (
LogClient,
LogClientAsync,
StatusMessageWatcherAsync,
StatusMessageWatcherSync,
StreamedLogAsync,
StreamedLogSync,
)
from apify_client.clients.resource_clients.request_queue import RequestQueueClient, RequestQueueClientAsync
if TYPE_CHECKING:
import logging
from decimal import Decimal
from apify_shared.consts import RunGeneralAccess
class RunClient(ActorJobBaseClient):
"""Sub-client for manipulating a single Actor run."""
def __init__(self, *args: Any, **kwargs: Any) -> None:
resource_path = kwargs.pop('resource_path', 'actor-runs')
super().__init__(*args, resource_path=resource_path, **kwargs)
def get(self) -> dict | None:
"""Return information about the Actor run.
https://docs.apify.com/api/v2#/reference/actor-runs/run-object/get-run
Returns:
The retrieved Actor run data.
"""
return self._get()
def update(
self,
*,
status_message: str | None = None,
is_status_message_terminal: bool | None = None,
general_access: RunGeneralAccess | None = None,
) -> dict:
"""Update the run with the specified fields.
https://docs.apify.com/api/v2#/reference/actor-runs/run-object/update-run
Args:
status_message: The new status message for the run.
is_status_message_terminal: Set this flag to True if this is the final status message of the Actor run.
general_access: Determines how others can access the run and its storages.
Returns:
The updated run.
"""
updated_fields = {
'statusMessage': status_message,
'isStatusMessageTerminal': is_status_message_terminal,
'generalAccess': general_access,
}
return self._update(filter_out_none_values_recursively(updated_fields))
def delete(self) -> None:
"""Delete the run.
https://docs.apify.com/api/v2#/reference/actor-runs/delete-run/delete-run
"""
return self._delete()
def abort(self, *, gracefully: bool | None = None) -> dict:
"""Abort the Actor run which is starting or currently running and return its details.
https://docs.apify.com/api/v2#/reference/actor-runs/abort-run/abort-run
Args:
gracefully: If True, the Actor run will abort gracefully. It will send `aborting` and `persistStates`
events into the run and force-stop the run after 30 seconds. It is helpful in cases where you plan
to resurrect the run later.
Returns:
The data of the aborted Actor run.
"""
return self._abort(gracefully=gracefully)
def wait_for_finish(self, *, wait_secs: int | None = None) -> dict | None:
"""Wait synchronously until the run finishes or the server times out.
Args:
wait_secs: How long does the client wait for run to finish. None for indefinite.
Returns:
The Actor run data. If the status on the object is not one of the terminal statuses (SUCEEDED, FAILED,
TIMED_OUT, ABORTED), then the run has not yet finished.
"""
return self._wait_for_finish(wait_secs=wait_secs)
def metamorph(
self,
*,
target_actor_id: str,
target_actor_build: str | None = None,
run_input: Any = None,
content_type: str | None = None,
) -> dict:
"""Transform an Actor run into a run of another Actor with a new input.
https://docs.apify.com/api/v2#/reference/actor-runs/metamorph-run/metamorph-run
Args:
target_actor_id: ID of the target Actor that the run should be transformed into.
target_actor_build: The build of the target Actor. It can be either a build tag or build number.
By default, the run uses the build specified in the default run configuration for the target Actor
(typically the latest build).
run_input: The input to pass to the new run.
content_type: The content type of the input.
Returns:
The Actor run data.
"""
run_input, content_type = encode_key_value_store_record_value(run_input, content_type)
safe_target_actor_id = to_safe_id(target_actor_id)
request_params = self._params(targetActorId=safe_target_actor_id, build=target_actor_build)
response = self.http_client.call(
url=self._url('metamorph'),
method='POST',
headers={'content-type': content_type},
data=run_input,
params=request_params,
)
return parse_date_fields(pluck_data(jsonlib.loads(response.text)))
def resurrect(
self,
*,
build: str | None = None,
memory_mbytes: int | None = None,
timeout_secs: int | None = None,
max_items: int | None = None,
max_total_charge_usd: Decimal | None = None,
restart_on_error: bool | None = None,
) -> dict:
"""Resurrect a finished Actor run.
Only finished runs, i.e. runs with status FINISHED, FAILED, ABORTED and TIMED-OUT can be resurrected.
Run status will be updated to RUNNING and its container will be restarted with the same default storages.
https://docs.apify.com/api/v2#/reference/actor-runs/resurrect-run/resurrect-run
Args:
build: Which Actor build the resurrected run should use. It can be either a build tag or build number.
By default, the resurrected run uses the same build as before.
memory_mbytes: New memory limit for the resurrected run, in megabytes. By default, the resurrected run
uses the same memory limit as before.
timeout_secs: New timeout for the resurrected run, in seconds. By default, the resurrected run uses the
same timeout as before.
max_items: Maximum number of items that the resurrected pay-per-result run will return. By default, the
resurrected run uses the same limit as before. Limit can be only increased.
max_total_charge_usd: Maximum cost for the resurrected pay-per-event run in USD. By default, the
resurrected run uses the same limit as before. Limit can be only increased.
restart_on_error: Determines whether the resurrected run will be restarted if it fails.
By default, the resurrected run uses the same setting as before.
Returns:
The Actor run data.
"""
request_params = self._params(
build=build,
memory=memory_mbytes,
timeout=timeout_secs,
maxItems=max_items,
maxTotalChargeUsd=max_total_charge_usd,
restartOnError=restart_on_error,
)
response = self.http_client.call(
url=self._url('resurrect'),
method='POST',
params=request_params,
)
return parse_date_fields(pluck_data(jsonlib.loads(response.text)))
def reboot(self) -> dict:
"""Reboot an Actor run. Only runs that are running, i.e. runs with status RUNNING can be rebooted.
https://docs.apify.com/api/v2#/reference/actor-runs/reboot-run/reboot-run
Returns:
The Actor run data.
"""
response = self.http_client.call(
url=self._url('reboot'),
method='POST',
)
return parse_date_fields(pluck_data(jsonlib.loads(response.text)))
def dataset(self) -> DatasetClient:
"""Get the client for the default dataset of the Actor run.
https://docs.apify.com/api/v2#/reference/actors/last-run-object-and-its-storages
Returns:
A client allowing access to the default dataset of this Actor run.
"""
return DatasetClient(
**self._sub_resource_init_options(resource_path='dataset'),
)
def key_value_store(self) -> KeyValueStoreClient:
"""Get the client for the default key-value store of the Actor run.
https://docs.apify.com/api/v2#/reference/actors/last-run-object-and-its-storages
Returns:
A client allowing access to the default key-value store of this Actor run.
"""
return KeyValueStoreClient(
**self._sub_resource_init_options(resource_path='key-value-store'),
)
def request_queue(self) -> RequestQueueClient:
"""Get the client for the default request queue of the Actor run.
https://docs.apify.com/api/v2#/reference/actors/last-run-object-and-its-storages
Returns:
A client allowing access to the default request_queue of this Actor run.
"""
return RequestQueueClient(
**self._sub_resource_init_options(resource_path='request-queue'),
)
def log(self) -> LogClient:
"""Get the client for the log of the Actor run.
https://docs.apify.com/api/v2#/reference/actors/last-run-object-and-its-storages
Returns:
A client allowing access to the log of this Actor run.
"""
return LogClient(
**self._sub_resource_init_options(resource_path='log'),
)
def get_streamed_log(self, to_logger: logging.Logger | None = None, *, from_start: bool = True) -> StreamedLogSync:
"""Get `StreamedLog` instance that can be used to redirect logs.
`StreamedLog` can be explicitly started and stopped or used as a context manager.
Args:
to_logger: `Logger` used for logging the redirected messages. If not provided, a new logger is created
from_start: If `True`, all logs from the start of the actor run will be redirected. If `False`, only newly
arrived logs will be redirected. This can be useful for redirecting only a small portion of relevant
logs for long-running actors in stand-by.
Returns:
`StreamedLog` instance for redirected logs.
"""
run_data = self.get()
run_id = f'runId:{run_data.get("id", "")}' if run_data else ''
actor_id = run_data.get('actId', '') if run_data else ''
actor_data = self.root_client.actor(actor_id=actor_id).get() or {}
actor_name = actor_data.get('name', '') if run_data else ''
if not to_logger:
name = ' '.join(part for part in (actor_name, run_id) if part)
to_logger = create_redirect_logger(f'apify.{name}')
return StreamedLogSync(log_client=self.log(), to_logger=to_logger, from_start=from_start)
def charge(
self,
event_name: str,
count: int | None = None,
idempotency_key: str | None = None,
) -> None:
"""Charge for an event of a Pay-Per-Event Actor run.
https://docs.apify.com/api/v2#/reference/actor-runs/charge-events-in-run
Returns:
Status and message of the charge event.
"""
if not event_name:
raise ValueError('event_name is required for charging an event')
idempotency_key = (
idempotency_key
or f'{self.resource_id}-{event_name}-{int(time.time() * 1000)}-{"".join(random.choices(string.ascii_letters + string.digits, k=6))}' # noqa: E501
)
self.http_client.call(
url=self._url('charge'),
method='POST',
headers={
'idempotency-key': idempotency_key,
'content-type': 'application/json',
},
data=json.dumps(
{
'eventName': event_name,
'count': count or 1,
}
),
)
def get_status_message_watcher(
self, to_logger: logging.Logger | None = None, check_period: timedelta = timedelta(seconds=1)
) -> StatusMessageWatcherSync:
"""Get `StatusMessageWatcher` instance that can be used to redirect status and status messages to logs.
`StatusMessageWatcher` can be explicitly started and stopped or used as a context manager.
Args:
to_logger: `Logger` used for logging the status and status messages. If not provided, a new logger is
created.
check_period: The period with which the status message will be polled.
Returns:
`StatusMessageWatcher` instance.
"""
run_data = self.get()
run_id = f'runId:{run_data.get("id", "")}' if run_data else ''
actor_id = run_data.get('actId', '') if run_data else ''
actor_data = self.root_client.actor(actor_id=actor_id).get() or {}
actor_name = actor_data.get('name', '') if run_data else ''
if not to_logger:
name = ' '.join(part for part in (actor_name, run_id) if part)
to_logger = create_redirect_logger(f'apify.{name}')
return StatusMessageWatcherSync(run_client=self, to_logger=to_logger, check_period=check_period)
class RunClientAsync(ActorJobBaseClientAsync):
"""Async sub-client for manipulating a single Actor run."""
def __init__(self, *args: Any, **kwargs: Any) -> None:
resource_path = kwargs.pop('resource_path', 'actor-runs')
super().__init__(*args, resource_path=resource_path, **kwargs)
async def get(self) -> dict | None:
"""Return information about the Actor run.
https://docs.apify.com/api/v2#/reference/actor-runs/run-object/get-run
Returns:
The retrieved Actor run data.
"""
return await self._get()
async def update(
self,
*,
status_message: str | None = None,
is_status_message_terminal: bool | None = None,
general_access: RunGeneralAccess | None = None,
) -> dict:
"""Update the run with the specified fields.
https://docs.apify.com/api/v2#/reference/actor-runs/run-object/update-run
Args:
status_message: The new status message for the run.
is_status_message_terminal: Set this flag to True if this is the final status message of the Actor run.
general_access: Determines how others can access the run and its storages.
Returns:
The updated run.
"""
updated_fields = {
'statusMessage': status_message,
'isStatusMessageTerminal': is_status_message_terminal,
'generalAccess': general_access,
}
return await self._update(filter_out_none_values_recursively(updated_fields))
async def abort(self, *, gracefully: bool | None = None) -> dict:
"""Abort the Actor run which is starting or currently running and return its details.
https://docs.apify.com/api/v2#/reference/actor-runs/abort-run/abort-run
Args:
gracefully: If True, the Actor run will abort gracefully. It will send `aborting` and `persistStates`
events into the run and force-stop the run after 30 seconds. It is helpful in cases where you plan
to resurrect the run later.
Returns:
The data of the aborted Actor run.
"""
return await self._abort(gracefully=gracefully)
async def wait_for_finish(self, *, wait_secs: int | None = None) -> dict | None:
"""Wait synchronously until the run finishes or the server times out.
Args:
wait_secs: How long does the client wait for run to finish. None for indefinite.
Returns:
The Actor run data. If the status on the object is not one of the terminal statuses (SUCEEDED, FAILED,
TIMED_OUT, ABORTED), then the run has not yet finished.
"""
return await self._wait_for_finish(wait_secs=wait_secs)
async def delete(self) -> None:
"""Delete the run.
https://docs.apify.com/api/v2#/reference/actor-runs/delete-run/delete-run
"""
return await self._delete()
async def metamorph(
self,
*,
target_actor_id: str,
target_actor_build: str | None = None,
run_input: Any = None,
content_type: str | None = None,
) -> dict:
"""Transform an Actor run into a run of another Actor with a new input.
https://docs.apify.com/api/v2#/reference/actor-runs/metamorph-run/metamorph-run
Args:
target_actor_id: ID of the target Actor that the run should be transformed into.
target_actor_build: The build of the target Actor. It can be either a build tag or build number.
By default, the run uses the build specified in the default run configuration for the target Actor
(typically the latest build).
run_input: The input to pass to the new run.
content_type: The content type of the input.
Returns:
The Actor run data.
"""
run_input, content_type = encode_key_value_store_record_value(run_input, content_type)
safe_target_actor_id = to_safe_id(target_actor_id)
request_params = self._params(
targetActorId=safe_target_actor_id,
build=target_actor_build,
)
response = await self.http_client.call(
url=self._url('metamorph'),
method='POST',
headers={'content-type': content_type},
data=run_input,
params=request_params,
)
return parse_date_fields(pluck_data(jsonlib.loads(response.text)))
async def resurrect(
self,
*,
build: str | None = None,
memory_mbytes: int | None = None,
timeout_secs: int | None = None,
max_items: int | None = None,
max_total_charge_usd: Decimal | None = None,
restart_on_error: bool | None = None,
) -> dict:
"""Resurrect a finished Actor run.
Only finished runs, i.e. runs with status FINISHED, FAILED, ABORTED and TIMED-OUT can be resurrected.
Run status will be updated to RUNNING and its container will be restarted with the same default storages.
https://docs.apify.com/api/v2#/reference/actor-runs/resurrect-run/resurrect-run
Args:
build: Which Actor build the resurrected run should use. It can be either a build tag or build number.
By default, the resurrected run uses the same build as before.
memory_mbytes: New memory limit for the resurrected run, in megabytes. By default, the resurrected run
uses the same memory limit as before.
timeout_secs: New timeout for the resurrected run, in seconds. By default, the resurrected run uses the
same timeout as before.
max_items: Maximum number of items that the resurrected pay-per-result run will return. By default, the
resurrected run uses the same limit as before. Limit can be only increased.
max_total_charge_usd: Maximum cost for the resurrected pay-per-event run in USD. By default, the
resurrected run uses the same limit as before. Limit can be only increased.
restart_on_error: Determines whether the resurrected run will be restarted if it fails.
By default, the resurrected run uses the same setting as before.
Returns:
The Actor run data.
"""
request_params = self._params(
build=build,
memory=memory_mbytes,
timeout=timeout_secs,
maxItems=max_items,
maxTotalChargeUsd=max_total_charge_usd,
restartOnError=restart_on_error,
)
response = await self.http_client.call(
url=self._url('resurrect'),
method='POST',
params=request_params,
)
return parse_date_fields(pluck_data(jsonlib.loads(response.text)))
async def reboot(self) -> dict:
"""Reboot an Actor run. Only runs that are running, i.e. runs with status RUNNING can be rebooted.
https://docs.apify.com/api/v2#/reference/actor-runs/reboot-run/reboot-run
Returns:
The Actor run data.
"""
response = await self.http_client.call(
url=self._url('reboot'),
method='POST',
)
return parse_date_fields(pluck_data(jsonlib.loads(response.text)))
def dataset(self) -> DatasetClientAsync:
"""Get the client for the default dataset of the Actor run.
https://docs.apify.com/api/v2#/reference/actors/last-run-object-and-its-storages
Returns:
A client allowing access to the default dataset of this Actor run.
"""
return DatasetClientAsync(
**self._sub_resource_init_options(resource_path='dataset'),
)
def key_value_store(self) -> KeyValueStoreClientAsync:
"""Get the client for the default key-value store of the Actor run.
https://docs.apify.com/api/v2#/reference/actors/last-run-object-and-its-storages
Returns:
A client allowing access to the default key-value store of this Actor run.
"""
return KeyValueStoreClientAsync(
**self._sub_resource_init_options(resource_path='key-value-store'),
)
def request_queue(self) -> RequestQueueClientAsync:
"""Get the client for the default request queue of the Actor run.
https://docs.apify.com/api/v2#/reference/actors/last-run-object-and-its-storages
Returns:
A client allowing access to the default request_queue of this Actor run.
"""
return RequestQueueClientAsync(
**self._sub_resource_init_options(resource_path='request-queue'),
)
def log(self) -> LogClientAsync:
"""Get the client for the log of the Actor run.
https://docs.apify.com/api/v2#/reference/actors/last-run-object-and-its-storages
Returns:
A client allowing access to the log of this Actor run.
"""
return LogClientAsync(
**self._sub_resource_init_options(resource_path='log'),
)
async def get_streamed_log(
self, to_logger: logging.Logger | None = None, *, from_start: bool = True
) -> StreamedLogAsync:
"""Get `StreamedLog` instance that can be used to redirect logs.
`StreamedLog` can be explicitly started and stopped or used as a context manager.
Args:
to_logger: `Logger` used for logging the redirected messages. If not provided, a new logger is created
from_start: If `True`, all logs from the start of the actor run will be redirected. If `False`, only newly
arrived logs will be redirected. This can be useful for redirecting only a small portion of relevant
logs for long-running actors in stand-by.
Returns:
`StreamedLog` instance for redirected logs.
"""
run_data = await self.get()
run_id = f'runId:{run_data.get("id", "")}' if run_data else ''
actor_id = run_data.get('actId', '') if run_data else ''
actor_data = await self.root_client.actor(actor_id=actor_id).get() or {}
actor_name = actor_data.get('name', '') if run_data else ''
if not to_logger:
name = ' '.join(part for part in (actor_name, run_id) if part)
to_logger = create_redirect_logger(f'apify.{name}')
return StreamedLogAsync(log_client=self.log(), to_logger=to_logger, from_start=from_start)
async def charge(
self,
event_name: str,
count: int | None = None,
idempotency_key: str | None = None,
) -> None:
"""Charge for an event of a Pay-Per-Event Actor run.
https://docs.apify.com/api/v2#/reference/actor-runs/charge-events-in-run
Returns:
Status and message of the charge event.
"""
if not event_name:
raise ValueError('event_name is required for charging an event')
idempotency_key = idempotency_key or (
f'{self.resource_id}-{event_name}-{int(time.time() * 1000)}-{"".join(random.choices(string.ascii_letters + string.digits, k=6))}' # noqa: E501
)
await self.http_client.call(
url=self._url('charge'),
method='POST',
headers={
'idempotency-key': idempotency_key,
'content-type': 'application/json',
},
data=json.dumps(
{
'eventName': event_name,
'count': count or 1,
}
),
)
async def get_status_message_watcher(
self,
to_logger: logging.Logger | None = None,
check_period: timedelta = timedelta(seconds=1),
) -> StatusMessageWatcherAsync:
"""Get `StatusMessageWatcher` instance that can be used to redirect status and status messages to logs.
`StatusMessageWatcher` can be explicitly started and stopped or used as a context manager.
Args:
to_logger: `Logger` used for logging the status and status messages. If not provided, a new logger is
created.
check_period: The period with which the status message will be polled.
Returns:
`StatusMessageWatcher` instance.
"""
run_data = await self.get()
run_id = f'runId:{run_data.get("id", "")}' if run_data else ''
actor_id = run_data.get('actId', '') if run_data else ''
actor_data = await self.root_client.actor(actor_id=actor_id).get() or {}
actor_name = actor_data.get('name', '') if run_data else ''
if not to_logger:
name = ' '.join(part for part in (actor_name, run_id) if part)
to_logger = create_redirect_logger(f'apify.{name}')
return StatusMessageWatcherAsync(run_client=self, to_logger=to_logger, check_period=check_period)