Elastic Search - Advantages + Add-on Compatibility?

TheBigK

Well-known member
I read the official documentation of Elastic Search and found that it's an ideal solution for a large board running on a dedicated server or a VPS. Our board currently has 56k threads & 260k+ posts, I'm wondering what advantages will the Elastic search will offer to our setup?
  1. Remove the limit of having minimum 3 chars in searches?
  2. Searches will be more faster / efficient (?)
  3. Search quality will be better (?)
What else?
Is it worth the investment?
Also, I remember reading about compatability issues with few of the popular addons? Does anyone know which add-ons have issues with Elastic search?
 
So how much real memory do you need to run ES? I am on a 2Gb memory/4GB burst VPS. My site currently has just under 800K posts. I was running Sphinx on my VB forum and it made a hell of a difference to the search speed.
 
So how much real memory do you need to run ES? I am on a 2Gb memory/4GB burst VPS. My site currently has just under 800K posts. I was running Sphinx on my VB forum and it made a hell of a difference to the search speed.
From Slavik's guide, 1GB per 1million posts:

http://xenforo.com/community/threads/how-to-basic-elasticsearch-installation-rhel-suse.26160/

However, the latest version of Enhanced Search allows you to Optimize Mapping

Optimized mappings take up less space and can return results more quickly. The option will only appear when mappings need to be optimized. It is recommended that you always ensure your mappings are optimized.
 
Is it true that Elastic Search takes off the load from MySQL? Does that mean all the searches like 'What's New' & general loading of threads with several pages will be significantly faster?
 
Is it true that Elastic Search takes off the load from MySQL? Does that mean all the searches like 'What's New' & general loading of threads with several pages will be significantly faster?
No, those results are still from the database.

ES stores the post information in it's own schema, which XF accesses to get the location of the results you are searching for. It still needs to use MySQL to get the post information back form the database.
 
Top Bottom