Can I change the timeout for schema discovery in t...
# ask-community-for-troubleshooting
g
Can I change the timeout for schema discovery in the webapp? I’m running Kubernetes via Helm
k
A message from kapa.ai
To change the timeout for schema discovery in Airbyte when running on Kubernetes via Helm, you can modify the
BASIC_AUTH_PROXY_TIMEOUT
environment variable. This variable defines the proxy timeout time for requests to the Airbyte Server, which is useful for dynamic discover when creating a connection that takes a long time. You can set the
BASIC_AUTH_PROXY_TIMEOUT
in your custom
values.yaml
file when deploying Airbyte using Helm. Here's an example of how to set the variable:
Copy code
yaml env:   BASIC_AUTH_PROXY_TIMEOUT: 600
Replace
600
with the desired timeout value in seconds. After specifying your own configuration, deploy Airbyte using the following command:
Copy code
helm install --values path/to/values.yaml %release_name% airbyte/airbyte
For more information on customizing your deployment, refer to the [Airbyte documentation on deploying with Helm](https://docs.airbyte.com/deploying-airbyte/on-kubernetes-via-helm#custom-deployment). Source: [Configuring Airbyte - Shared](https://docs.airbyte.com/operator-guides/configuring-airbyte#shared)
g
@kapa.ai airbyte-proxy isn’t used in Helm deploys. Would I need to tweak k8s ingress?
k
A message from kapa.ai
New message text here