Problems that warrant Docker orchestration
railsadventures.wordpress.com
Problems that warrant Docker orchestration
1–10 of 10 posts
Re: Problems that warrant Docker orchestration
#2This article is just about the problems that warrant implementing an orchestration solution. It is only at the end that they hint about talking about how orchestration is actually accomplished in a "Next time we'll talk about..." teaser
Re: Problems that warrant Docker orchestration
#3Is that not what SO_REUSEPORT is for? (Serious question). Not that it would solve this problem necessarily
Re: Problems that warrant Docker orchestration
#4I'm not sold on the title of this article. It isn't about Docker Orchestration at all (an example of an article about orchestration would be https://blog.docker.com/2015/02/orchestrating-docker-with-ma... ) This article is just about the problems that warrant implementing an orchestration solution. It is only at the end that they hint about talking about how orchestration is actually accomplished in a "Next time we'l…
Re: Problems that warrant Docker orchestration
#5I'm not sold on the title of this article. It isn't about Docker Orchestration at all (an example of an article about orchestration would be https://blog.docker.com/2015/02/orchestrating-docker-with-ma... ) This article is just about the problems that warrant implementing an orchestration solution. It is only at the end that they hint about talking about how orchestration is actually accomplished in a "Next time we'l…
Re: Problems that warrant Docker orchestration
#6If you're only using ~3 machines, why not deploy "by hand" and have a text file that maps containers to machines. If you're using a ton of machines, presumably the marginal machine-waste is minimal and you should just stick to the role-per-machine setup. It's way simpler.
I'm questioning the necessity of all this added complexity.
Re: Problems that warrant Docker orchestration
#7> No matter how you twist it, the same port cannot be occupied by two different processes on a given machine Is that not what SO_REUSEPORT is for? (Serious question). Not that it would solve this problem necessarily
Re: Problems that warrant Docker orchestration
#8What's the advantage of switching to containers in this example setup? If you're only using ~3 machines, why not deploy "by hand" and have a text file that maps containers to machines. If you're using a ton of machines, presumably the marginal machine-waste is minimal and you should just stick to the role-per-machine setup. It's way simpler. I'm questioning the necessity of all this added complexity.
Re: Problems that warrant Docker orchestration
#9I'm not sold on the title of this article. It isn't about Docker Orchestration at all (an example of an article about orchestration would be https://blog.docker.com/2015/02/orchestrating-docker-with-ma... ) This article is just about the problems that warrant implementing an orchestration solution. It is only at the end that they hint about talking about how orchestration is actually accomplished in a "Next time we'l…
As this is the first post of a series, I wanted to present the problems we're dealing with when running Docker containers on production. It was also important for me to specifically touch the major shift of mind and new challenges that Docker has brought to our production infrastructure.
As I see it orchestrating Docker isn't about a certain tool or a framework. It is an abstract problem that is being solved in many different ways/frameworks.
That's why I do think that Docker orchestration is an appropriate title for the article, but I can see where you're coming from :)
The next post in the series is going to be much more specific to ECS and Kubernetes.
Re: Problems that warrant Docker orchestration
#10I'm not sold on the title of this article. It isn't about Docker Orchestration at all (an example of an article about orchestration would be https://blog.docker.com/2015/02/orchestrating-docker-with-ma... ) This article is just about the problems that warrant implementing an orchestration solution. It is only at the end that they hint about talking about how orchestration is actually accomplished in a "Next time we'l…
Thanks for the comment ecaron. As this is the first post of a series, I wanted to present the problems we're dealing with when running Docker containers on production. It was also important for me to specifically touch the major shift of mind and new challenges that Docker has brought to our production infrastructure. As I see it orchestrating Docker isn't about a certain tool or a framework. It is an abstract proble…