Hi - I'm running this query but its timing out. Wi...
# community-help
d
Hi - I'm running this query but its timing out. Will the operation still run? Or should I batch it up somehow?
Copy code
client = typesense.Client(TYPESENSE_CONFIG)
 
    
    document = {
        'merchant_name': 'JB Hi-Fi',
    }

    client.collections['products'].documents.update(document, {'filter_by': 'merchant_domain:<http://www.jbhifi.com.au|www.jbhifi.com.au>'})
t
In the typesense config there's a variable
connection_timeout_seconds
which is defaulted to
3
seconds. You can increase it and see if it works for this case
👍 1