I'm learning ElasticSearch and using it for a multi-tenancy situation. I've created some aliases per customer and it's filtering and routing in Search really well. https://www.elastic.co/guide/en/elasticsearch/guide/current/faking-it.html
However it's not doing the same for Suggest. Is this possible?
What's the use case for Suggest? For example, say I have sales database of contacts, with fields for FirstName, LastName and FullName. My users certainly want to keep their sales leads private. Is Suggest intended only to suggest or prompt for individual names and not for the full name which would give away too much? Or can I do a completion for FullName filtered only for their data?
Am I correct in guessing this is kind of possible with a collation? Does adding collations slow down the Suggest a lot? Any examples?
Thanks,
Aaron