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-resourcerequirements-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/ResourceRequirements",
  "title": "ResourceRequirements",
  "x-speakeasy-component": true,
  "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"
    }
  }
}