jrforever
jrforever

Reputation: 75

which ports should be exposed in a docker container for apache ignite?

I'm using apache ignite for in-memory cache. I want to deploy my app using docker with swarm mode. Which ports should be exposed in a container? I see in ignite docker module that these ports are exposed 11211 47100 47500 49112. But in my app log I see different ports like 48100 for shared memory communication.

Upvotes: 3

Views: 1387

Answers (1)

Mitya  XMitya
Mitya XMitya

Reputation: 1139

It's enough to exposed listed ports. Shared memory is not supported by docker, so you may simply ignore it.

11211 - REST service port;
47100 - communication port;
47500 - discovery port;
49112 - JMX port.

Upvotes: 4

Related Questions