Closed ngtrunghuan closed 3 years ago
Hi @ngtrunghuan did you resolve this issue? If so please share - would be great to add to the ODFE Docker install documentation.
@alolita I had the same kind of issue on OSX and Docker.
To solve it, I change : ES_JAVA_OPTS=-Xms512m -Xmx512m
to ES_JAVA_OPTS=-Xms2g -Xmx2g
Making sure I gave Docker at least 6Gb of RAM.
It seems that 512Mb is not enough for ES version 7 ;)
@alolita I actually dropped the issue altogether. All the best!
Hi,
Big fan here. Been meaning to use ODFE since you guys released the first version, and now I just got the chance.
However, there's a very strange issue. I can't seem to use the docker-compose.yml here to produce a 2-node ODFE cluster on Docker running off a REHL server (2vCPU, 8GB RAM).
https://aws.amazon.com/blogs/opensource/running-open-distro-for-elasticsearch/
Expected: 2-node cluster ODFE What happened: 2 single-node clusters, with odfe-node2 cannot be accessed anywhere outside the container (due to unbound port)
Here is the
_cat/nodes?v
when using the dev tool on Kibana. ip heap.percent ram.percent cpu load_1m load_5m load_15m node.role master name 172.21.0.3 41 97 44 2.96 4.99 6.67 mdi * iyJUkY9I can
docker exec -it <containerId> /bin/bash
into each container and ping the other host (for e.g. pingodfe-node1
in container forodfe-node2
and vice versa). However, the zen discovery won't even be Thanks a lot!This it the log for
odfe-node2
Update 1: It works as expected in my Docker for Windows. It's just the REHL that's acting funny.