SOLVED: Updating Vectors in Qdrant stopped working

I’m using the latest n8n 1.90.2 (docker) with qdrant v1.14.0 (docker)

I’m able to add points, get points, set payload, etc using HTTP request nodes. So the API etc works.

Until yesterday, I was also able to update vectors as shown below. Now when I update vectors the result still says: completed, ok. But when I retrieve the point, all the vectors are still set to 0.

I created a new collection and the problem persists there as well.

http://192.168.1.123:6333/collections/tests/points/vectors

{ 
"points": [
  {
    "id": "36405541-6d8f-4dd3-bf7d-d84b09ba6985",
    "vector": [-0.008058105,-0.003645648,-0.0003476669,-0.0056320797,etc. for 1536 values]
  }
]
}

From the qdrant discord I learned to set up the qdrant container with a disk share, not a user share.

In my case my setting for Config: is now: /mnt/cache/appdata/qdrant/

1 Like

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