You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@druid.apache.org by su...@apache.org on 2021/07/20 05:02:44 UTC

[druid] branch master updated: Fix typo in ingestion spec sample (#11433)

This is an automated email from the ASF dual-hosted git repository.

suneet 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 c7fdf1d  Fix typo in ingestion spec sample (#11433)
c7fdf1d is described below

commit c7fdf1d6858bb654237c36bc7be743105b141b8e
Author: jerryleooo <wh...@gmail.com>
AuthorDate: Tue Jul 20 13:02:21 2021 +0800

    Fix typo in ingestion spec sample (#11433)
    
    * Update index.md
    
    Fix typo in the ingestion spec sample
    
    * fixed more typos
---
 docs/ingestion/index.md | 12 ++++++------
 1 file changed, 6 insertions(+), 6 deletions(-)

diff --git a/docs/ingestion/index.md b/docs/ingestion/index.md
index adcfe09..edc07ed 100644
--- a/docs/ingestion/index.md
+++ b/docs/ingestion/index.md
@@ -309,8 +309,8 @@ Example ingestion spec for task type `index_parallel` (native batch):
       },
       "dimensionsSpec": {
         "dimensions": [
-          { "type": "string", "page" },
-          { "type": "string", "language" },
+          "page",
+          "language",
           { "type": "long", "name": "userId" }
         ]
       },
@@ -382,8 +382,8 @@ An example `dataSchema` is:
   },
   "dimensionsSpec": {
     "dimensions": [
-      { "type": "string", "page" },
-      { "type": "string", "language" },
+      "page",
+      "language",
       { "type": "long", "name": "userId" }
     ]
   },
@@ -660,8 +660,8 @@ An example `parser` is:
     },
     "dimensionsSpec": {
       "dimensions": [
-        { "type": "string", "page" },
-        { "type": "string", "language" },
+        "page",
+        "language",
         { "type": "long", "name": "userId" }
       ]
     }

---------------------------------------------------------------------
To unsubscribe, e-mail: commits-unsubscribe@druid.apache.org
For additional commands, e-mail: commits-help@druid.apache.org