We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1da0a33 commit 673b946Copy full SHA for 673b946
python/cocoindex/setting.py
@@ -45,11 +45,11 @@ class DatabaseConnectionSpec:
45
46
@dataclass
47
class GlobalExecutionOptions:
48
- """Default execution options."""
+ """Global execution options."""
49
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
+ # The maximum number of concurrent inflight requests, shared among all sources from all flows.
+ source_max_inflight_rows: int | None = None
+ source_max_inflight_bytes: int | None = None
53
54
55
def _load_field(
0 commit comments