You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: docs/docs/core/settings.mdx
+5-1Lines changed: 5 additions & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -109,7 +109,10 @@ If you use the Postgres database hosted by [Supabase](https://supabase.com/), pl
109
109
110
110
`DefaultExecutionOptions` is used to configure the default execution options for the flow. It has the following fields:
111
111
112
-
*`source_max_inflight_rows` (type: `int`, optional): The maximum number of concurrent inflight requests for source operations. This only provides an default value, and can be overridden by the `max_inflight_rows` argument passed to `FlowBuilder.add_source()` on per-source basis.
112
+
*`source_max_inflight_rows` (type: `int`, optional): The maximum number of concurrent inflight requests for source operations.
113
+
*`source_max_inflight_bytes` (type: `int`, optional): The maximum number of concurrent inflight bytes for source operations.
114
+
115
+
The options provide default values, and can be overridden by arguments passed to `FlowBuilder.add_source()` on per-source basis ([details](/docs/core/flow_def#concurrency-control)).
113
116
114
117
## List of Environment Variables
115
118
@@ -122,3 +125,4 @@ This is the list of environment variables, each of which has a corresponding fie
122
125
|`COCOINDEX_DATABASE_USER`|`database.user`| No |
123
126
|`COCOINDEX_DATABASE_PASSWORD`|`database.password`| No |
124
127
|`COCOINDEX_SOURCE_MAX_INFLIGHT_ROWS`|`default_execution_options.source_max_inflight_rows`| No |
128
+
|`COCOINDEX_SOURCE_MAX_INFLIGHT_BYTES`|`default_execution_options.source_max_inflight_bytes`| No |
0 commit comments