From 1dc2b31a1d871f68ca2bfb3cb4fe0d81e86d9730 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Martin=20Th=C3=B8gersen?= Date: Sat, 22 Feb 2025 22:45:29 +0100 Subject: [PATCH] doc(batchmap): clarify relation to readBatchSize (#2418) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Martin Thøgersen --- docs/user-guide/user-defined-functions/map/map.md | 1 + 1 file changed, 1 insertion(+) diff --git a/docs/user-guide/user-defined-functions/map/map.md b/docs/user-guide/user-defined-functions/map/map.md index e725b18d62..02165197c4 100644 --- a/docs/user-guide/user-defined-functions/map/map.md +++ b/docs/user-guide/user-defined-functions/map/map.md @@ -66,6 +66,7 @@ When using BatchMap, there are a few important considerations to keep in mind: Each Datum has a unique ID tag, which will be used by Numaflow to ensure correctness. - Ensure that the length of the BatchResponses list is equal to the number of requests received. This means that for every input data item, there should be a corresponding response in the BatchResponses list. +- The total batch size can be up to `readBatchSize` long. Check the links below to see the UDF examples in batch mode for different languages.