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
+9-1Lines changed: 9 additions & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -60,6 +60,7 @@ You have two ways to launch CocoIndex:
60
60
61
61
*`app_namespace` (type: `str`, required): The namespace of the application.
62
62
*`database` (type: `DatabaseConnectionSpec`, required): The connection to the Postgres database.
63
+
*`default_execution_options` (type: `DefaultExecutionOptions`, optional): The default execution options for the flow.
63
64
64
65
### App Namespace
65
66
@@ -104,13 +105,20 @@ If you use the Postgres database hosted by [Supabase](https://supabase.com/), pl
104
105
105
106
:::
106
107
108
+
### DefaultExecutionOptions
109
+
110
+
`DefaultExecutionOptions` is used to configure the default execution options for the flow. It has the following fields:
111
+
112
+
*`source_max_inflight_count` (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_count` argument passed to `FlowBuilder.add_source()` on per-source basis.
113
+
107
114
## List of Environment Variables
108
115
109
116
This is the list of environment variables, each of which has a corresponding field in `Settings`:
110
117
111
118
| environment variable | corresponding field in `Settings`| required? |
0 commit comments