Having issues while upserting a vector to an Index

I am getting the following error message while trying to upsert vectors to an index. Is it my code issue or PineCone is down?

MaxRetryError: HTTPSConnectionPool(host=‘barbrius-8d359a4.svc.us-west1-gcp-free.pinecone.io’, port=443): Max retries exceeded with url: /vectors/upsert (Caused by SSLError(SSLEOFError(8, ‘EOF occurred in violation of protocol (_ssl.c:2423)’)))

1 Like

This is likely an SSL error.

pip install ndg-httpsclient
pip install pyopenssl
pip install pyasn1

Good luck.

I have the same issue and installing those libs didnt fix it. Help, please.

I also have the same issue while working on google colab.

MaxRetryError: HTTPSConnectionPool(host=‘semantic-d041cc7.svc.us-west4-gcp-free.pinecone.io’, port=443): Max retries exceeded with url: /vectors/upsert (Caused by SSLError(SSLEOFError(8, ‘EOF occurred in violation of protocol (_ssl.c:2426)’)))

I’m having trouble inserting. (Upsert).

Installed these 3 packages as well but still not working getting same error.

!pip install ndg-httpsclient
!pip install pyopenssl
!pip install pyasn1

This actually stopped working for me. I get the impression it is on PineCone’s side.

Maybe they just don’t fully support free customers.

Perhaps you are reaching the maximum number of vectors you can upsert in a batch. I had a similar issue, reduced the number of vectors to upsert on the batch and it worked.

I continue to face the same error even with less number of vectors in the batch

Hi @siddhantkumar.xyz, the error Max retries exceeded with url: /vectors/upsert (Caused by SSLError(SSLEOFError(8, ‘EOF occurred in violation of protocol))) is likely due to malformed vectors in the upsert (see support article). Regarding specific fixes for the malformed vectors, here’s a post from another community user with a solution:

1 Like

This topic was automatically closed 24 hours after the last reply. New replies are no longer allowed.