jaykanakiya commented on code in PR #19198:
URL: https://github.com/apache/druid/pull/19198#discussion_r2976941368


##########
docs/configuration/index.md:
##########
@@ -1424,7 +1424,7 @@ Additional Peon configs include:
 |`druid.indexer.task.storeEmptyColumns`|Boolean value for whether or not to 
store empty columns during ingestion. When set to true, Druid stores every 
column specified in the 
[`dimensionsSpec`](../ingestion/ingestion-spec.md#dimensionsspec). If you use 
the string-based schemaless ingestion and don't specify any dimensions to 
ingest, you must also set 
[`includeAllDimensions`](../ingestion/ingestion-spec.md#dimensionsspec) for 
Druid to store empty columns.<br/><br/>If you set `storeEmptyColumns` to false, 
Druid SQL queries referencing empty columns will fail. If you intend to leave 
`storeEmptyColumns` disabled, you should either ingest placeholder data for 
empty columns or else not query on empty columns.<br/><br/>You can overwrite 
this configuration  by setting `storeEmptyColumns` in the [task 
context](../ingestion/tasks.md#context-parameters).|true|
 |`druid.indexer.task.tmpStorageBytesPerTask`|Maximum number of bytes per task 
to be used to store temporary files on disk. This config is generally intended 
for internal usage. Attempts to set it are very likely to be overwritten by the 
TaskRunner that executes the task, so be sure of what you expect to happen 
before directly adjusting this configuration parameter. The config is 
documented here primarily to provide an understanding of what it means if/when 
someone sees that it has been set. A value of -1 disables this limit.  |-1|
 |`druid.indexer.server.maxChatRequests`|Maximum number of concurrent requests 
served by a task's chat handler. Set to 0 to disable limiting.|0|
-|`druid.indexing.formats.maxStringLength`|Maximum number of characters to 
store per string dimension value. Longer values are truncated during ingestion. 
Does not apply to multi-value string dimensions. Set to 0 to disable. Can be 
overridden per-dimension using `maxStringLength` in the [dimension 
object](../ingestion/ingestion-spec.md#dimension-objects).|0 (no truncation)|
+|`druid.indexing.formats.maxStringLength`|Maximum number of characters to 
store per string dimension value. Longer values are truncated during ingestion. 
Does not apply to multi-value string dimensions. Can be overridden 
per-dimension using `maxStringLength` in the [dimension 
object](../ingestion/ingestion-spec.md#dimension-objects).|`null` (no 
truncation)|

Review Comment:
   Updated



##########
docs/ingestion/ingestion-spec.md:
##########
@@ -243,7 +243,7 @@ Dimension objects can have the following components:
 | 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 | 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` |
-| maxStringLength | For `string` typed dimensions, the maximum number of 
characters to store per value. Longer values are truncated during ingestion. 
Does not apply to multi-value string dimensions. Set to 0 to disable. Overrides 
the global 
[`druid.indexing.formats.maxStringLength`](../configuration/index.md#additional-peon-configuration)
 property. | `0` (no truncation) |
+| maxStringLength | For `string` typed dimensions, the maximum number of 
characters to store per value. Longer values are truncated during ingestion. 
Does not apply to multi-value string dimensions. Overrides the global 
[`druid.indexing.formats.maxStringLength`](../configuration/index.md#additional-peon-configuration)
 property. | `null` (no truncation) |

Review Comment:
   Updated the docs. 



-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: [email protected]

For queries about this service, please contact Infrastructure at:
[email protected]


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

Reply via email to