Hi! Could you help me? Which airbyte deployment c...
# replication-ask-ai
y
Hi! Could you help me? Which airbyte deployment component in kubernetes does the SYNC_JOB_MAX_TIMEOUT_DAYS variable refer to? To the worker or the server? We use this helm chart for deployment: https://artifacthub.io/packages/helm/airbyte/airbyte
k
A message from kapa.ai
The
SYNC_JOB_MAX_TIMEOUT_DAYS
variable is a configuration for Airbyte jobs. It defines the number of days a sync job will execute for before timing out. This variable is applicable to both Docker and Kubernetes deployments. In the context of Kubernetes, this variable would be relevant to the worker pods, as they are responsible for executing Airbyte operations such as sync jobs. You can set this variable in the environment configuration for your worker pods. If you're using Helm for deployment, you would typically set this in your
values.yaml
file or directly in your Helm command with the
--set
flag. For more details, you can refer to the [Airbyte documentation on configuring Airbyte](https://docs.airbyte.com/operator-guides/configuring-airbyte) and [scaling Airbyte](https://docs.airbyte.com/operator-guides/scaling-airbyte).