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
I am trying to create a custom indexing pipeline where I first add a file to the index source and then index it into a specific vector store collection (index_1). However, despite successful file processing, no vectors are being saved in the expected collection.
Basic Example
I am using a custom pipeline based on the default IndexDocumentPipeline from ktem. My setup includes:
Inserting the file into the source table.
Processing the file (e.g., reading a PDF, splitting text into segments).
Generating embeddings using the Ollama model.
Saving the embeddings into a Qdrant vector store configured to use the collection index_1_index.
In the Qdrant logs, I can see GET requests checking if the collection exists, but no PUT requests are logged. This suggests that the pipeline is not saving the generated vectors in the expected collection
Drawbacks
The current implementation does not save any vectors, which prevents retrieval functionality.
I cannot verify the custom indexing process if no data is saved in the target collection.
This issue blocks further development and integration of the custom pipeline.
Additional information
I have verified that the file is processed correctly and segments are generated.
The custom pipeline is registered via flowsettings.py with the proper path.
All configurations for the vector store, including the collection name, are provided as a dictionary.
Qdrant logs only show GET requests (e.g., checking for collection existence) and no PUT requests for saving vectors.
Any guidance on what might be missing in the custom pipeline or configuration would be greatly appreciated.
The text was updated successfully, but these errors were encountered:
HeyBossy
changed the title
[REQUEST] Custom file indexing: Unable to save vectors in collection index_1_index
[REQUEST] Custom file indexing: Unable to save vectors in collection Qdrant
Feb 27, 2025
Reference Issues
No response
Summary
I am trying to create a custom indexing pipeline where I first add a file to the index source and then index it into a specific vector store collection (index_1). However, despite successful file processing, no vectors are being saved in the expected collection.
Basic Example
I am using a custom pipeline based on the default IndexDocumentPipeline from ktem. My setup includes:
Example code snippet:
In the Qdrant logs, I can see GET requests checking if the collection exists, but no PUT requests are logged. This suggests that the pipeline is not saving the generated vectors in the expected collection
Drawbacks
Additional information
The text was updated successfully, but these errors were encountered: