mirror of https://github.com/apache/druid.git
Improve range partitioning docs. (#13016)
Two improvements: - Use a realistic targetRowsPerSegment, so if people copy and paste the example from the docs, it will generate reasonable segments. - Spell "countryName" correctly.
This commit is contained in:
parent
d73a011f70
commit
85d2a6d879
|
@ -433,8 +433,8 @@ For example, if you configure the following `range` partitioning during ingestio
|
|||
```json
|
||||
"partitionsSpec": {
|
||||
"type": "range",
|
||||
"partitionDimensions": ["coutryName", "cityName"],
|
||||
"targetRowsPerSegment": 5000
|
||||
"partitionDimensions": ["countryName", "cityName"],
|
||||
"targetRowsPerSegment": 5000000
|
||||
}
|
||||
```
|
||||
|
||||
|
|
Loading…
Reference in New Issue