-
-
Notifications
You must be signed in to change notification settings - Fork 17.7k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[BUG] vectorsService.upsertVector Not implemented (Postgres Record Manager) #2200
Comments
is it just postgres record manager? |
I only use postgres databases. So I can't speak about the other record managers. |
I've had the same issue with Postgres, In-memory vector store, and Pinecone. It seems like the embeddings just fail when i load more than a few documents in. |
I also encountered the same issue. I tried to clear the database, and encountered the same error message when performing an Upsert. |
I have this error as well. It happens to me if I use Postgres Record Manager but also if I use MySQL Record Manager. The error logs are this:
It's the same if I use Mysql or Postgres Record Manager. The only way that I can use it is to set the cleanup to "none" EDIT: Can confirm that is related to Postgres retriever. I have implemented a Chroma retriever and the MySQL and Postgres Record Manager works OK. |
Error still occurring when using PG record manager with PG vector. |
same error here :( |
I managed to get my chatflow working by following a YouTube video by Leon van Zyl. I connected the record manager block to Supabase, which resolved the issue. It seems that the error I encountered earlier was due to incorrect configuration of my local PostgreSQL database. I apologize for any confusion caused. |
I followed the same instruction from leon van zyl video number 6 but still got same error with in memory, chromadb and pinecode vector store |
My setup was postgres as Vector Store and Record Manager, and I got the error mentioned by the author of this thread. This only happened if the Cleanup option is either set to incremental or Full. I was not able to fix this. But when I change my Vector Store to Qdrant and still the Record Manager is Postgres, everything working fine. The cleanup setting of the Record Manager is still set Incremental. |
This PR should fixes this: #3180 using Postgres Record Manager + Postgres Vector Store |
Great job Henry. How can we get the update? Is that part of the Flowise release update? |
When attempting to upsert a new document using a Postgres Record Manager, I encountered the following error: "Error: vectorsService.upsertVector - Error: Error: Not implemented."
To Reproduce
Steps to reproduce the behavior:
Expected behavior
I expected the content of the first document to be erased from the database, followed by the upsertion of the new document's content into the database.
Screenshots
Flow
postgres record manager upsert error Chatflow.json
The text was updated successfully, but these errors were encountered: