Hi just a quick question about the error i got
I was querying with weaviate and sometimes i got an error saying [Errno -2] Name or service not known.
And for note i got this error not everytime but only occur sometimes
I’m using trafeik as reverse proxy as websecure for the http, but i set the connection to weaviate like this
weaviate_lib.connect_to_custom(
http_host=WEAVIATE_REST_HOST,
http_port=WEAVIATE_REST_PORT,
http_secure=False,
grpc_host=WEAVIATE_GRPC_HOST,
grpc_port=WEAVIATE_GRPC_PORT,
grpc_secure=False,
headers={
"X-OpenAI-Api-Key": OPENAI_API_KEY,
"X-OpenAI-Organization": OPENAI_ORGANIZATION_ID
},
additional_config=AdditionalConfig(
connection=ConnectionConfig(
session_pool_max_retries=3,
),
timeout=Timeout(query=60, insert=120),
)
)
should i set http and grpc secure even though weaviate only communicate with non other than a service in the same reverse proxy configuration??