Skip to content

0.20.3 Ability to no-index properties

Choose a tag to compare

@etiennedi etiennedi released this 11 Oct 14:33

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 set index: false when defining your property schema. See the swagger docs for more details. If the property is set to index: true or 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 to index: false it 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.