Questions tagged [weaviate]

Weaviate is an open source vector database that stores both objects and vectors, allowing for combining vector search with structured filtering and CRUD operations. It supports modules such as creating embeddings or generating responses via OpenAI, and is accessible through GraphQL, REST, and various language clients.

Homepage: weaviate.io

116 questions
4
votes
1 answer

semitech:weaviate extensions-storage connection refused while deploying docker container

I am trying to deploy weaviate docker container using following docker-compose stack. cotainner is deployed but i am getting log message connection refused for storage engine like below. help ! {"action":"extensions_retrieve_all","error":"Get…
Rizwan
  • 163
  • 2
  • 8
4
votes
1 answer

Cannot list resource "configmaps" in API group when deploying Weaviate k8s setup on GCP

When running (on GCP): $ helm upgrade \ --values ./values.yaml \ --install \ --namespace "weaviate" \ "weaviate" \ weaviate.tgz It returns; UPGRADE FAILED Error: configmaps is forbidden: User "system:serviceaccount:kube-system:default"…
Bob van Luijt
  • 7,153
  • 12
  • 58
  • 101
3
votes
1 answer

In Weaviate, how to remove a property in existing class?

The documentation on how to update an existing class to add a new property is clear in Weaviate documentation: https://weaviate.io/developers/weaviate/api/rest/schema#add-a-property However, what if I wanted to remove a property from an existing…
junbetterway
  • 236
  • 3
  • 13
3
votes
1 answer

How to retrieve more than 10,000 objects from Weaviate?

I have Weaviate instance where I store 100k documents and I want to retrieve all of them from database in some way. Till now I was using REST GET /v1/objects (with modified python library), adding limit parameter, but that works only up to 10k. I…
3
votes
1 answer

Translating SiDiF to Weaviate

I have several ontology descriptions in Simple Data Interchange Format and would like to transform or import these to use them with Weaviate. An example can be found at: http://cr.bitplan.com/index.php/CrSchema#sidif (see source code below). I was…
Wolfgang Fahl
  • 15,016
  • 11
  • 93
  • 186
2
votes
0 answers

Cannot Add Tenancy to Weviate Class

I have a local instance of weaviate running on my machine. I am trying to enable multi-tenancy by following this guidance and by utilizing this code: client.schema.create_class({ 'class': 'MultiTenancyClass', 'multiTenancyConfig':…
Lizzard28
  • 53
  • 4
2
votes
1 answer

WeaviateStartUpError: Weaviate did not start up in x seconds

So, I have this panel app on a .ypnb, that runs fine and comunicates to weaviate on port 8080 here's the working docker compose.yaml of the db: --- version: '3.4' services: weaviate: command: - --host - 0.0.0.0 - --port -…
2
votes
1 answer

Ignore invalid cross-references in Weaviate import

Is there a way to disable the checks when uploading objects to Weaviate? I get the error {'message': "invalid cref: 'cref' MyClass:MyProperty: no object with id .... found} But I would like to proceed with the upload anyways. (The goal is to reduce…
Servus
  • 479
  • 3
  • 13
2
votes
1 answer

what property/field is used when querying in weaviate

When we run queries on weaviate, what property the query is running on? Or is it running on all properties of each entry? Look at the following example, nearText is running on all three properties "question", "answer", "category" here? If that is…
derek
  • 9,358
  • 11
  • 53
  • 94
2
votes
1 answer

Embedding version control of the weaviate

In Weaviate, the vector engine, I wonder how this can handle version issue of embedding model. For instance, considering the (trained) word2vec model, embedded vectors from different models must be seperated. One option might think is that make…
2
votes
1 answer

Post-filtering in Weaviate

I have a Weaviate instance running (ver 1.12.2). I am playing around with the Python client https://weaviate-python-client.readthedocs.io/en/stable/ (ver 3.4.2) (add - retrieve - delete objects...etc...) I am trying to understand how filtered…
Billy.G
  • 71
  • 7
2
votes
1 answer

Sort Weaviate results based on number field

We are using Weaviate to serve e-commerce results. Our Weaviate database stores all the products we sell. Based on the customer and the search term we create a vector and use this to query the database. This property is called…
Funzo
  • 1,190
  • 2
  • 14
  • 25
2
votes
1 answer

In weaviate is it possible to return only some referenced objects in Weaviate?

It is for an e-commerce use case. We sell products and products have different properties depending on the city, e.g. price, availability etc.. When we query for a product, we always want to filter with a city and only want to return information for…
Funzo
  • 1,190
  • 2
  • 14
  • 25
2
votes
1 answer

Weaviate constantly running out of memory

I am trying to run an instance of weaviate, but am running across an issue with memory consumption. I have weaviate running in a docker container with 16GB of memory, which looking in the documentation seems like it would be enough for over 1M…
ryknow
  • 161
  • 1
  • 10
2
votes
1 answer

Is Weaviate compatible with fielded search?

I'm working with a dataset that contains multiple fields. I need to conduct searches on several fields simultaneously. Is Weaviate compatible with fielded search? If that is the case, I'd appreciate it if you could instruct me on how to combine many…
1
2 3 4 5 6 7 8