Hi there! Are you looking for the official Deno documentation? Try docs.deno.com for all your Deno learning needs.

WorkerResource

import type { WorkerResource } from "https://googleapis.deno.dev/v1/composer:v1.ts";

Configuration for resources used by Airflow workers.

interface WorkerResource {
cpu?: number;
maxCount?: number;
memoryGb?: number;
minCount?: number;
storageGb?: number;
}

§Properties

§
cpu?: number
[src]

Optional. CPU request and limit for a single Airflow worker replica.

§
maxCount?: number
[src]

Optional. Maximum number of workers for autoscaling.

§
memoryGb?: number
[src]

Optional. Memory (GB) request and limit for a single Airflow worker replica.

§
minCount?: number
[src]

Optional. Minimum number of workers for autoscaling.

§
storageGb?: number
[src]

Optional. Storage (GB) request and limit for a single Airflow worker replica.