<@U04SE163WC8> how do i change the default cpu and...
# help-connector-development
n
@kapa.ai how do i change the default cpu and memory resources for the pod of my source connector
k
A message from kapa.ai
To change the default CPU and memory resources for the pod of your source connector, you can configure the instance-wide requirements by setting the following environment variables: 1.
JOB_MAIN_CONTAINER_CPU_REQUEST
- Define the job container's minimum CPU usage. Units follow either Docker or Kubernetes, depending on the deployment. Defaults to none. 2.
JOB_MAIN_CONTAINER_CPU_LIMIT
- Define the job container's maximum CPU usage. Units follow either Docker or Kubernetes, depending on the deployment. Defaults to none. 3.
JOB_MAIN_CONTAINER_MEMORY_REQUEST
- Define the job container's minimum RAM usage. Units follow either Docker or Kubernetes, depending on the deployment. Defaults to none. 4.
JOB_MAIN_CONTAINER_MEMORY_LIMIT
- Define the job container's maximum RAM usage. Units follow either Docker or Kubernetes, depending on the deployment. Defaults to none. You can find more information on configuring instance-wide requirements in the [Airbyte documentation](https://docs.airbyte.com/operator-guides/configuring-connector-resources#configuring-instance-wide-requirements).