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: README.md
+24Lines changed: 24 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -179,6 +179,30 @@ Installs a local Airbyte instance or updates an existing installation which was
179
179
| --values | "" | Helm values file to further customize the Airbyte installation. |
180
180
| --volume | "" | **Can be set multiple times**.<br />Mounts additional volumes in the kubernetes cluster.<br />Must be in the format of `<HOST_PATH>:<GUEST_PATH>`. |
181
181
182
+
#### Low Resource Mode
183
+
184
+
The `--low-resource-mode` flag optimizes Airbyte for environments with limited CPU and memory resources. When enabled, this mode makes the following changes:
185
+
186
+
**Resource Requests:**
187
+
- Sets all job resource requests (CPU and memory) to `0`, allowing Kubernetes to schedule jobs without minimum resource guarantees
188
+
- Applies to all job types: `check`, `discover`, `spec`, and `sidecar` containers
189
+
190
+
**Feature Adjustments:**
191
+
- Disables the Connector Builder Server to reduce overall resource consumption
192
+
193
+
This mode is ideal for:
194
+
- Development and testing environments with limited resources
195
+
- Machines with constrained CPU or memory
196
+
- Situations where multiple services need to share limited system resources
197
+
198
+
> [!NOTE]
199
+
> While low resource mode reduces resource requirements, it may impact performance for data-intensive operations. It is not recommended for production workloads with large data volumes.
0 commit comments