Airbyte · Schema

ResourceRequirements

optional resource requirements to run workers (blank for unbounded allocations)

Data IntegrationETLELTOpen SourceData PipelineConnectorsData

Properties

Name Type Description
cpu_request string
cpu_limit string
memory_request string
memory_limit string
ephemeral_storage_request string
ephemeral_storage_limit string
View JSON Schema on GitHub

JSON Schema

airbyte-resource-requirements-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://raw.githubusercontent.com/api-evangelist/airbyte/refs/heads/main/json-schema/airbyte-resource-requirements-schema.json",
  "title": "ResourceRequirements",
  "description": "optional resource requirements to run workers (blank for unbounded allocations)",
  "type": "object",
  "properties": {
    "cpu_request": {
      "type": "string"
    },
    "cpu_limit": {
      "type": "string"
    },
    "memory_request": {
      "type": "string"
    },
    "memory_limit": {
      "type": "string"
    },
    "ephemeral_storage_request": {
      "type": "string"
    },
    "ephemeral_storage_limit": {
      "type": "string"
    }
  }
}