From e8de0021f46a1ee2c02f8a8eb51b8a415f40c3f4 Mon Sep 17 00:00:00 2001 From: plpycoin <103234125+plpycoin@users.noreply.github.com> Date: Fri, 29 Nov 2024 13:56:42 +0800 Subject: [PATCH] Add variable descriptions that limit the number of concurrent threads (#215) --- docs/operators/code.md | 1 + 1 file changed, 1 insertion(+) diff --git a/docs/operators/code.md b/docs/operators/code.md index 28178fe2..f3cf79d5 100644 --- a/docs/operators/code.md +++ b/docs/operators/code.md @@ -90,3 +90,4 @@ The transform function should return True for items to keep and False for items | drop_keys | List of keys to remove from output (code_map only) | None | | reduce_key | Key(s) to group by (code_reduce only) | "_all" | | pass_through | Pass through unmodified keys from first item in group (code_reduce only) | false | +| concurrent_thread_count | The number of threads to start | the number of logical CPU cores (os.cpu_count()) |