Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Does Elastic Search support hot config reloads?

Can elasticsearch reload its config without dropping requests?

similar to how nginx supports the SIGHUP signal.

like image 664
cwu Avatar asked Nov 01 '22 15:11

cwu


1 Answers

As far as I know you cannot "reload" the config like you want. But I suppose you need some changes in your configuration and most of them can be done via API (that don't require restarting the service). I would take a look at these links:

Admin indices update settings

Admin cluster update settings

like image 99
moliware Avatar answered Nov 15 '22 07:11

moliware