datahub/docs/what/search-index.md

19 lines
1.1 KiB
Markdown
Raw Permalink Normal View History

# What is GMA search index?
2019-12-19 17:23:48 -08:00
Each [search document](search-document.md) type (or [entity](entity.md) type) will be mapped to an independent search index in Elasticsearch.
Beyond the standard search engine features (analyzer, tokenizer, filter queries, faceting, sharding, etc),
2019-12-19 17:23:48 -08:00
GMA also supports the following specific features:
- Partial update of indexed documents
- Membership testing on multi-value fields
- Zero downtime switch between indices
2019-12-19 17:23:48 -08:00
Check out [Search DAO](../architecture/metadata-serving.md#search-dao) for search query abstraction in GMA.
## Search Automation (TBD)
We aim to automate the index creation, schema evolution, and reindexing such that the team will only need to focus on the search document model and their custom [Index Builder](../architecture/metadata-ingestion.md#search-index-builders) logic.
As the logic changes, a new version of the index will be created and populated from historic MAEs.
Once its fully populated, the team can switch to the new version through a simple config change from their [GMS](gms.md).
They can also rollback to an older version of index whenever needed.