How can I force weaviate to run(recognize?) as a single node?
Mohamed_Shahin: CLUSTER_HOSTNAME: 'node1' After the changes it’s still seeming to locate a leader and my program still exits due to this error. docker-compose.yml: weaviate: command: - --host -...
View ArticleMulti-Tenant support for Unstructured ETL Pipelines!
I was trying to get Make ETL pipelines from aws-S3 to Weaviate for multiple users, But couldn’t find a way to utilize Weaviate’s Multi-Tenancy via Unstructured. Now, I’m creating separate Collection...
View Article[Question] Query weaviate
We are doing a POC only locally at first. But I cannot get this to work for the life of me : const searchResponse = await weaviateClient.query(query); const documents =...
View Article[Question] Query weaviate
Hey Johann I think there might be several things mixing up here. First issue could be, that you are using query on the client but in all the examples I have seen it is being used on the collection. So...
View ArticleMeta endpoint! Unexpected status code: 401, with response body: {'code': 401,...
hi @cfloressuazo i follwed your instruction getting the same error --- authentication: anonymous_access: enabled: false apikey: enabled: true allowed_keys: - kejhkerhfgowrfghkuhruhjkfg users: - admin...
View ArticleMeta endpoint! Unexpected status code: 401, with response body: {'code': 401,...
Jyothi_Ram: auth_credentials="kejhkerhfgowrfghkuhruhjkfg This needs to be auth_credentials=wvc.init.Auth.api_key("kejhkerhfgowrfghkuhruhjkfg") I’ll see if we can improve this!
View ArticleHow can I force weaviate to run(recognize?) as a single node?
hi @ryansamu5 ! Can you try this docker compose? Note: I removed the network, changed the volumes to a local folder, and mapped the ports 8080 and 50051 and passed OPENAI_API_KEY as and ENV VAR.:...
View ArticleWrite Timeout for Batch Vectorization in Docker – TLS & Container Restart Issues
Hi! Can you try increasing the value of MODULES_CLIENT_TIMEOUT? You can get more info on this here: weaviate.io Environment variables | Weaviate To configure Weaviate in a Docker or a Kubernetes...
View ArticleWeaviate on railway does not persist to disk
I am hosting weaviate on railway.app This is the Dockerfile, just a simple base image. FROM semitechnologies/weaviate:1.28.2 These are env variables of the container I setup through railway....
View ArticleCreate persisted database
Thanks @DudaNogueira, for reviewing my query. here is my docker-compose yaml: version: ‘3.4’ services: weaviate: image: semitechnologies/weaviate:1.28.1 ports: - “8080:8080” - “50051:50051”...
View ArticleCreate persisted database
AbhinavKasubojula: GENERATIVE_MODEL_ENDPOINT Hi! Where did you get this environment variable? It doesn’t exist. Note that you are not defining any vectorizer:...
View ArticleCreate persisted database
Hi @DudaNogueira , Thanks for pointing that out! Here’s what I’m doing to spin it up and down: To start: docker-compose up -d To stop: docker-compose down Let me know if I should be doing anything...
View ArticleWeaviate on railway does not persist to disk
Hi @thepartyparrot !! Have you attached a volume? I was able to persist: Let me know if this helps! Thanks!
View ArticleCreate persisted database
if I change vectorizer_config=wvc.config.Configure.Vectorizer.none(), to: vectorizer_config=wvc.config.Configure.Vectorizer.text2vec_ollama(), I’m unable to load data in collection, client =...
View ArticleWeaviate on railway does not persist to disk
It did work out! For some reason had to create a new service as it wasn’t mounting volume properly, immediately worked! Another Issue I have is that none of the gRPC quories work, as it is unable to...
View ArticleWeaviate on railway does not persist to disk
Yes. It seems, at least for the UI, it is not possible to bind two ports to a single domain, or two domains, each for one port. it seems to have a way to deploy using code and then you would be able...
View ArticleCreate persisted database
Can you check this: weaviate.io Batch import | Weaviate Batch imports are an efficient way to add multiple data objects and cross-references. Basically, adding a way to check if there was any issues...
View ArticleWeaviate HybridSearch explainScore
Why does the explainScore in Weaviate Hybrid Search show only “Hybrid (Result Set keyword)” or “Hybrid (Result Set vector)” for the documents? Shouldn’t it display the combined score of both search...
View ArticleCreate persisted database
AbhinavKasubojula: Hi @DudaNogueira , Thanks for pointing that out! Here’s what I’m doing to spin it up and down: To start: docker-compose up -d To stop: docker-compose down Let me know if I should be...
View ArticleWeaviate on railway does not persist to disk
I do have their provided domain setup for 8080 and a custom one for 50051, I am using those. Should theoretically work, right?
View Article