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

gian 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 152e9375e2 update documentation about multiValueHandling (#14197)
152e9375e2 is described below

commit 152e9375e2c120e141a34b13c5a386d231952d82
Author: Shingo Kitagawa <[email protected]>
AuthorDate: Tue May 9 08:16:54 2023 +0900

    update documentation about multiValueHandling (#14197)
    
    * update documentation about multiValueHandling
    
    * Update docs/ingestion/ingestion-spec.md
    
    Co-authored-by: Victoria Lim <[email protected]>
    
    * Update docs/ingestion/ingestion-spec.md
    
    Co-authored-by: Gian Merlino <[email protected]>
    
    * fix spelling
    
    ---------
    
    Co-authored-by: Victoria Lim <[email protected]>
    Co-authored-by: Gian Merlino <[email protected]>
---
 docs/ingestion/ingestion-spec.md | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/docs/ingestion/ingestion-spec.md b/docs/ingestion/ingestion-spec.md
index 06583e79f2..d2e9a52a80 100644
--- a/docs/ingestion/ingestion-spec.md
+++ b/docs/ingestion/ingestion-spec.md
@@ -226,7 +226,7 @@ Dimension objects can have the following components:
 | type | Either `string`, `long`, `float`, `double`, or `json`. | `string` |
 | name | The name of the dimension. This will be used as the field name to 
read from input records, as well as the column name stored in generated 
segments.<br /><br />Note that you can use a [`transformSpec`](#transformspec) 
if you want to rename columns during ingestion time. | none (required) |
 | createBitmapIndex | For `string` typed dimensions, whether or not bitmap 
indexes should be created for the column in generated segments. Creating a 
bitmap index requires more storage, but speeds up certain kinds of filtering 
(especially equality and prefix filtering). Only supported for `string` typed 
dimensions. | `true` |
-| multiValueHandling | Specify the type of handling for [multi-value 
fields](../querying/multi-value-dimensions.md). Possible values are 
`sorted_array`, `sorted_set`, and `array`. `sorted_array` and `sorted_set` 
order the array upon ingestion. `sorted_set` removes duplicates. `array` 
ingests data as-is | `sorted_array` |
+| multiValueHandling | For `string` typed dimensions, specifies the type of 
handling for [multi-value fields](../querying/multi-value-dimensions.md). 
Possible values are `array` (ingest string arrays as-is), `sorted_array` (sort 
string arrays during ingestion), and `sorted_set` (sort and de-duplicate string 
arrays during ingestion). This parameter is ignored for types other than 
`string`. | `sorted_array` |
 
 #### Inclusions and exclusions
 


---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to