Question:
I have a question regarding Auto Schema in Weaviate.
Scenario:
• Auto Schema is enabled
-
Create Collection A
-
Add the following object:
{
“text”: “test”,
“files”: [
{
“path”: “path”,
“name”: “name”
}
]
}
-
Create Collection B
-
Add the following object:
{
“name”: “name”
}
-
Create Collection C
-
Try to add the following object, but an error occurs:
{
“files”: [“file”]
}
Observation:
Upon checking the schema, I noticed that properties were not created separately for each collection. Instead, the properties were generated based on the property types from Collection A and Collection B.
Question:
Why is this happening? How does Weaviate handle schema generation across multiple collections when Auto Schema is enabled?
Weaviate version : 1.26.1