Simon Thelin
06/22/2022, 9:13 PMread
and writer
pods airbyte creates in k8s?Simon Thelin
06/22/2022, 9:19 PMapiVersion: v1
kind: ResourceQuota
metadata:
name: mem-cpu-demo
namespace: airbyte
spec:
hard:
requests.cpu: "2"
requests.memory: 2Gi
limits.cpu: "2"
limits.memory: 2Gi
To my cluster?
Don’t think that solves my question though.
Feels like there should be some configuration via your env for this?Simon Thelin
06/22/2022, 9:24 PM# Docker Resource Limits
JOB_MAIN_CONTAINER_CPU_REQUEST=
JOB_MAIN_CONTAINER_CPU_LIMIT=
JOB_MAIN_CONTAINER_MEMORY_REQUEST=
JOB_MAIN_CONTAINER_MEMORY_LIMIT=
Simon Thelin
06/22/2022, 9:25 PMSimon Thelin
06/22/2022, 9:58 PMJOB_MAIN_CONTAINER_CPU_REQUEST: "1"
JOB_MAIN_CONTAINER_CPU_LIMIT: "1"
JOB_MAIN_CONTAINER_MEMORY_REQUEST: "1Gi"
JOB_MAIN_CONTAINER_MEMORY_LIMIT: "1Gi"
But the check/read/writer
pods still have:
Limits:
cpu: 200m
memory: 50Mi
Requests:
cpu: 100m
memory: 25Mi
Simon Thelin
06/22/2022, 10:06 PMCONNECTOR_SPECIFIC_RESOURCE_DEFAULTS_ENABLED
But same thing there.Adam Bloom
06/22/2022, 11:00 PMAdam Bloom
06/22/2022, 11:00 PMresourceRequirements
in the connection objectSimon Thelin
06/22/2022, 11:02 PMSimon Thelin
06/22/2022, 11:03 PMAlan McCarty
08/17/2023, 9:13 PMSimon Thelin
08/18/2023, 3:38 PMSimon Thelin
08/18/2023, 3:39 PMJOB_MAIN_CONTAINER_CPU_REQUEST
JOB_MAIN_CONTAINER_CPU_LIMIT
JOB_MAIN_CONTAINER_MEMORY_REQUEST
JOB_MAIN_CONTAINER_MEMORY_LIMIT
It is also not well documented from Airbyte.