I'm storing the data for my in Azure Document DB. In order to allow search over the description field of my data, I've connected my document DB repository with Azure Search, as explained here: https://learn.microsoft.com/en-us/azure/documentdb/documentdb-search-indexer
I also need to filter the results of the search via several parameters. I find myself adding more an more fields to my Azure Search indexers, up to the point where I'm almost duplicating my database entities to the Azure search entities.
The question - If I need to search over my data and decide to use Azure search, is there any benefit to keeping the data in Document DB, or will it be better to model it again using only Azure Search?