Maximum index size with good performance? #716
Replies: 1 comment 4 replies
-
Hello @rectifyer,
It is a good thing to do. Moreover, if you want to search over all your data globally, you can do it in 1 API call using the multi-index search
You can easily separate your searchable fields and the field you want to display. Don't hesitate to restrict the searchable field to the most relevant field from the search-user POV and prefer using the filterable fields for the attribute containing numbers. This will both enhance the relevancy of the search by removing the noisy fields and reduce the processing time.
This highly depends on the data shape and the used settings, it's difficult to forecast the performance. But it should work, and if it doesn't, come back to me, and we will fix it.
Meilisearch is more disk-intensive than memory-intensive, but memory can be a limitation when trying to index a lot of data at once. On the search side, the search throughput is mainly related to the number of available CPUs. On top of that, I suggest trying Meilisearch on your side, using the last release candidates (beta version), including several performance improvements. V1.6 will be stabilized next week. I hope my answer was satisfying, don't hesitate to ask more question if you need them, |
Beta Was this translation helpful? Give feedback.
-
We have a lot of data that would be spread across different indexes such as Movies, Shows, and Episodes. One of these currently has over 45 million documents in our SQL database and all of them would need to be searchable (title + overview at minimum) but also contain a lot of the other metadata for display purposes.
Does anyone have benchmarks or experience with indexes this large? I know there are many other variables that come in to play, but I'm just trying to find out a high level if Meilesearch can work at this type of scale? In addition to performance, I'm also not sure if this amount of data is more disk or more memory intensive?
Thanks for any insight or articles about this.
Beta Was this translation helpful? Give feedback.
All reactions