Reputation: 51
Does Vespa support field projection for selected retrieval? (Similar to https://www.elastic.co/guide/en/elasticsearch/reference/current/search-fields.html in Elastic search)
Interested in:
Upvotes: 1
Views: 162
Reputation: 3184
Vespa don't support this today but feature requests are welcome over at https://github.com/vespa-engine/vespa/issues
You can configure summary classes which is also more efficient then resolving this at query time. See https://docs.vespa.ai/en/document-summaries.html
document foo {
field a ..
field b ..
field c ..
}
document-summary ab {
field a .. { source: a}
field b .. { source: b}
}
Upvotes: 1