From 7881f068c61ec91f44fa453f9d6e601025b0a6b5 Mon Sep 17 00:00:00 2001 From: Igal Levy Date: Tue, 25 Mar 2014 16:53:06 -0700 Subject: [PATCH] added task types that were missing from some of the JSON task configs --- docs/content/Tasks.md | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/docs/content/Tasks.md b/docs/content/Tasks.md index 7ef0b8d215a..d2b90d6fcb0 100644 --- a/docs/content/Tasks.md +++ b/docs/content/Tasks.md @@ -175,6 +175,7 @@ Append tasks append a list of segments together into a single segment (one after ```json { + "type": "append", "id": , "dataSource": , "segments": @@ -187,6 +188,7 @@ Merge tasks merge a list of segments together. Any common timestamps are merged. ```json { + "type": "merge", "id": , "dataSource": , "segments": @@ -202,6 +204,7 @@ Delete tasks create empty segments with no data. The grammar is: ```json { + "type": "delete", "id": , "dataSource": , "segments": @@ -214,6 +217,7 @@ Kill tasks delete all information about a segment and removes it from deep stora ```json { + "type": "kill", "id": , "dataSource": , "segments": @@ -229,6 +233,7 @@ These tasks convert segments from an existing older index version to the latest ```json { + "type": "version_converter", "id": , "groupId" : , "dataSource": , @@ -243,6 +248,7 @@ These tasks start, sleep for a time and are used only for testing. The available ```json { + "type": "noop", "id": , "interval" : , "runTime" : ,