Skip to content

Commit 673b946

Browse files
committed
chore: no more default values for concurrency limit
1 parent 1da0a33 commit 673b946

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

python/cocoindex/setting.py

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -45,11 +45,11 @@ class DatabaseConnectionSpec:
4545

4646
@dataclass
4747
class GlobalExecutionOptions:
48-
"""Default execution options."""
48+
"""Global execution options."""
4949

50-
# The maximum number of concurrent inflight requests.
51-
source_max_inflight_rows: int | None = 256
52-
source_max_inflight_bytes: int | None = 1024 * 1024 * 1024
50+
# The maximum number of concurrent inflight requests, shared among all sources from all flows.
51+
source_max_inflight_rows: int | None = None
52+
source_max_inflight_bytes: int | None = None
5353

5454

5555
def _load_field(

0 commit comments

Comments
 (0)