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:
Gian Merlino 2022-09-01 15:21:30 -07:00 committed by GitHub
parent d73a011f70
commit 85d2a6d879
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 2 deletions

View File

@ -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
}
```