Hi all, getting a ReadTimeout(HTTPSConnectionPool(host=<endpoint>, port=443) when trying to use the OpensearchVectorClient. Using LlamaIndex 0.10.12 and llama-index-vector-stores-opensearch==0.1.7 if that matters.
Apologies if this has been covered here, but I couldn't find anything specific when searching the web other than someone who needed to include the port (which I have already specified)
I don't believe this to be an issue with credentials as I am able to authenticate with AWS Secrets Manager and AzureOpenAI in a couple code blocks above this.
Config is as follows:
client = OpensearchVectorClient(
endpoint,
idx,
1536,
embedding_field=embedding_field,
text_field=text_field,
http_auth=awsauth,
port=443,
use_ssl=true
verify_certs=true
connection_class=RequestsHttpConnection,
timeout=30 (I've tried all from 15 - 300s)
)