0.20.3 Ability to no-index properties
Docker image/tag: semitechnologies/weaviate:0.20.3
See also: example docker compose files in english and dutch.
New Features
- Explicitly disable indexing of specific properties (#952)
Previously every property would always be indexed. You can now setindex: falsewhen defining your property schema. See the swagger docs for more details. If the property is set toindex: trueor not set at all, nothing changes and it stays indexed (i.e. this change is entirely non-breaking). If the property is however explicitly set toindex: falseit will not be taken into account when vectorizing your thing or action object. Additionally it will not be indexed in Elasticsearch for text-based searches, either. Searches on non-indexed properties are not possible.