@crawlee/core 4.0.0-beta.15 → 4.0.0-beta.150
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.
- package/README.md +14 -14
- package/autoscaling/autoscaled_pool.d.ts +73 -177
- package/autoscaling/autoscaled_pool.js +182 -329
- package/autoscaling/concurrency_system.d.ts +268 -0
- package/autoscaling/concurrency_system.js +364 -0
- package/autoscaling/cpu_load_signal.d.ts +43 -0
- package/autoscaling/cpu_load_signal.js +47 -0
- package/autoscaling/event_loop_load_signal.d.ts +51 -0
- package/autoscaling/event_loop_load_signal.js +60 -0
- package/autoscaling/index.d.ts +6 -1
- package/autoscaling/index.js +6 -1
- package/autoscaling/load_signal.d.ts +98 -0
- package/autoscaling/load_signal.js +103 -0
- package/autoscaling/memory_load_signal.d.ts +47 -0
- package/autoscaling/memory_load_signal.js +106 -0
- package/autoscaling/snapshotter.d.ts +58 -163
- package/autoscaling/snapshotter.js +45 -263
- package/autoscaling/storage_backend_load_signal.d.ts +56 -0
- package/autoscaling/storage_backend_load_signal.js +73 -0
- package/autoscaling/system_status.d.ts +67 -89
- package/autoscaling/system_status.js +92 -122
- package/autoscaling/weighted_avg.d.ts +5 -0
- package/autoscaling/weighted_avg.js +14 -0
- package/byte_utils.d.ts +17 -0
- package/byte_utils.js +42 -0
- package/configuration.d.ts +96 -223
- package/configuration.js +170 -222
- package/cookie_utils.d.ts +3 -2
- package/cookie_utils.js +18 -7
- package/crawlers/context_pipeline.d.ts +10 -1
- package/crawlers/context_pipeline.js +31 -8
- package/crawlers/crawler_commons.d.ts +90 -126
- package/crawlers/crawler_commons.js +1 -108
- package/crawlers/error_snapshotter.d.ts +2 -5
- package/crawlers/error_snapshotter.js +7 -8
- package/crawlers/error_tracker.d.ts +0 -1
- package/crawlers/error_tracker.js +0 -1
- package/crawlers/index.d.ts +1 -3
- package/crawlers/index.js +0 -3
- package/crawlers/internals/types.d.ts +0 -1
- package/crawlers/internals/types.js +0 -1
- package/crawlers/statistics.d.ts +187 -64
- package/crawlers/statistics.js +354 -165
- package/debug.d.ts +36 -0
- package/debug.js +70 -0
- package/enqueue_links/enqueue_links.d.ts +61 -154
- package/enqueue_links/enqueue_links.js +40 -232
- package/enqueue_links/index.d.ts +0 -1
- package/enqueue_links/index.js +0 -1
- package/enqueue_links/shared.d.ts +55 -28
- package/enqueue_links/shared.js +116 -69
- package/errors.d.ts +72 -4
- package/errors.js +89 -5
- package/events/event_manager.d.ts +35 -9
- package/events/event_manager.js +12 -13
- package/events/index.d.ts +0 -1
- package/events/index.js +0 -1
- package/events/local_event_manager.d.ts +15 -3
- package/events/local_event_manager.js +39 -13
- package/http.d.ts +9 -0
- package/http.js +28 -0
- package/index.d.ts +7 -5
- package/index.js +8 -4
- package/iterables.d.ts +79 -0
- package/iterables.js +134 -0
- package/log.d.ts +77 -1
- package/log.js +104 -1
- package/memory-storage/consts.d.ts +4 -0
- package/memory-storage/consts.js +4 -0
- package/memory-storage/index.d.ts +1 -0
- package/memory-storage/index.js +1 -0
- package/memory-storage/memory-storage.d.ts +44 -0
- package/memory-storage/memory-storage.js +160 -0
- package/memory-storage/resource-clients/common/base-client.d.ts +4 -0
- package/memory-storage/resource-clients/common/base-client.js +6 -0
- package/memory-storage/resource-clients/dataset.d.ts +40 -0
- package/memory-storage/resource-clients/dataset.js +106 -0
- package/memory-storage/resource-clients/key-value-store.d.ts +63 -0
- package/memory-storage/resource-clients/key-value-store.js +199 -0
- package/memory-storage/resource-clients/request-queue.d.ts +77 -0
- package/memory-storage/resource-clients/request-queue.js +407 -0
- package/memory-storage/utils.d.ts +16 -0
- package/memory-storage/utils.js +41 -0
- package/owned_or_injected.d.ts +58 -0
- package/owned_or_injected.js +98 -0
- package/package.json +13 -12
- package/proxy_configuration.d.ts +22 -128
- package/proxy_configuration.js +32 -144
- package/recoverable_state.d.ts +83 -51
- package/recoverable_state.js +163 -72
- package/request.d.ts +57 -16
- package/request.js +130 -69
- package/router.d.ts +193 -21
- package/router.js +188 -43
- package/serialization.d.ts +0 -1
- package/serialization.js +15 -15
- package/service_locator.d.ts +165 -0
- package/service_locator.js +253 -0
- package/session_pool/consts.d.ts +1 -2
- package/session_pool/consts.js +1 -2
- package/session_pool/errors.d.ts +0 -1
- package/session_pool/errors.js +0 -1
- package/session_pool/fingerprint.d.ts +9 -0
- package/session_pool/fingerprint.js +30 -0
- package/session_pool/index.d.ts +0 -2
- package/session_pool/index.js +0 -2
- package/session_pool/session.d.ts +39 -89
- package/session_pool/session.js +102 -159
- package/session_pool/session_pool.d.ts +67 -91
- package/session_pool/session_pool.js +196 -187
- package/storages/batched_adds.d.ts +37 -0
- package/storages/batched_adds.js +73 -0
- package/storages/dataset.d.ts +109 -56
- package/storages/dataset.js +284 -149
- package/storages/index.d.ts +9 -9
- package/storages/index.js +7 -9
- package/storages/key_value_store.d.ts +183 -48
- package/storages/key_value_store.js +444 -171
- package/storages/key_value_store_codec.d.ts +32 -0
- package/storages/key_value_store_codec.js +113 -0
- package/storages/request_dedup_cache.d.ts +22 -0
- package/storages/request_dedup_cache.js +48 -0
- package/storages/request_list.d.ts +53 -115
- package/storages/request_list.js +194 -167
- package/storages/request_loader.d.ts +133 -0
- package/storages/request_loader.js +36 -0
- package/storages/request_manager.d.ts +109 -0
- package/storages/request_manager.js +1 -0
- package/storages/request_manager_tandem.d.ts +55 -23
- package/storages/request_manager_tandem.js +139 -57
- package/storages/request_queue.d.ts +286 -48
- package/storages/request_queue.js +757 -218
- package/storages/{sitemap_request_list.d.ts → sitemap_request_loader.d.ts} +43 -91
- package/storages/sitemap_request_loader.js +439 -0
- package/storages/storage_instance_manager.d.ts +87 -0
- package/storages/storage_instance_manager.js +256 -0
- package/storages/storage_stats.d.ts +48 -0
- package/storages/storage_stats.js +29 -0
- package/storages/throttling_request_manager.d.ts +222 -0
- package/storages/throttling_request_manager.js +780 -0
- package/storages/transaction.d.ts +252 -0
- package/storages/transaction.js +251 -0
- package/storages/utils.d.ts +59 -11
- package/storages/utils.js +75 -15
- package/system-info/cpu-info.d.ts +67 -0
- package/system-info/cpu-info.js +216 -0
- package/system-info/memory-info.d.ts +31 -0
- package/system-info/memory-info.js +115 -0
- package/system-info/ps-tree.d.ts +17 -0
- package/system-info/ps-tree.js +144 -0
- package/system-info/runtime.d.ts +14 -0
- package/system-info/runtime.js +80 -0
- package/typedefs.d.ts +0 -6
- package/typedefs.js +0 -1
- package/url.d.ts +9 -0
- package/url.js +11 -0
- package/validators.d.ts +22 -18
- package/validators.js +13 -18
- package/autoscaling/autoscaled_pool.d.ts.map +0 -1
- package/autoscaling/autoscaled_pool.js.map +0 -1
- package/autoscaling/index.d.ts.map +0 -1
- package/autoscaling/index.js.map +0 -1
- package/autoscaling/snapshotter.d.ts.map +0 -1
- package/autoscaling/snapshotter.js.map +0 -1
- package/autoscaling/system_status.d.ts.map +0 -1
- package/autoscaling/system_status.js.map +0 -1
- package/configuration.d.ts.map +0 -1
- package/configuration.js.map +0 -1
- package/cookie_utils.d.ts.map +0 -1
- package/cookie_utils.js.map +0 -1
- package/crawlers/context_pipeline.d.ts.map +0 -1
- package/crawlers/context_pipeline.js.map +0 -1
- package/crawlers/crawler_commons.d.ts.map +0 -1
- package/crawlers/crawler_commons.js.map +0 -1
- package/crawlers/crawler_utils.d.ts +0 -10
- package/crawlers/crawler_utils.d.ts.map +0 -1
- package/crawlers/crawler_utils.js +0 -12
- package/crawlers/crawler_utils.js.map +0 -1
- package/crawlers/error_snapshotter.d.ts.map +0 -1
- package/crawlers/error_snapshotter.js.map +0 -1
- package/crawlers/error_tracker.d.ts.map +0 -1
- package/crawlers/error_tracker.js.map +0 -1
- package/crawlers/index.d.ts.map +0 -1
- package/crawlers/index.js.map +0 -1
- package/crawlers/internals/types.d.ts.map +0 -1
- package/crawlers/internals/types.js.map +0 -1
- package/crawlers/statistics.d.ts.map +0 -1
- package/crawlers/statistics.js.map +0 -1
- package/enqueue_links/enqueue_links.d.ts.map +0 -1
- package/enqueue_links/enqueue_links.js.map +0 -1
- package/enqueue_links/index.d.ts.map +0 -1
- package/enqueue_links/index.js.map +0 -1
- package/enqueue_links/shared.d.ts.map +0 -1
- package/enqueue_links/shared.js.map +0 -1
- package/errors.d.ts.map +0 -1
- package/errors.js.map +0 -1
- package/events/event_manager.d.ts.map +0 -1
- package/events/event_manager.js.map +0 -1
- package/events/index.d.ts.map +0 -1
- package/events/index.js.map +0 -1
- package/events/local_event_manager.d.ts.map +0 -1
- package/events/local_event_manager.js.map +0 -1
- package/http_clients/base-http-client.d.ts +0 -140
- package/http_clients/base-http-client.d.ts.map +0 -1
- package/http_clients/base-http-client.js +0 -40
- package/http_clients/base-http-client.js.map +0 -1
- package/http_clients/form-data-like.d.ts +0 -67
- package/http_clients/form-data-like.d.ts.map +0 -1
- package/http_clients/form-data-like.js +0 -5
- package/http_clients/form-data-like.js.map +0 -1
- package/http_clients/got-scraping-http-client.d.ts +0 -20
- package/http_clients/got-scraping-http-client.d.ts.map +0 -1
- package/http_clients/got-scraping-http-client.js +0 -85
- package/http_clients/got-scraping-http-client.js.map +0 -1
- package/http_clients/index.d.ts +0 -3
- package/http_clients/index.d.ts.map +0 -1
- package/http_clients/index.js +0 -3
- package/http_clients/index.js.map +0 -1
- package/index.d.ts.map +0 -1
- package/index.js.map +0 -1
- package/log.d.ts.map +0 -1
- package/log.js.map +0 -1
- package/proxy_configuration.d.ts.map +0 -1
- package/proxy_configuration.js.map +0 -1
- package/recoverable_state.d.ts.map +0 -1
- package/recoverable_state.js.map +0 -1
- package/request.d.ts.map +0 -1
- package/request.js.map +0 -1
- package/router.d.ts.map +0 -1
- package/router.js.map +0 -1
- package/serialization.d.ts.map +0 -1
- package/serialization.js.map +0 -1
- package/session_pool/consts.d.ts.map +0 -1
- package/session_pool/consts.js.map +0 -1
- package/session_pool/errors.d.ts.map +0 -1
- package/session_pool/errors.js.map +0 -1
- package/session_pool/events.d.ts +0 -3
- package/session_pool/events.d.ts.map +0 -1
- package/session_pool/events.js +0 -3
- package/session_pool/events.js.map +0 -1
- package/session_pool/index.d.ts.map +0 -1
- package/session_pool/index.js.map +0 -1
- package/session_pool/session.d.ts.map +0 -1
- package/session_pool/session.js.map +0 -1
- package/session_pool/session_pool.d.ts.map +0 -1
- package/session_pool/session_pool.js.map +0 -1
- package/storages/access_checking.d.ts +0 -13
- package/storages/access_checking.d.ts.map +0 -1
- package/storages/access_checking.js +0 -14
- package/storages/access_checking.js.map +0 -1
- package/storages/dataset.d.ts.map +0 -1
- package/storages/dataset.js.map +0 -1
- package/storages/index.d.ts.map +0 -1
- package/storages/index.js.map +0 -1
- package/storages/key_value_store.d.ts.map +0 -1
- package/storages/key_value_store.js.map +0 -1
- package/storages/request_list.d.ts.map +0 -1
- package/storages/request_list.js.map +0 -1
- package/storages/request_list_adapter.d.ts +0 -58
- package/storages/request_list_adapter.d.ts.map +0 -1
- package/storages/request_list_adapter.js +0 -81
- package/storages/request_list_adapter.js.map +0 -1
- package/storages/request_manager_tandem.d.ts.map +0 -1
- package/storages/request_manager_tandem.js.map +0 -1
- package/storages/request_provider.d.ts +0 -371
- package/storages/request_provider.d.ts.map +0 -1
- package/storages/request_provider.js +0 -585
- package/storages/request_provider.js.map +0 -1
- package/storages/request_queue.d.ts.map +0 -1
- package/storages/request_queue.js.map +0 -1
- package/storages/request_queue_v2.d.ts +0 -87
- package/storages/request_queue_v2.d.ts.map +0 -1
- package/storages/request_queue_v2.js +0 -438
- package/storages/request_queue_v2.js.map +0 -1
- package/storages/sitemap_request_list.d.ts.map +0 -1
- package/storages/sitemap_request_list.js +0 -430
- package/storages/sitemap_request_list.js.map +0 -1
- package/storages/storage_manager.d.ts +0 -58
- package/storages/storage_manager.d.ts.map +0 -1
- package/storages/storage_manager.js +0 -105
- package/storages/storage_manager.js.map +0 -1
- package/storages/utils.d.ts.map +0 -1
- package/storages/utils.js.map +0 -1
- package/typedefs.d.ts.map +0 -1
- package/typedefs.js.map +0 -1
- package/validators.d.ts.map +0 -1
- package/validators.js.map +0 -1
package/recoverable_state.d.ts
CHANGED
|
@@ -1,5 +1,31 @@
|
|
|
1
|
-
import { Configuration } from '@crawlee/core';
|
|
2
|
-
import
|
|
1
|
+
import type { Configuration, CrawleeLogger } from '@crawlee/core';
|
|
2
|
+
import { KeyValueStore } from '@crawlee/core';
|
|
3
|
+
import type { Awaitable } from '@crawlee/types';
|
|
4
|
+
import type { StandardSchemaV1 } from '@standard-schema/spec';
|
|
5
|
+
/**
|
|
6
|
+
* One direction of the conversion between the state model and its persisted form - either a plain function, or a
|
|
7
|
+
* [Standard Schema](https://standardschema.dev) whose validated output is the result.
|
|
8
|
+
*
|
|
9
|
+
* A schema that fails to validate makes {@link RecoverableState} throw a {@link StateValidationError}. Zod
|
|
10
|
+
* codecs work directly, as their validation *is* the decode direction; use `(state) => codec.encode(state)` for the
|
|
11
|
+
* other one.
|
|
12
|
+
*/
|
|
13
|
+
export type StateConversion<TFrom, TTo> = ((value: TFrom) => Awaitable<TTo>) | StandardSchemaV1<TFrom, TTo>;
|
|
14
|
+
/**
|
|
15
|
+
* A {@link StateConversion} for a caller that cannot await one - {@link Statistics}, whose `toJSON()` is
|
|
16
|
+
* synchronous, being the reason this exists.
|
|
17
|
+
*
|
|
18
|
+
* Only the function arm can be narrowed here: a Standard Schema is free to validate asynchronously, so a schema
|
|
19
|
+
* that does is rejected when it runs rather than when it is passed.
|
|
20
|
+
*/
|
|
21
|
+
export type SyncStateConversion<TFrom, TTo> = ((value: TFrom) => TTo) | StandardSchemaV1<TFrom, TTo>;
|
|
22
|
+
/**
|
|
23
|
+
* Applies a {@link SyncStateConversion}, throwing a {@link StateValidationError} for a schema that rejects
|
|
24
|
+
* the value.
|
|
25
|
+
*
|
|
26
|
+
* @internal
|
|
27
|
+
*/
|
|
28
|
+
export declare function convertStateSync<TFrom, TTo>(conversion: SyncStateConversion<TFrom, TTo>, value: TFrom, persistStateKey: string): TTo;
|
|
3
29
|
export interface RecoverableStatePersistenceOptions {
|
|
4
30
|
/**
|
|
5
31
|
* The key under which the state is stored in the KeyValueStore
|
|
@@ -10,44 +36,45 @@ export interface RecoverableStatePersistenceOptions {
|
|
|
10
36
|
*/
|
|
11
37
|
persistenceEnabled?: boolean;
|
|
12
38
|
/**
|
|
13
|
-
* The
|
|
14
|
-
*
|
|
39
|
+
* The KeyValueStore to persist into, defaulting to the default store. Accepts a pending
|
|
40
|
+
* {@link KeyValueStore.open} so that callers do not have to be async to point at a specific store.
|
|
15
41
|
*/
|
|
16
|
-
|
|
42
|
+
keyValueStore?: KeyValueStore | PromiseLike<KeyValueStore>;
|
|
17
43
|
/**
|
|
18
|
-
*
|
|
19
|
-
*
|
|
44
|
+
* Time limit for a single load or save of the state, in milliseconds.
|
|
45
|
+
* @default 60_000
|
|
20
46
|
*/
|
|
21
|
-
|
|
47
|
+
persistenceTimeoutMillis?: number;
|
|
22
48
|
}
|
|
23
49
|
/**
|
|
24
50
|
* Options for configuring the RecoverableState
|
|
25
51
|
*/
|
|
26
|
-
export interface RecoverableStateOptions<TStateModel = Record<string, unknown
|
|
52
|
+
export interface RecoverableStateOptions<TStateModel = Record<string, unknown>, TPersistedState = TStateModel> extends RecoverableStatePersistenceOptions {
|
|
27
53
|
/**
|
|
28
|
-
* The
|
|
29
|
-
*
|
|
54
|
+
* The state used when no persisted state is found, and the state {@link RecoverableState.reset} restores.
|
|
55
|
+
*
|
|
56
|
+
* A plain value is deep-copied with `structuredClone` each time it is used, so pass a factory for a state
|
|
57
|
+
* that `structuredClone` cannot rebuild - one holding class instances, say, or one derived from a schema.
|
|
30
58
|
*/
|
|
31
|
-
defaultState: TStateModel;
|
|
59
|
+
defaultState: TStateModel | (() => TStateModel);
|
|
32
60
|
/**
|
|
33
61
|
* A logger instance for logging operations related to state persistence
|
|
34
62
|
*/
|
|
35
|
-
logger?:
|
|
63
|
+
logger?: CrawleeLogger;
|
|
36
64
|
/**
|
|
37
|
-
* Configuration instance to use
|
|
65
|
+
* Configuration instance to use when opening the KeyValueStore
|
|
38
66
|
*/
|
|
39
|
-
|
|
67
|
+
configuration?: Configuration;
|
|
40
68
|
/**
|
|
41
|
-
* Optional
|
|
42
|
-
* If not provided,
|
|
69
|
+
* Optional conversion of the state to a plain JSON-serializable value before it is persisted.
|
|
70
|
+
* If not provided, the state is persisted as is.
|
|
43
71
|
*/
|
|
44
|
-
serialize?:
|
|
72
|
+
serialize?: StateConversion<TStateModel, TPersistedState>;
|
|
45
73
|
/**
|
|
46
|
-
* Optional
|
|
47
|
-
* If not provided,
|
|
48
|
-
* It is advisable to perform validation in this function and to throw an exception if it fails.
|
|
74
|
+
* Optional conversion of a persisted value back to the state model, and the place to validate a record before
|
|
75
|
+
* trusting it. If not provided, the persisted value is used as is.
|
|
49
76
|
*/
|
|
50
|
-
deserialize?:
|
|
77
|
+
deserialize?: StateConversion<TPersistedState, TStateModel>;
|
|
51
78
|
}
|
|
52
79
|
/**
|
|
53
80
|
* A class for managing persistent recoverable state using a plain JavaScript object.
|
|
@@ -59,29 +86,23 @@ export interface RecoverableStateOptions<TStateModel = Record<string, unknown>>
|
|
|
59
86
|
* The state is represented by a plain JavaScript object that can be serialized to and deserialized from JSON.
|
|
60
87
|
* The class automatically hooks into the event system to persist state when needed.
|
|
61
88
|
*/
|
|
62
|
-
export declare class RecoverableState<TStateModel = Record<string, unknown
|
|
63
|
-
private
|
|
64
|
-
private state;
|
|
65
|
-
private readonly persistenceEnabled;
|
|
66
|
-
private readonly persistStateKey;
|
|
67
|
-
private readonly persistStateKvsName?;
|
|
68
|
-
private readonly persistStateKvsId?;
|
|
69
|
-
private keyValueStore;
|
|
70
|
-
private readonly log;
|
|
71
|
-
private readonly config;
|
|
72
|
-
private readonly serialize;
|
|
73
|
-
private readonly deserialize;
|
|
89
|
+
export declare class RecoverableState<TStateModel = Record<string, unknown>, TPersistedState = TStateModel> {
|
|
90
|
+
#private;
|
|
74
91
|
/**
|
|
75
92
|
* Initialize a new recoverable state object.
|
|
76
93
|
*
|
|
77
94
|
* @param options Configuration options for the recoverable state
|
|
78
95
|
*/
|
|
79
|
-
constructor(options: RecoverableStateOptions<TStateModel>);
|
|
96
|
+
constructor(options: RecoverableStateOptions<TStateModel, TPersistedState>);
|
|
80
97
|
/**
|
|
81
98
|
* Initialize the recoverable state.
|
|
82
99
|
*
|
|
83
|
-
*
|
|
84
|
-
*
|
|
100
|
+
* If persistence is enabled, this method loads the saved state and registers the object to listen for
|
|
101
|
+
* PERSIST_STATE events. A state established beforehand by {@link RecoverableState.reset} survives if there
|
|
102
|
+
* is no record to restore.
|
|
103
|
+
*
|
|
104
|
+
* Calling this again after a {@link RecoverableState.teardown} starts a new persistence window - the
|
|
105
|
+
* listener is registered again and the record reloaded.
|
|
85
106
|
*
|
|
86
107
|
* @returns The loaded state object
|
|
87
108
|
*/
|
|
@@ -90,34 +111,45 @@ export declare class RecoverableState<TStateModel = Record<string, unknown>> {
|
|
|
90
111
|
* Clean up resources used by the recoverable state.
|
|
91
112
|
*
|
|
92
113
|
* If persistence is enabled, this method deregisters the object from PERSIST_STATE events
|
|
93
|
-
* and persists the current state one last time
|
|
114
|
+
* and persists the current state one last time, warning rather than throwing if that write fails - cleanup
|
|
115
|
+
* runs when the work is already done, and failing it would bury whatever the caller was doing. The in-memory
|
|
116
|
+
* state is left alone, and {@link RecoverableState.initialize} can be called again to open a new
|
|
117
|
+
* persistence window.
|
|
94
118
|
*/
|
|
95
119
|
teardown(): Promise<void>;
|
|
96
120
|
/**
|
|
97
121
|
* Get the current state.
|
|
122
|
+
*
|
|
123
|
+
* Throws until the state has been established, by either {@link RecoverableState.initialize} or the
|
|
124
|
+
* synchronous {@link RecoverableState.reset} - the latter being how a caller that cannot await in its
|
|
125
|
+
* constructor gets a usable state right away.
|
|
98
126
|
*/
|
|
99
127
|
get currentValue(): TStateModel;
|
|
100
128
|
/**
|
|
101
|
-
* Reset the state to the default values
|
|
129
|
+
* Reset the in-memory state to the default values, leaving any persisted record alone.
|
|
102
130
|
*
|
|
103
|
-
*
|
|
104
|
-
* clears the persisted state from the KeyValueStore.
|
|
131
|
+
* Use {@link RecoverableState.resetStore} to clear the persisted record as well.
|
|
105
132
|
*/
|
|
106
|
-
reset():
|
|
133
|
+
reset(): void;
|
|
134
|
+
/**
|
|
135
|
+
* Clear the persisted state record, leaving the in-memory state alone.
|
|
136
|
+
*
|
|
137
|
+
* This is a between-lifecycles operation - its point is to stop the next {@link RecoverableState.initialize}
|
|
138
|
+
* from restoring the record, so it throws while PERSIST_STATE events are still being handled, where the next
|
|
139
|
+
* one would write the record straight back. Use {@link RecoverableState.reset} to reset the state itself,
|
|
140
|
+
* or {@link RecoverableState.teardown} before clearing the record.
|
|
141
|
+
*
|
|
142
|
+
* A no-op if persistence is disabled or no KeyValueStore is available yet.
|
|
143
|
+
*/
|
|
144
|
+
resetStore(): Promise<void>;
|
|
107
145
|
/**
|
|
108
146
|
* Persist the current state to the KeyValueStore.
|
|
109
147
|
*
|
|
110
148
|
* This method is typically called in response to a PERSIST_STATE event, but can also be called
|
|
111
|
-
* directly when needed.
|
|
149
|
+
* directly when needed. It is a no-op if persistence is disabled, if no KeyValueStore is available yet, or if
|
|
150
|
+
* there is no state to write. A failed write only rejects here - the periodic and teardown ones warn instead.
|
|
112
151
|
*
|
|
113
152
|
* @param eventData Optional data associated with a PERSIST_STATE event
|
|
114
153
|
*/
|
|
115
|
-
persistState(eventData?:
|
|
116
|
-
isMigrating: boolean;
|
|
117
|
-
}): Promise<void>;
|
|
118
|
-
/**
|
|
119
|
-
* Load the saved state from the KeyValueStore
|
|
120
|
-
*/
|
|
121
|
-
private loadSavedState;
|
|
154
|
+
persistState(eventData?: Record<string, unknown>): Promise<void>;
|
|
122
155
|
}
|
|
123
|
-
//# sourceMappingURL=recoverable_state.d.ts.map
|
package/recoverable_state.js
CHANGED
|
@@ -1,5 +1,25 @@
|
|
|
1
|
-
import {
|
|
2
|
-
import
|
|
1
|
+
import { addTimeoutToPromise, storage as timeoutStorage } from '@apify/timeout';
|
|
2
|
+
import { EventType, KeyValueStore, serviceLocator, StateValidationError } from '@crawlee/core';
|
|
3
|
+
const DEFAULT_PERSISTENCE_TIMEOUT_MILLIS = 60_000;
|
|
4
|
+
/**
|
|
5
|
+
* Applies a {@link SyncStateConversion}, throwing a {@link StateValidationError} for a schema that rejects
|
|
6
|
+
* the value.
|
|
7
|
+
*
|
|
8
|
+
* @internal
|
|
9
|
+
*/
|
|
10
|
+
export function convertStateSync(conversion, value, persistStateKey) {
|
|
11
|
+
if (typeof conversion === 'function') {
|
|
12
|
+
return conversion(value);
|
|
13
|
+
}
|
|
14
|
+
const result = conversion['~standard'].validate(value);
|
|
15
|
+
if ('then' in result) {
|
|
16
|
+
throw new Error(`The state conversion for '${persistStateKey}' validated asynchronously, which this caller cannot await.`);
|
|
17
|
+
}
|
|
18
|
+
if (result.issues) {
|
|
19
|
+
throw new StateValidationError(persistStateKey, result.issues);
|
|
20
|
+
}
|
|
21
|
+
return result.value;
|
|
22
|
+
}
|
|
3
23
|
/**
|
|
4
24
|
* A class for managing persistent recoverable state using a plain JavaScript object.
|
|
5
25
|
*
|
|
@@ -11,130 +31,201 @@ import log from '@apify/log';
|
|
|
11
31
|
* The class automatically hooks into the event system to persist state when needed.
|
|
12
32
|
*/
|
|
13
33
|
export class RecoverableState {
|
|
14
|
-
defaultState;
|
|
15
|
-
state = null;
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
34
|
+
#defaultState;
|
|
35
|
+
#state = null;
|
|
36
|
+
#initialized = false;
|
|
37
|
+
#listening = false;
|
|
38
|
+
#persistenceEnabled;
|
|
39
|
+
#persistStateKey;
|
|
40
|
+
#persistenceTimeoutMillis;
|
|
41
|
+
#configuration;
|
|
42
|
+
#keyValueStore;
|
|
43
|
+
#log;
|
|
44
|
+
#serialize;
|
|
45
|
+
#deserialize;
|
|
46
|
+
#persistStateQuietly;
|
|
25
47
|
/**
|
|
26
48
|
* Initialize a new recoverable state object.
|
|
27
49
|
*
|
|
28
50
|
* @param options Configuration options for the recoverable state
|
|
29
51
|
*/
|
|
30
52
|
constructor(options) {
|
|
31
|
-
|
|
32
|
-
this
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
this
|
|
37
|
-
this
|
|
38
|
-
this
|
|
39
|
-
this
|
|
40
|
-
this
|
|
53
|
+
const { defaultState } = options;
|
|
54
|
+
this.#defaultState =
|
|
55
|
+
typeof defaultState === 'function'
|
|
56
|
+
? defaultState
|
|
57
|
+
: () => structuredClone(defaultState);
|
|
58
|
+
this.#persistStateKey = options.persistStateKey;
|
|
59
|
+
this.#persistenceEnabled = options.persistenceEnabled ?? false;
|
|
60
|
+
this.#persistenceTimeoutMillis = options.persistenceTimeoutMillis ?? DEFAULT_PERSISTENCE_TIMEOUT_MILLIS;
|
|
61
|
+
this.#configuration = options.configuration;
|
|
62
|
+
this.#keyValueStore = options.keyValueStore ?? null;
|
|
63
|
+
this.#log = options.logger ?? serviceLocator.getLogger().child({ prefix: 'RecoverableState' });
|
|
64
|
+
this.#serialize = this.#toConversion(options.serialize);
|
|
65
|
+
this.#deserialize = this.#toConversion(options.deserialize);
|
|
66
|
+
// The automatic persists, where a rejection has nowhere useful to go - the event manager does not catch
|
|
67
|
+
// listener errors, and throwing from teardown would bury the outcome of the work it cleans up after.
|
|
68
|
+
this.#persistStateQuietly = async (eventData) => this.persistState(eventData).catch((error) => this.#log.warning(`Failed to persist the state under key '${this.#persistStateKey}'.`, { error }));
|
|
69
|
+
}
|
|
70
|
+
/** Normalizes a conversion option into a function. Absent conversions pass the value through unchanged. */
|
|
71
|
+
#toConversion(conversion) {
|
|
72
|
+
if (conversion === undefined) {
|
|
73
|
+
return async (value) => value;
|
|
74
|
+
}
|
|
75
|
+
if (typeof conversion === 'function') {
|
|
76
|
+
return async (value) => conversion(value);
|
|
77
|
+
}
|
|
78
|
+
return async (value) => {
|
|
79
|
+
const result = await conversion['~standard'].validate(value);
|
|
80
|
+
if (result.issues) {
|
|
81
|
+
throw new StateValidationError(this.#persistStateKey, result.issues);
|
|
82
|
+
}
|
|
83
|
+
return result.value;
|
|
84
|
+
};
|
|
41
85
|
}
|
|
42
86
|
/**
|
|
43
87
|
* Initialize the recoverable state.
|
|
44
88
|
*
|
|
45
|
-
*
|
|
46
|
-
*
|
|
89
|
+
* If persistence is enabled, this method loads the saved state and registers the object to listen for
|
|
90
|
+
* PERSIST_STATE events. A state established beforehand by {@link RecoverableState.reset} survives if there
|
|
91
|
+
* is no record to restore.
|
|
92
|
+
*
|
|
93
|
+
* Calling this again after a {@link RecoverableState.teardown} starts a new persistence window - the
|
|
94
|
+
* listener is registered again and the record reloaded.
|
|
47
95
|
*
|
|
48
96
|
* @returns The loaded state object
|
|
49
97
|
*/
|
|
50
98
|
async initialize() {
|
|
51
|
-
if (this
|
|
99
|
+
if (this.#initialized) {
|
|
52
100
|
return this.currentValue;
|
|
53
101
|
}
|
|
54
|
-
if (
|
|
55
|
-
this
|
|
56
|
-
|
|
102
|
+
if (this.#persistenceEnabled) {
|
|
103
|
+
this.#keyValueStore ??= KeyValueStore.open(null, {
|
|
104
|
+
configuration: this.#configuration ?? serviceLocator.getConfiguration(),
|
|
105
|
+
});
|
|
106
|
+
await this.#resolveKeyValueStore();
|
|
107
|
+
serviceLocator.getEventManager().on(EventType.PERSIST_STATE, this.#persistStateQuietly);
|
|
108
|
+
this.#listening = true;
|
|
57
109
|
}
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
const eventManager = this.config.getEventManager();
|
|
64
|
-
eventManager.on("persistState" /* EventType.PERSIST_STATE */, this.persistState);
|
|
110
|
+
// Flipped before the record is loaded, so that a caller catching a `StateValidationError` is left with a
|
|
111
|
+
// fully wired object running on the default state rather than a half-initialized one.
|
|
112
|
+
this.#initialized = true;
|
|
113
|
+
this.#state ??= this.#defaultState();
|
|
114
|
+
await this.#loadSavedState();
|
|
65
115
|
return this.currentValue;
|
|
66
116
|
}
|
|
67
117
|
/**
|
|
68
118
|
* Clean up resources used by the recoverable state.
|
|
69
119
|
*
|
|
70
120
|
* If persistence is enabled, this method deregisters the object from PERSIST_STATE events
|
|
71
|
-
* and persists the current state one last time
|
|
121
|
+
* and persists the current state one last time, warning rather than throwing if that write fails - cleanup
|
|
122
|
+
* runs when the work is already done, and failing it would bury whatever the caller was doing. The in-memory
|
|
123
|
+
* state is left alone, and {@link RecoverableState.initialize} can be called again to open a new
|
|
124
|
+
* persistence window.
|
|
72
125
|
*/
|
|
73
126
|
async teardown() {
|
|
74
|
-
|
|
127
|
+
this.#initialized = false;
|
|
128
|
+
if (!this.#persistenceEnabled) {
|
|
75
129
|
return;
|
|
76
130
|
}
|
|
77
|
-
|
|
78
|
-
|
|
79
|
-
await this
|
|
131
|
+
serviceLocator.getEventManager().off(EventType.PERSIST_STATE, this.#persistStateQuietly);
|
|
132
|
+
this.#listening = false;
|
|
133
|
+
await this.#persistStateQuietly();
|
|
80
134
|
}
|
|
81
135
|
/**
|
|
82
136
|
* Get the current state.
|
|
137
|
+
*
|
|
138
|
+
* Throws until the state has been established, by either {@link RecoverableState.initialize} or the
|
|
139
|
+
* synchronous {@link RecoverableState.reset} - the latter being how a caller that cannot await in its
|
|
140
|
+
* constructor gets a usable state right away.
|
|
83
141
|
*/
|
|
84
142
|
get currentValue() {
|
|
85
|
-
if (this
|
|
86
|
-
throw new Error('Recoverable state has not yet been loaded');
|
|
143
|
+
if (this.#state === null) {
|
|
144
|
+
throw new Error('Recoverable state has not yet been loaded - call initialize() or reset() first');
|
|
87
145
|
}
|
|
88
|
-
return this
|
|
146
|
+
return this.#state;
|
|
89
147
|
}
|
|
90
148
|
/**
|
|
91
|
-
* Reset the state to the default values
|
|
149
|
+
* Reset the in-memory state to the default values, leaving any persisted record alone.
|
|
92
150
|
*
|
|
93
|
-
*
|
|
94
|
-
* clears the persisted state from the KeyValueStore.
|
|
151
|
+
* Use {@link RecoverableState.resetStore} to clear the persisted record as well.
|
|
95
152
|
*/
|
|
96
|
-
|
|
97
|
-
this
|
|
98
|
-
|
|
99
|
-
|
|
100
|
-
|
|
101
|
-
|
|
102
|
-
|
|
153
|
+
reset() {
|
|
154
|
+
this.#state = this.#defaultState();
|
|
155
|
+
}
|
|
156
|
+
/**
|
|
157
|
+
* Clear the persisted state record, leaving the in-memory state alone.
|
|
158
|
+
*
|
|
159
|
+
* This is a between-lifecycles operation - its point is to stop the next {@link RecoverableState.initialize}
|
|
160
|
+
* from restoring the record, so it throws while PERSIST_STATE events are still being handled, where the next
|
|
161
|
+
* one would write the record straight back. Use {@link RecoverableState.reset} to reset the state itself,
|
|
162
|
+
* or {@link RecoverableState.teardown} before clearing the record.
|
|
163
|
+
*
|
|
164
|
+
* A no-op if persistence is disabled or no KeyValueStore is available yet.
|
|
165
|
+
*/
|
|
166
|
+
async resetStore() {
|
|
167
|
+
if (this.#listening) {
|
|
168
|
+
throw new Error(`Cannot clear the state persisted under key '${this.#persistStateKey}' while it is still being persisted periodically - the next PERSIST_STATE event would write it straight back. Use reset() to reset the state itself, or teardown() before clearing the record.`);
|
|
169
|
+
}
|
|
170
|
+
if (!this.#persistenceEnabled) {
|
|
171
|
+
return;
|
|
103
172
|
}
|
|
173
|
+
const keyValueStore = await this.#resolveKeyValueStore();
|
|
174
|
+
if (keyValueStore === null) {
|
|
175
|
+
return;
|
|
176
|
+
}
|
|
177
|
+
await this.#withTimeout(async () => keyValueStore.setValue(this.#persistStateKey, null), 'Clearing the persisted state');
|
|
104
178
|
}
|
|
105
179
|
/**
|
|
106
180
|
* Persist the current state to the KeyValueStore.
|
|
107
181
|
*
|
|
108
182
|
* This method is typically called in response to a PERSIST_STATE event, but can also be called
|
|
109
|
-
* directly when needed.
|
|
183
|
+
* directly when needed. It is a no-op if persistence is disabled, if no KeyValueStore is available yet, or if
|
|
184
|
+
* there is no state to write. A failed write only rejects here - the periodic and teardown ones warn instead.
|
|
110
185
|
*
|
|
111
186
|
* @param eventData Optional data associated with a PERSIST_STATE event
|
|
112
187
|
*/
|
|
113
188
|
async persistState(eventData) {
|
|
114
|
-
this
|
|
115
|
-
|
|
116
|
-
throw new Error('Recoverable state has not yet been initialized');
|
|
189
|
+
if (!this.#persistenceEnabled || this.#state === null) {
|
|
190
|
+
return;
|
|
117
191
|
}
|
|
118
|
-
|
|
119
|
-
|
|
120
|
-
|
|
121
|
-
|
|
192
|
+
const keyValueStore = await this.#resolveKeyValueStore();
|
|
193
|
+
if (keyValueStore === null) {
|
|
194
|
+
return;
|
|
195
|
+
}
|
|
196
|
+
this.#log.debug(`Persisting state of the RecoverableState (eventData=${JSON.stringify(eventData)}).`);
|
|
197
|
+
const serializedState = await this.#serialize(this.currentValue);
|
|
198
|
+
await this.#withTimeout(async () => keyValueStore.setValue(this.#persistStateKey, serializedState), 'Persisting the state');
|
|
199
|
+
}
|
|
200
|
+
/** Awaits a store handed over as a pending `open()`, keeping the resolved instance for later calls. */
|
|
201
|
+
async #resolveKeyValueStore() {
|
|
202
|
+
if (this.#keyValueStore === null) {
|
|
203
|
+
return null;
|
|
122
204
|
}
|
|
205
|
+
this.#keyValueStore = await this.#keyValueStore;
|
|
206
|
+
return this.#keyValueStore;
|
|
123
207
|
}
|
|
124
208
|
/**
|
|
125
|
-
* Load the saved state from the KeyValueStore
|
|
209
|
+
* Load the saved state from the KeyValueStore. Leaves the current state alone if there is no record to load.
|
|
126
210
|
*/
|
|
127
|
-
async loadSavedState() {
|
|
128
|
-
if (this
|
|
129
|
-
|
|
211
|
+
async #loadSavedState() {
|
|
212
|
+
if (!this.#persistenceEnabled) {
|
|
213
|
+
return;
|
|
130
214
|
}
|
|
131
|
-
const
|
|
132
|
-
if (
|
|
133
|
-
|
|
215
|
+
const keyValueStore = await this.#resolveKeyValueStore();
|
|
216
|
+
if (keyValueStore === null) {
|
|
217
|
+
return;
|
|
134
218
|
}
|
|
135
|
-
|
|
136
|
-
|
|
219
|
+
const storedState = await this.#withTimeout(async () => keyValueStore.getValue(this.#persistStateKey), 'Loading the persisted state');
|
|
220
|
+
if (storedState === null || storedState === undefined) {
|
|
221
|
+
return;
|
|
137
222
|
}
|
|
223
|
+
this.#state = await this.#deserialize(storedState);
|
|
224
|
+
}
|
|
225
|
+
async #withTimeout(operation, description) {
|
|
226
|
+
// `@apify/timeout` shares one `AbortController` across nested frames and `KeyValueStore` checks it on
|
|
227
|
+
// every operation, so a teardown-time persist running inside an already-expired request handler timeout
|
|
228
|
+
// would be aborted before it started. Hence a fresh timeout context.
|
|
229
|
+
return timeoutStorage.exit(async () => addTimeoutToPromise(operation, this.#persistenceTimeoutMillis, `${description} under key '${this.#persistStateKey}' timed out after ${this.#persistenceTimeoutMillis / 1000} seconds.`));
|
|
138
230
|
}
|
|
139
231
|
}
|
|
140
|
-
//# sourceMappingURL=recoverable_state.js.map
|