Description
hi Weaviate Community/Team!
I am testing Weaviate text search (bm25)
I use the following code to search
collection = client.collections.get(collection_name)
collection.query.bm25(
query=text,
limit=50
).objects
for collection with 1 million documents (~ 2000 chars each), the text search works very slowly (8 sec), is there any way to make it faster?
Server Setup Information
- Weaviate Server Version: 1.25.0
- Deployment Method: k8s
- 2 Nodes
- Client Language and Version: Python client
- Multitenancy: No