This is an automated email from the ASF dual-hosted git repository.
cwylie pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/druid.git
The following commit(s) were added to refs/heads/master by this push:
new bcf4192 Remove unsupported task types in doc (#10111)
bcf4192 is described below
commit bcf41922ce31b9ff89955dbe850e48d5fa4111c7
Author: Fullstop000 <[email protected]>
AuthorDate: Sun Jul 5 09:13:53 2020 +0800
Remove unsupported task types in doc (#10111)
---
docs/ingestion/tasks.md | 56 -------------------------------------------------
1 file changed, 56 deletions(-)
diff --git a/docs/ingestion/tasks.md b/docs/ingestion/tasks.md
index e678a61..a03162b 100644
--- a/docs/ingestion/tasks.md
+++ b/docs/ingestion/tasks.md
@@ -395,59 +395,3 @@ Compaction tasks merge all segments of the given interval.
See the documentation
Kill tasks delete all metadata about certain segments and removes them from
deep storage.
See the documentation on [deleting
data](../ingestion/data-management.md#delete) for details.
-
-### `append`
-
-Append tasks append a list of segments together into a single segment (one
after the other). The grammar is:
-
-```json
-{
- "type": "append",
- "id": <task_id>,
- "dataSource": <task_datasource>,
- "segments": <JSON list of DataSegment objects to append>,
- "aggregations": <optional list of aggregators>,
- "context": <task context>
-}
-```
-
-### `merge`
-
-Merge tasks merge a list of segments together. Any common timestamps are
merged.
-If rollup is disabled as part of ingestion, common timestamps are not merged
and rows are reordered by their timestamp.
-
-> The [`compact`](#compact) task is often a better choice than the `merge`
task.
-
-The grammar is:
-
-```json
-{
- "type": "merge",
- "id": <task_id>,
- "dataSource": <task_datasource>,
- "aggregations": <list of aggregators>,
- "rollup": <whether or not to rollup data during a merge>,
- "segments": <JSON list of DataSegment objects to merge>,
- "context": <task context>
-}
-```
-
-### `same_interval_merge`
-
-Same Interval Merge task is a shortcut of merge task, all segments in the
interval are going to be merged.
-
-> The [`compact`](#compact) task is often a better choice than the
`same_interval_merge` task.
-
-The grammar is:
-
-```json
-{
- "type": "same_interval_merge",
- "id": <task_id>,
- "dataSource": <task_datasource>,
- "aggregations": <list of aggregators>,
- "rollup": <whether or not to rollup data during a merge>,
- "interval": <DataSegment objects in this interval are going to be merged>,
- "context": <task context>
-}
-```
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]