@crawlee/core 4.0.0-beta.14 → 4.0.0-beta.140
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 +67 -172
- package/autoscaling/autoscaled_pool.js +182 -329
- package/autoscaling/concurrency_system.d.ts +269 -0
- package/autoscaling/concurrency_system.js +365 -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 +100 -0
- package/autoscaling/load_signal.js +105 -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 -63
- package/crawlers/statistics.js +354 -164
- package/debug.d.ts +36 -0
- package/debug.js +70 -0
- package/enqueue_links/enqueue_links.d.ts +60 -153
- package/enqueue_links/enqueue_links.js +38 -229
- package/enqueue_links/index.d.ts +0 -1
- package/enqueue_links/index.js +0 -1
- package/enqueue_links/shared.d.ts +49 -30
- package/enqueue_links/shared.js +94 -68
- 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 +78 -1
- package/log.js +106 -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 +35 -88
- package/session_pool/session.js +101 -159
- package/session_pool/session_pool.d.ts +74 -91
- package/session_pool/session_pool.js +175 -165
- 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 +283 -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 +445 -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 +52 -109
- package/storages/request_list.js +183 -152
- package/storages/request_loader.d.ts +101 -0
- package/storages/request_loader.js +1 -0
- package/storages/request_manager.d.ts +33 -0
- package/storages/request_manager.js +1 -0
- package/storages/request_manager_tandem.d.ts +48 -19
- package/storages/request_manager_tandem.js +118 -45
- package/storages/request_queue.d.ts +290 -47
- package/storages/request_queue.js +762 -216
- package/storages/{sitemap_request_list.d.ts → sitemap_request_loader.d.ts} +45 -89
- package/storages/sitemap_request_loader.js +438 -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 +239 -0
- package/storages/throttling_request_manager.js +646 -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/storages/dataset.d.ts
CHANGED
|
@@ -1,27 +1,21 @@
|
|
|
1
|
-
import type {
|
|
1
|
+
import type { Awaitable, DatasetBackend, DatasetInfo, Dictionary } from '@crawlee/types';
|
|
2
2
|
import { Configuration } from '../configuration.js';
|
|
3
|
-
import {
|
|
4
|
-
import type {
|
|
5
|
-
import type {
|
|
3
|
+
import type { CrawleeLogger } from '../log.js';
|
|
4
|
+
import type { JournalEntry } from './transaction.js';
|
|
5
|
+
import type { DatasetStats } from './storage_stats.js';
|
|
6
|
+
import type { StorageOpenOptions } from './utils.js';
|
|
7
|
+
import type { StorageIdentifier } from './storage_instance_manager.js';
|
|
6
8
|
/** @internal */
|
|
7
9
|
export declare const DATASET_ITERATORS_DEFAULT_LIMIT = 10000;
|
|
8
10
|
/**
|
|
9
|
-
*
|
|
10
|
-
*
|
|
11
|
-
* in an array to provide better error messages. Returns serialized object.
|
|
12
|
-
* @ignore
|
|
13
|
-
*/
|
|
14
|
-
export declare function checkAndSerialize<T>(item: T, limitBytes: number, index?: number): string;
|
|
15
|
-
/**
|
|
16
|
-
* Takes an array of JSONs (payloads) as input and produces an array of JSON strings
|
|
17
|
-
* where each string is a JSON array of payloads with a maximum size of limitBytes per one
|
|
18
|
-
* JSON array. Fits as many payloads as possible into a single JSON array and then moves
|
|
19
|
-
* on to the next, preserving item order.
|
|
11
|
+
* Validates that the given value is a plain JSON-serializable object
|
|
12
|
+
* (not an array, not a primitive, not circular).
|
|
20
13
|
*
|
|
21
|
-
*
|
|
14
|
+
* @param item The value to validate.
|
|
15
|
+
* @param index Optional index for error messages when validating inside an array.
|
|
22
16
|
* @ignore
|
|
23
17
|
*/
|
|
24
|
-
export declare function
|
|
18
|
+
export declare function assertJsonSerializable<T>(item: T, index?: number): void;
|
|
25
19
|
export interface DatasetDataOptions {
|
|
26
20
|
/**
|
|
27
21
|
* Number of array elements that should be skipped at the start.
|
|
@@ -91,8 +85,8 @@ export interface DatasetIteratorOptions extends Omit<DatasetDataOptions, 'offset
|
|
|
91
85
|
format?: string;
|
|
92
86
|
}
|
|
93
87
|
export interface DatasetExportToOptions extends DatasetExportOptions {
|
|
94
|
-
fromDataset?: string;
|
|
95
|
-
toKVS?: string;
|
|
88
|
+
fromDataset?: string | StorageIdentifier;
|
|
89
|
+
toKVS?: string | StorageIdentifier;
|
|
96
90
|
}
|
|
97
91
|
/**
|
|
98
92
|
* The `Dataset` class represents a store for structured data where each object stored has the same attributes,
|
|
@@ -146,16 +140,21 @@ export interface DatasetExportToOptions extends DatasetExportOptions {
|
|
|
146
140
|
* @category Result Stores
|
|
147
141
|
*/
|
|
148
142
|
export declare class Dataset<Data extends Dictionary = Dictionary> {
|
|
149
|
-
|
|
143
|
+
#private;
|
|
144
|
+
readonly configuration: Configuration;
|
|
150
145
|
id: string;
|
|
151
146
|
name?: string;
|
|
152
|
-
|
|
153
|
-
|
|
154
|
-
log: Log;
|
|
147
|
+
backend: DatasetBackend<Data>;
|
|
148
|
+
log: CrawleeLogger;
|
|
155
149
|
/**
|
|
156
150
|
* @internal
|
|
157
151
|
*/
|
|
158
|
-
constructor(options: DatasetOptions,
|
|
152
|
+
constructor(options: DatasetOptions, configuration?: Configuration);
|
|
153
|
+
/**
|
|
154
|
+
* Backend-independent usage counters tracked for this dataset (read / write operations issued to
|
|
155
|
+
* the underlying storage backend). Counted per backend call.
|
|
156
|
+
*/
|
|
157
|
+
get stats(): DatasetStats;
|
|
159
158
|
/**
|
|
160
159
|
* Stores an object or an array of objects to the dataset.
|
|
161
160
|
* The function returns a promise that resolves when the operation finishes.
|
|
@@ -164,27 +163,24 @@ export declare class Dataset<Data extends Dictionary = Dictionary> {
|
|
|
164
163
|
* **IMPORTANT**: Make sure to use the `await` keyword when calling `pushData()`,
|
|
165
164
|
* otherwise the crawler process might finish before the data is stored!
|
|
166
165
|
*
|
|
167
|
-
* The size of the data is limited by the receiving API and therefore `pushData()` will only
|
|
168
|
-
* allow objects whose JSON representation is smaller than 9MB. When an array is passed,
|
|
169
|
-
* none of the included objects
|
|
170
|
-
* may be larger than 9MB, but the array itself may be of any size.
|
|
171
|
-
*
|
|
172
|
-
* The function internally
|
|
173
|
-
* chunks the array into separate items and pushes them sequentially.
|
|
174
|
-
* The chunking process is stable (keeps order of data), but it does not provide a transaction
|
|
175
|
-
* safety mechanism. Therefore, in the event of an uploading error (after several automatic retries),
|
|
176
|
-
* the function's Promise will reject and the dataset will be left in a state where some of
|
|
177
|
-
* the items have already been saved to the dataset while other items from the source array were not.
|
|
178
|
-
* To overcome this limitation, the developer may, for example, read the last item saved in the dataset
|
|
179
|
-
* and re-attempt the save of the data from this item onwards to prevent duplicates.
|
|
180
166
|
* @param data Object or array of objects containing data to be stored in the default dataset.
|
|
181
|
-
* The objects must be serializable to JSON
|
|
167
|
+
* The objects must be serializable to JSON.
|
|
182
168
|
*/
|
|
183
169
|
pushData(data: Data | Data[]): Promise<void>;
|
|
184
170
|
/**
|
|
185
171
|
* Returns {@link DatasetContent} object holding the items in the dataset based on the provided parameters.
|
|
186
172
|
*/
|
|
187
173
|
getData(options?: DatasetDataOptions): Promise<DatasetContent<Data>>;
|
|
174
|
+
/**
|
|
175
|
+
* The single transaction-aware page read all dataset read paths go through — both `getData()` and
|
|
176
|
+
* the private `fetchPages()`. Returns the real page concatenated with the current transaction's
|
|
177
|
+
* buffered items, with `offset` / `limit` / `desc` windowing applied across the concatenation.
|
|
178
|
+
*/
|
|
179
|
+
private readPage;
|
|
180
|
+
/** The active transaction's buffered writes to this dataset, derived from its journal. */
|
|
181
|
+
private bufferedJournalEntries;
|
|
182
|
+
/** @internal */
|
|
183
|
+
commitJournalEntries(entries: JournalEntry[]): Promise<void>;
|
|
188
184
|
/**
|
|
189
185
|
* Returns all the data from the dataset. This will iterate through the whole dataset
|
|
190
186
|
* via the `listItems()` client method, which gives you only paginated results.
|
|
@@ -229,26 +225,21 @@ export declare class Dataset<Data extends Dictionary = Dictionary> {
|
|
|
229
225
|
/**
|
|
230
226
|
* Returns an object containing general information about the dataset.
|
|
231
227
|
*
|
|
232
|
-
* The function returns the same object as the Apify API Client's
|
|
233
|
-
* [getDataset](https://docs.apify.com/api/apify-client-js/latest#ApifyClient-datasets-getDataset)
|
|
234
|
-
* function, which in turn calls the
|
|
235
|
-
* [Get dataset](https://apify.com/docs/api/v2#/reference/datasets/dataset/get-dataset)
|
|
236
|
-
* API endpoint.
|
|
237
|
-
*
|
|
238
228
|
* **Example:**
|
|
239
229
|
* ```
|
|
240
230
|
* {
|
|
241
231
|
* id: "WkzbQMuFYuamGv3YF",
|
|
242
232
|
* name: "my-dataset",
|
|
243
|
-
* userId: "wRsJZtadYvn4mBZmm",
|
|
244
233
|
* createdAt: new Date("2015-12-12T07:34:14.202Z"),
|
|
245
234
|
* modifiedAt: new Date("2015-12-13T08:36:13.202Z"),
|
|
246
235
|
* accessedAt: new Date("2015-12-14T08:36:13.202Z"),
|
|
247
236
|
* itemCount: 14,
|
|
248
237
|
* }
|
|
249
238
|
* ```
|
|
239
|
+
*
|
|
240
|
+
* @throws If the underlying storage no longer exists (e.g. it was deleted externally).
|
|
250
241
|
*/
|
|
251
|
-
getInfo(): Promise<DatasetInfo
|
|
242
|
+
getInfo(): Promise<DatasetInfo>;
|
|
252
243
|
/**
|
|
253
244
|
* Iterates over dataset items, yielding each in turn to an `iteratee` function.
|
|
254
245
|
* Each invocation of `iteratee` is called with two arguments: `(item, index)`.
|
|
@@ -314,7 +305,7 @@ export declare class Dataset<Data extends Dictionary = Dictionary> {
|
|
|
314
305
|
* If the dataset is empty, reduce will return undefined.
|
|
315
306
|
*
|
|
316
307
|
* @param iteratee
|
|
317
|
-
* @param memo Unset parameter,
|
|
308
|
+
* @param memo Unset parameter, necessary to be able to pass options
|
|
318
309
|
* @param [options] An object containing extra options for `reduce()`
|
|
319
310
|
*/
|
|
320
311
|
reduce(iteratee: DatasetReducer<Data, Data>, memo: undefined, options: DatasetIteratorOptions): Promise<Data | undefined>;
|
|
@@ -332,6 +323,69 @@ export declare class Dataset<Data extends Dictionary = Dictionary> {
|
|
|
332
323
|
* @param [options] An object containing extra options for `reduce()`
|
|
333
324
|
*/
|
|
334
325
|
reduce<T>(iteratee: DatasetReducer<T, Data>, memo: T, options?: DatasetIteratorOptions): Promise<T>;
|
|
326
|
+
private fetchEntryPages;
|
|
327
|
+
private fetchPages;
|
|
328
|
+
/**
|
|
329
|
+
* Returns dataset items.
|
|
330
|
+
*
|
|
331
|
+
* When awaited (`await dataset.values()`), returns all items as a flat `Data[]` array.
|
|
332
|
+
* When used as an async iterable (`for await...of`), iterates over all items across pages
|
|
333
|
+
* without loading everything into memory at once.
|
|
334
|
+
*
|
|
335
|
+
* **Example usage:**
|
|
336
|
+
* ```javascript
|
|
337
|
+
* const dataset = await Dataset.open('my-results');
|
|
338
|
+
*
|
|
339
|
+
* // Iterate over all items (memory-efficient for large datasets)
|
|
340
|
+
* for await (const item of dataset.values()) {
|
|
341
|
+
* console.log(item);
|
|
342
|
+
* }
|
|
343
|
+
*
|
|
344
|
+
* // Or fetch all items at once
|
|
345
|
+
* const items = await dataset.values();
|
|
346
|
+
* console.log(items);
|
|
347
|
+
* ```
|
|
348
|
+
*
|
|
349
|
+
* @param options Options for the iteration.
|
|
350
|
+
*/
|
|
351
|
+
values(options?: DatasetIteratorOptions): AsyncIterable<Data> & Promise<Data[]>;
|
|
352
|
+
/**
|
|
353
|
+
* Returns dataset entries (index-value pairs).
|
|
354
|
+
*
|
|
355
|
+
* When awaited (`await dataset.entries()`), returns all entries as a flat `[index, item][]` array.
|
|
356
|
+
* When used as an async iterable (`for await...of`), iterates over all entries across pages
|
|
357
|
+
* without loading everything into memory at once.
|
|
358
|
+
*
|
|
359
|
+
* **Example usage:**
|
|
360
|
+
* ```javascript
|
|
361
|
+
* const dataset = await Dataset.open('my-results');
|
|
362
|
+
*
|
|
363
|
+
* // Iterate over all entries
|
|
364
|
+
* for await (const [index, item] of dataset.entries()) {
|
|
365
|
+
* console.log(`Item at ${index}: ${JSON.stringify(item)}`);
|
|
366
|
+
* }
|
|
367
|
+
*
|
|
368
|
+
* // Or fetch all at once
|
|
369
|
+
* const entries = await dataset.entries();
|
|
370
|
+
* console.log(entries);
|
|
371
|
+
* ```
|
|
372
|
+
*
|
|
373
|
+
* @param options Options for the iteration.
|
|
374
|
+
*/
|
|
375
|
+
entries(options?: DatasetIteratorOptions): AsyncIterable<[number, Data]> & Promise<[number, Data][]>;
|
|
376
|
+
/**
|
|
377
|
+
* Default async iterator for the dataset, iterating over items.
|
|
378
|
+
* Allows using the dataset directly in a `for await...of` loop.
|
|
379
|
+
*
|
|
380
|
+
* **Example usage:**
|
|
381
|
+
* ```javascript
|
|
382
|
+
* const dataset = await Dataset.open('my-results');
|
|
383
|
+
* for await (const item of dataset) {
|
|
384
|
+
* console.log(item);
|
|
385
|
+
* }
|
|
386
|
+
* ```
|
|
387
|
+
*/
|
|
388
|
+
[Symbol.asyncIterator](): AsyncGenerator<Data, void, undefined>;
|
|
335
389
|
/**
|
|
336
390
|
* Removes the dataset either from the Apify cloud storage or from the local directory,
|
|
337
391
|
* depending on the mode of operation.
|
|
@@ -346,12 +400,13 @@ export declare class Dataset<Data extends Dictionary = Dictionary> {
|
|
|
346
400
|
*
|
|
347
401
|
* For more details and code examples, see the {@link Dataset} class.
|
|
348
402
|
*
|
|
349
|
-
* @param [
|
|
350
|
-
* ID or name of the dataset to be opened. If
|
|
351
|
-
*
|
|
403
|
+
* @param [identifier]
|
|
404
|
+
* ID or name of the dataset to be opened. If a string is provided, it will first be
|
|
405
|
+
* looked up as an ID; if no such storage exists, it will be treated as a name.
|
|
406
|
+
* If `null` or `undefined`, the function returns the default dataset associated with the crawler run.
|
|
352
407
|
* @param [options] Storage manager options.
|
|
353
408
|
*/
|
|
354
|
-
static open<Data extends Dictionary = Dictionary>(
|
|
409
|
+
static open<Data extends Dictionary = Dictionary>(identifier?: string | StorageIdentifier | null, options?: StorageOpenOptions): Promise<Dataset<Data>>;
|
|
355
410
|
/**
|
|
356
411
|
* Stores an object or an array of objects to the default {@link Dataset} of the current crawler run.
|
|
357
412
|
*
|
|
@@ -415,10 +470,9 @@ export interface DatasetReducer<T, Data> {
|
|
|
415
470
|
(memo: T, item: Data, index: number): Awaitable<T>;
|
|
416
471
|
}
|
|
417
472
|
export interface DatasetOptions {
|
|
418
|
-
|
|
419
|
-
|
|
420
|
-
|
|
421
|
-
storageObject?: Record<string, unknown>;
|
|
473
|
+
/** Resolved metadata for the dataset, as returned by the backend's `getMetadata()`. */
|
|
474
|
+
metadata: DatasetInfo;
|
|
475
|
+
backend: DatasetBackend;
|
|
422
476
|
}
|
|
423
477
|
export interface DatasetContent<Data> {
|
|
424
478
|
/** Total count of entries in the dataset. */
|
|
@@ -434,4 +488,3 @@ export interface DatasetContent<Data> {
|
|
|
434
488
|
/** Should the results be in descending order. */
|
|
435
489
|
desc?: boolean;
|
|
436
490
|
}
|
|
437
|
-
//# sourceMappingURL=dataset.d.ts.map
|