DuckQueen
DuckQueen

Reputation: 800

Is it possible to change ElasticSearch settings at runtime?

I want to set ‘http.max_content_length’ at runtime. Is it possible and how one can do it? And if one can do it at runtime can he also change publishing_port/host?

Upvotes: 0

Views: 615

Answers (1)

Sathishkumar
Sathishkumar

Reputation: 3733

No. You can't. As per elasticsearch documentation, http.max_content_length is not dynamically updatable. For more details refer this link..

Changes we do in YAML file will get reflected in node after once you restart the node.

Upvotes: 2

Related Questions