Hello there! Is it possible to change the timeout ...
# help-connector-development
s
Hello there! Is it possible to change the timeout for a given connection?
k
A message from kapa.ai
Yes, it is possible to change the timeout for a given connection. For example, if you are using the Postgres source connector, you can set the
connectTimeout
parameter in the JDBC URL Parameters (Advanced) field when configuring the connector. The
connectTimeout
parameter defaults to 60 seconds. Setting
connectTimeout
to 0 seconds will set the timeout to the longest time available [source](https://docs.airbyte.com/integrations/destinations/postgres). To set the
connectTimeout
, you can add it as a key-value pair in the JDBC URL Parameters (Advanced) field like this:
Copy code
connectTimeout=60
Please note that this is an example for the Postgres source connector, and the process might be different for other connectors. Make sure to check the documentation for the specific connector you are using.
s
I’m not talking about the timeout to connect to the source but the timeout of the sync global runtime
m
Oh yes, you can configure in the .env file
👍 1
s
Is it possible to change that file through the UI?
(Thanks for the answer btw!)
Ah but you can’t change the timeout for a only 1 connection right?
m
No, you can’t.
👍 1
s
thanks