Skip to content

Commit aacd401

Browse files
Clarify a few points (#62)
1 parent b0a7353 commit aacd401

File tree

2 files changed

+6
-0
lines changed

2 files changed

+6
-0
lines changed

guides/datasets/ingest.mdx

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,10 @@ This page guides you through the process of ingesting data into a Tilebox datase
1414
dataset available as file in the [GeoParquet](https://geoparquet.org/) format, you'll go through the process of
1515
ingesting that data into Tilebox as a [Timeseries](/datasets/types/timeseries) dataset.
1616

17+
<Note>
18+
If you have your data in a different format, check out the [Ingesting from common file formats](/guides/datasets/ingest-format) examples of how to ingest it.
19+
</Note>
20+
1721
## Related documentation
1822

1923
<CardGroup cols={2}>

workflows/concepts/tasks.mdx

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -169,6 +169,8 @@ task := &ParentTask{numSubtasks: 5}
169169

170170
In this example, a `ParentTask` submits `ChildTask` tasks as subtasks. The number of subtasks to be submitted is based on the `num_subtasks` attribute of the `ParentTask`. The `submit_subtask` method takes an instance of a task as its argument, meaning the task to be submitted must be instantiated with concrete parameters first.
171171

172+
Parent task do not have access to results of subtasks, instead, tasks can use [shared caching](/workflows/caches#storing-and-retrieving-data) to share data between tasks.
173+
172174
<Info>
173175
By submitting a task as a subtask, its execution is scheduled as part of the same job as the parent task. Compared to just directly invoking the subtask's `execute` method, this allows the subtask's execution to occur on a different machine or in parallel with other subtasks. To learn more about how tasks are executed, see the section on [task runners](/workflows/concepts/task-runners).
174176
</Info>

0 commit comments

Comments
 (0)