You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Thanks for this package! So I've tried running the example in the docs on a couple of different machines, and I believe the host connection address to be causing an error, but I'm not entirely sure.
Here is the error: HTTP.ConnectError for url = https://new-index-kf5drht.svc.us-east-1-aws.pinecone.io/describe_index_stats: IOError: read: connection reset by peer (ECONNRESET)
But the host address for this index on Pinecone is listed as: https://new-index-kf5drht.svc.aped-4627-b74a.pinecone.io.
I connected with: pinecone_context = Pinecone.init(apikey, "us-east-1-aws")
This is a serverless spec, and I confirmed this is my region as far as I can ascertain.
Then I specified my index, which exists: pinecone_index = Pinecone.Index("new-index")
But the list_indexes call then yields an empty list: Pinecone.list_indexes(pinecone_context)
And the error above occurs when I try to do anything else, like describing any index: Pinecone.describe_index_stats(pinecone_context, pinecone_index)
The text was updated successfully, but these errors were encountered:
Thanks for this package! So I've tried running the example in the docs on a couple of different machines, and I believe the host connection address to be causing an error, but I'm not entirely sure.
Here is the error:
HTTP.ConnectError for url = https://new-index-kf5drht.svc.us-east-1-aws.pinecone.io/describe_index_stats: IOError: read: connection reset by peer (ECONNRESET)
But the host address for this index on Pinecone is listed as:
https://new-index-kf5drht.svc.aped-4627-b74a.pinecone.io
.I connected with:
pinecone_context = Pinecone.init(apikey, "us-east-1-aws")
This is a serverless spec, and I confirmed this is my region as far as I can ascertain.
Then I specified my index, which exists:
pinecone_index = Pinecone.Index("new-index")
But the
list_indexes
call then yields an empty list:Pinecone.list_indexes(pinecone_context)
And the error above occurs when I try to do anything else, like describing any index:
Pinecone.describe_index_stats(pinecone_context, pinecone_index)
The text was updated successfully, but these errors were encountered: