mirror of https://github.com/apache/druid.git
docs: fix broken link to ingestions and tasks on the Druid Concepts page (#5197)
* fix broken links * add newline
This commit is contained in:
parent
c3f7da2128
commit
3d3b04e1b8
|
@ -84,11 +84,11 @@ Hence, Druid ingestion specs define this granularity as the `queryGranularity` o
|
|||
|
||||
Druid supports two roll-up modes, i.e., _perfect roll-up_ and _best-effort roll-up_. In the perfect roll-up mode, Druid guarantees that input data are perfectly aggregated at ingestion time. Meanwhile, in the best-effort roll-up, input data might not be perfectly aggregated and thus there can be multiple segments holding the rows which should belong to the same segment with the perfect roll-up since they have the same dimension value and their timestamps fall into the same interval.
|
||||
|
||||
The perfect roll-up mode encompasses an additional preprocessing step to determine intervals and shardSpecs before actual data ingestion if they are not specified in the ingestionSpec. This preprocessing step usually scans the entire input data which might increase the ingestion time. The [Hadoop indexing task](./ingestion/batch-ingestion.html) always runs with this perfect roll-up mode.
|
||||
The perfect roll-up mode encompasses an additional preprocessing step to determine intervals and shardSpecs before actual data ingestion if they are not specified in the ingestionSpec. This preprocessing step usually scans the entire input data which might increase the ingestion time. The [Hadoop indexing task](../ingestion/batch-ingestion.html) always runs with this perfect roll-up mode.
|
||||
|
||||
On the contrary, the best-effort roll-up mode doesn't require any preprocessing step, but the size of ingested data might be larger than that of the perfect roll-up. All types of [streaming indexing (i.e., realtime index task, kafka indexing service, ...)](./ingestion/stream-ingestion.html) run with this mode.
|
||||
On the contrary, the best-effort roll-up mode doesn't require any preprocessing step, but the size of ingested data might be larger than that of the perfect roll-up. All types of [streaming indexing (i.e., realtime index task, kafka indexing service, ...)](../ingestion/stream-ingestion.html) run with this mode.
|
||||
|
||||
Finally, the [native index task](./ingestion/tasks.html) supports both modes and you can choose either one which fits to your application.
|
||||
Finally, the [native index task](../ingestion/tasks.html) supports both modes and you can choose either one which fits to your application.
|
||||
|
||||
## Indexing the Data
|
||||
|
||||
|
|
Loading…
Reference in New Issue