Completely unreliable and doesn't fit with modern workflows
November 20, 2019

Completely unreliable and doesn't fit with modern workflows

Valeri Karpov | TrustRadius Reviewer
Score 2 out of 10
Vetted Review
Verified User

Overall Satisfaction with Mesos

We used Mesos to orchestrate and deploy Docker containers for our production web applications. Each app, backend or frontend, had its own Docker container and was automatically deployed using Circle CI. Mesos would pull from Docker Hub when a new version was released and restart the app with the new version.
  • Mesos let us orchestrate containers on our own hardware using our own DNS. We switched from Docker Cloud, which caused several major outages for us.
  • Unreliable deployments that would fail for no good reason. Sometimes our Docker container would be "restarting" forever because Mesos thought it didn't have enough resources to start the container.
  • Impossibly slow UI. Built in React under the hood with a lot of bloatware backed in, so loading the Mesos UI on a slow internet connection was painful.
  • No real logging solution - it would stream "console.log()" output to the UI, but searching for logs wasn't really possible without downloading a huge file.
  • No built-in support for redeploying containers from a CI. We had to create a service whose whole job was to expose an HTTP endpoint that restarted a container, and then made Circle CI ping the endpoint whenever we wanted to redeploy.
  • Developers needed to spend hours waiting to verify that their supposedly automated CD deploys actually went through.
  • Lots of late night and early morning calls that Mesos deploys are hanging again.
  • 10-20 hours spent building a custom service just to integrate Mesos with a CD provider.
Kubernetes is by far the best choice. More reliable and better developer experience. Mesos is prone to sporadic failures and not really designed to handle CI/CD-based deployments. Docker Cloud once shut down our entire cluster for "upgrades" without giving us any warning.
No real support channel, the Mesos GitHub issues list was the only one we found and it wasn't particularly helpful.

Do you think Apache Mesos delivers good value for the price?

No

Are you happy with Apache Mesos's feature set?

No

Did Apache Mesos live up to sales and marketing promises?

No

Did implementation of Apache Mesos go as expected?

No

Would you buy Apache Mesos again?

No

There's really no reason to ever use Mesos. We switched over to Kubernetes and it's been a breath of fresh air - better CD support, easy CLI for browsing logs, no mysterious dangling redeploys. If you're looking for a tool to manage a fleet of Docker containers on VMs, Kubernetes beats Mesos by a wide margin.