From 85d2a6d879358a7154e49aa41423a49224303988 Mon Sep 17 00:00:00 2001 From: Gian Merlino Date: Thu, 1 Sep 2022 15:21:30 -0700 Subject: [PATCH] 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. --- docs/ingestion/native-batch.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/ingestion/native-batch.md b/docs/ingestion/native-batch.md index 2cfe39afb29..a0ea39c3e57 100644 --- a/docs/ingestion/native-batch.md +++ b/docs/ingestion/native-batch.md @@ -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 } ```