Changing Distance Metric for a Collection
Description I’ve been told by GPT-4o that to change the distance metric for a collection, you have to back up all your data and metadata, delete the old schema and data, implement the new schema with...
View ArticleHigh Memory Usage After Upgrading Weaviate to Version 1.25
Hello @DudaNogueira Thanks for your response. Since this schema is already made and data has been trained and live on the server, can I still tweak it using configuration settings? If so, could you...
View ArticleBackup Issue Weaviate
Hello @DudaNogueira In the meantime, I encountered multiple issue with the backup in Azure. Error message: “upload stream "weaviate-backup/weaviate-0/doc/chunk-1": Put...
View ArticleBackup Issue Weaviate
hi, sorry, are those logs from the latest version? It was not clear if that you have updated it after the 1.25.0 version
View ArticleHigh Memory Usage After Upgrading Weaviate to Version 1.25
hi! The environment variables can be changed at any time. However, the configurations that are bound to the collection may or may not be mutable. We host a list of mutable collection properties here:...
View ArticleDistance metrics in vector search
hi @Ashish_Kumar !! Welcome to our community the distance metric, as you requested this metadata to be returned, is the distance calculation between your query and your stored objects. By default,...
View ArticleBackup Issue Weaviate
Hello @DudaNogueira Yes, this is the logs from the latest version after updated to 1.25.0 version.
View ArticleGRPC Query failed AioRpcError of RPC terminated status UNAVAILABLE
Hi! This will vary according to the dimension length of your vectors. Here we have an example for this calculation Assuming your vectors has 1536 dimensions, this is the calculation you need to do,...
View ArticleBackup Issue Weaviate
Oh, the latest version is 1.26.5, not 1.25 The changes I mentioned landed in latest 1.26.X version (not sure exactly which, so 1.26.5 is the best option)
View ArticleNew weaviate version filtering issue
Hello @DudaNogueira Thanks for your response. I am currently running the Python Weaviate client version 3.18.0. I noticed an issue when trying to use an older backup file (version 1.18.0) with the new...
View ArticleChanging Distance Metric for a Collection
hi @blue-j !! Welcome to our community Indeed, this is true. There are some collection properties that are mutable, but some are not. We have a list of this mutability here. The reasoning behind this...
View ArticleNew weaviate version filtering issue
You shouldn’t do that. If you backup on 1.18, you restore to 1.18, and not to 1.25 or any other different version. This is because there are some migrations. Also, you should not skip versions. So in...
View ArticleBackup Issue Weaviate
I understand, but will the issue with “backup not released yet” be resolved in the latest release? A recurring issue we’re facing is that whenever a previous backup fails for any reason, this “backup...
View ArticleAnyone used many WHERE filters in DELETE
hi @Analitiq ! You can for sure do that. This is how to do it using python v4 client: client.collections.delete("Test") collection = client.collections.create( "Test", properties=[...
View ArticleAnyone used many WHERE filters in DELETE
@Analitiq I was about to confirm that with you, but @DudaNogueira was faster! Thank you so much, @DudaNogueira. Also, adding to Duda’s response, I would recommend you always refer to the Python client...
View ArticleBackup Issue Weaviate
Hi @sanjeev1678 ! The new 1.26.5 version implements a new cancel backup endpoint: github.com/weaviate/weaviate backport : add backup cancel endpoint weaviate:stable/v1.24 ← weaviate:backup-cancel-1.24...
View ArticleBackup Issue Weaviate
Hi! By the way the legend @jphwang just updated our docs with that: weaviate.io Weaviate
View ArticleKeep getting "Query call with protocol GRPC search failed with message...
Description I am using Azure Durable Functions that creates a new instance of WeaviateDB but does close it down when finished with it. This is how I create the WeaviateDB: def get_weaviate_db(kb_id:...
View ArticleHow does the filter ContainsAny and ContainsAll work?
If you have a list that contains sentences [“Dorthraki language”, “Ktulhu Monster lives in”] and you are searching for text chunk with the operator ContainsAny, is it supposed to match the text chunks...
View ArticleHigh Query latency in Weaviate
yes, we did try with V4 client(GRPC), dense queries latency has improved by 40%, however sparse queries has worsen the performance by 40% for P99. This was surprise for us as we have changed client...
View Article