Weaviate Holding Locks on EFS Files Causing disk quota exceeded Errors
hi! In cases where there is a limit on the machine running Weaviate, on this case the locks for EFS, the recommended way to avoid this is using more nodes. While our team is constantly working on...
View ArticleHow to Create a Schema Using Python Client V4 via a Custom API Endpoint?
@DudaNogueira Need your guidance here
View ArticleHow to Create a Schema Using Python Client V4 via a Custom API Endpoint?
Hi! Not sure I understood it here. In order to create a collection, that’s the only endpoint available: weaviate.io Weaviate the client, by the way, is using that very same endpoint. So you can use...
View ArticleCannot connect to weaviate in v4 using only url
hi @AnnTade !! Welcome to our community !! The python client v4 introduces the GRPC connection. So in order to use it, you need to make sure you server is a recent version (1.25+ should be fine) and...
View ArticleHow to Create a Schema Using Python Client V4 via a Custom API Endpoint?
I have defined my client like below self.client = weaviate.connect_to_custom( http_host=host, http_port=port, http_secure=False, grpc_secure=False, grpc_host=grpc_host, grpc_port=grpc_port, headers={...
View ArticleCannot connect to weaviate in v4 using only url
By the way, to find out the version your server is running, you can hit this endpoint: https://sample-weaviate.myorg.com/v1/meta
View ArticleCan vectorizer embedding model be changed while in service?
hi @Min !! You got it right. You cannot change the vectorizer without vectorizing all your data using the new vectorizer. Note that the vectorizer is a non mutable configuration of your collection:...
View ArticlePython 3.12 import error for weaviate
hi @fbernard !! Welcome to our community Can you provide those? fbernard: Server Setup Information Weaviate Server Version: Deployment Method: Multi Node? Number of Running Nodes: Client Language and...
View ArticleHow to Create a Schema Using Python Client V4 via a Custom API Endpoint?
Yes, you can both use the python client or call the endpoint directly. If you have set the auth in Weaviate server, you can use it as a bearer token for the rest call
View ArticleTo setup Weaviate on the EC2 instances with 3 nodes
hi!! Some of those questions are not Weaviate related Here we have some content on Observability in prod: weaviate.io – 28 Mar 23 Monitoring Weaviate in Production | Weaviate Learn about how to...
View ArticleCannot connect to weaviate in v4 using only url
that was really helpful. Thank you! and is there a way to check is gRPC ports are being exposed? Also to use custom connections function to connect my http_host would be the url of the weaviate and...
View ArticlePython 3.12 import error for weaviate
I think the problem was that I needed to do ‘pip install weaviate-client’ instead of ‘pip install weaviate’ (which for some reason seemed ok on windows) When I did this things worked fine.
View ArticleSays collection exist on insertion even
Hi I have already created collections but when I try to insert add object it says class already exist why so? my code collection_name = f"Collection_{request.collectionId.replace('-', '')}" data_row =...
View ArticleSays collection exist on insertion even
creating collections like this collection_name = 'Collection_' + request.id.replace('-', '') client.collections.create( collection_name, vectorizer_config=[...
View ArticleWeaviateGRPCUnavailableError: gRPC is not available
Can someone please provide steps how to secure the gRPC port. I am able to connect using both grpc_secure=true and grpc_secure=false . My http connection is secured. client =...
View ArticleMeta endpoint! Unexpected status code: 401, with response body: {'code': 401,...
i am getting above error while connecting to my Weaviate client it is deployed in the eks below is my config i am unable to set the api-key authentication: anonymous_access: enabled: false This...
View ArticleIssues Configuring weaviate to work with an ollama Docker Instance (v4 client)
Hi everyone, I’m running into some challenges while trying to intergrate Weaviate with an Ollama Docker (with CUDA support) Instance. They are both ran in an docker container on the same server....
View ArticleUsing DataType.TEXT_ARRAY as a datatype for a feature/column causes problems...
Description import weaviate import os import weaviate.classes as wvc import weaviate.classes.config as wc from langchain_core.runnables import RunnablePassthrough from langchain.schema import...
View ArticleClient tool for Weaviate DB
Description What is the best way to use the Weaviate client for Weaviate hosted on an EC2 machine? Do we have the option to use GraphiQL? Where can I download the package and install it on an Ubuntu...
View Article[Question] Unload Vector Index From Memory
In weaviate Can Vector indexes be unloaded from memory after vector index search?
View Article