Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Make sure swapping is disabled for Elasticsearch #206

Closed
lukas-vlcek opened this issue Jul 28, 2016 · 21 comments
Closed

Make sure swapping is disabled for Elasticsearch #206

lukas-vlcek opened this issue Jul 28, 2016 · 21 comments

Comments

@lukas-vlcek
Copy link
Contributor

Especially for the performance reasons we need to make sure Elasticsearch is not subject of swapping.

We need to focus on two levels here:

@lukas-vlcek
Copy link
Contributor Author

Note, at Elasticsearch level we can use Cluster Nodes Stats API to learn if it is swapping

@lukas-vlcek
Copy link
Contributor Author

Relevant OpenShift doc might be here: Disabling Swap Memory.

@sosiouxme
Copy link
Member

OpenShift/Kubernetes don't provide a way to specify the container swappiness and I wouldn't expect that to change soon. We can certainly advise disabling swap on nodes designated for ES to run on.

We could provide a diagnostic that queries ES's stats API to warn if it is swapping.

@ewolinetz
Copy link
Contributor

Couldn't we add the bootstrap.mlockall: true setting to the ES config?

https://www.elastic.co/guide/en/elasticsearch/reference/2.3/setup-configuration.html

@lukas-vlcek
Copy link
Contributor Author

@ewolinetz I think we can but as discussed in official ES doc, this option may not be applied for various reasons, however, if we can make it work in our case then I am all for it!

@portante
Copy link
Contributor

portante commented Mar 3, 2017

@lukas-vlcek, we run with this in our production environment. Works great.

What are you referring to when you mention official ES doc? Thanks!

@lukas-vlcek
Copy link
Contributor Author

@portante Check the mlockall section in Memory Settings. There are mentioned some cases where the bootstrap.mlockall: true may not be applied (you need to check ES log to see it is was applied or not).

@portante
Copy link
Contributor

portante commented Mar 3, 2017

@lukas-vlcek, okay good, that is all about runtime setup, which it seems we can take care of.

@lukas-vlcek
Copy link
Contributor Author

@portante yes, that is why I said above:

[...] if we can make it work in our case then I am all for it!

But if we can be hit by container level swapping then I am not sure if we can learn about that do anything about it.

@lukas-vlcek
Copy link
Contributor Author

Does this merged PR openshift/openshift-ansible#3884 disables swap for good or only temporarily?

@jcantrill I can only see that this PR disables swap (swapoff --all) if some conditions are met (not sure if this means swap can stay enabled in other situations - what kind of specific situations?). Is there any code in Openshift or Ansible configuration that enables swapping later (for example after node is upgraded/initialized)?

More on that, I think we should go ahead and explicitly try to disable swap in Elasticsearch configuration.

Notice, starting with ES 5.x the memory lock is applied:

The memory lock check verifies that if the bootstrap.memory_lock setting is enabled, that the JVM was successfully able to lock the heap.

If it fails to pass this check ES node does not start.

@portante
Copy link
Contributor

@lukas-vlcek, why do we need to worry about swapping for ES if ES can ask the JVM to lock the HEAP in memory to prevent it from swapping?

@lukas-vlcek
Copy link
Contributor Author

lukas-vlcek commented Apr 19, 2017

@portante we should be using memory lock. No question about this.

The only think I am not sure about is how the container kernel host swapping fits in and if we need to worry about this at all. And what we can do about it to make sure it does not kick in. Or in worst case how we can learn that it did kick in...

On the other hand that would be probably addressed at different level. So I will open PR to close this ticket (if there haven't been created one already).

lukas-vlcek added a commit to lukas-vlcek/origin-aggregated-logging that referenced this issue Apr 19, 2017
@lukas-vlcek
Copy link
Contributor Author

Also, shouldn't we make sure Xms and Xmx JVM options are not different? Currently, each can be different.

See recommendation here:

It is recommended to set the min and max memory to the same value, and enable mlockall.

@jcantrill
Copy link
Contributor

jcantrill commented Apr 19, 2017 via email

@ewolinetz
Copy link
Contributor

@lukas-vlcek ideally yes, however that might make it more difficult for ES to start in the scenario where the container is placed on a node where it isn't able to receive its requested/maximum JVM memory

@jcantrill
Copy link
Contributor

jcantrill commented Apr 19, 2017 via email

@lukas-vlcek
Copy link
Contributor Author

Well, the thing is that if we use memory lock and Xms < Xmx at JVM startup then we can end up with some memory pages being swapped later anyway, see elastic/elasticsearch#17605 (comment)

@sosiouxme
Copy link
Member

sosiouxme commented Apr 19, 2017

It will mean users who just want to try it out or run tests against it on typical (under-resourced) test nodes will have to know up front about the default memory requirement and how to adjust it. That doesn't mean demanding all the memory up front is a bad idea, just something to be aware of.

@lukas-vlcek
Copy link
Contributor Author

@sosiouxme @ewolinetz @jcantrill let's move this discussion to #383

@lukas-vlcek
Copy link
Contributor Author

#382 has been already closed, so I think we can also close this?

@richm
Copy link
Contributor

richm commented Apr 28, 2017

AFAIK this will be handled at the K8s/OpenShift level by disabling swap for all containers.

@richm richm closed this as completed Apr 28, 2017
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

No branches or pull requests

6 participants