Skip to content

Commit bf23549

Browse files
committed
Mention UI
1 parent da0b5f0 commit bf23549

File tree

3 files changed

+12
-5
lines changed

3 files changed

+12
-5
lines changed

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -30,3 +30,4 @@ sources/academy/**/exercises/storage
3030
sources/academy/**/exercises/node_modules
3131
sources/academy/**/exercises/package*.json
3232
sources/academy/**/exercises/dataset.json
33+
config.bat

babel.config.js

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

sources/platform/actors/development/actor_definition/dataset_schema/multiple_datasets.md

Lines changed: 10 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -20,8 +20,8 @@ The multiple datasets may defined in Actor schema using `datasets` object:
2020
```json title=".actor/actor.json"
2121
{
2222
"actorSpecification": 1,
23-
"name": "this-is-book-library-scraper",
24-
"title": "Book Library scraper",
23+
"name": "this-is-e-commerce-scraper",
24+
"title": "E-Commerce Scraper",
2525
"version": "1.0.0",
2626
"storages": {
2727
"datasets": {
@@ -74,6 +74,14 @@ categories_dataset = await Actor.open_dataset(alias='categories')
7474

7575
## Showing data to users
7676

77+
### Run Storages tab
78+
79+
The Storage tab of Actor run view is displaying all the dataset defined by Actor and datasets that were used by the run (up to some limit).
80+
81+
This makes the data accessible, but not very user-friendly. To make the datasets more accessible to users, use output schema.
82+
83+
### Output schema
84+
7785
Actors with output schema can refer to the datasets through variables using aliases:
7886

7987
```json
@@ -98,5 +106,3 @@ Actors with output schema can refer to the datasets through variables using alia
98106
## Billing implications
99107

100108
The `apify-default-dataset-item` synthetic event is only charged for items in dataset aliased as `default`. Charging for items in other datasets needs to be implemented in the Actor code.
101-
102-
- TODO: Rely on default display

0 commit comments

Comments
 (0)