TE
TechEcho
Home24h TopNewestBestAskShowJobs
GitHubTwitter
Home

TechEcho

A tech news platform built with Next.js, providing global tech news and discussions.

GitHubTwitter

Home

HomeNewestBestAskShowJobs

Resources

HackerNews APIOriginal HackerNewsNext.js

© 2025 TechEcho. All rights reserved.

Docker, Mesos, Marathon, and the End of Pets

64 pointsby ddispaltroalmost 10 years ago

7 comments

KaiserProalmost 10 years ago
I think the main problem with all of these systems is that are just so damn complex.<p>Docker, its great if you have no state. But then if you have no state shit is easy. Mapping images to highspeed storage securely and reliably is genuinely hard. (unless you use NFSv4 and kerberos)<p>Mesos is just over kill for everything. How many people actually need shared image programs bigger than a 64 core machine with 512gigs of ram? (and now good are you at juggling NUMA or NUMA like interfaces)<p>I can&#x27;t help thinking that what people would really like is just a nice easy to use distributed CPU scheduler. Fleet basically, just without the theology that comes with it.<p>Seriously, mainframes look super sexy right now. Easy resource management, highly scalable real UNIX. (no need to spin up&#x2F;down, just spawn a new process)
评论 #9708727 未加载
评论 #9705129 未加载
评论 #9705124 未加载
评论 #9705096 未加载
stevebalmost 10 years ago
The real problem is going from tutorial to something you would use in production. Throw in logging, security and service discovery and you can have a few engineers hacking away for months.<p>So I want to plug a project I&#x27;ve been contributing to: <a href="https:&#x2F;&#x2F;github.com&#x2F;CiscoCloud&#x2F;microservices-infrastructure" rel="nofollow">https:&#x2F;&#x2F;github.com&#x2F;CiscoCloud&#x2F;microservices-infrastructure</a><p>We&#x27;re trying to make it super easy to deploy these tools. For example every time you launch a docker container, it will register with consul and be added to haproxy. The nice thing about using Mesos is we can support data like workloads Cassandra, HDFS, and Kafka on the same cluster your run Docker images on.<p>We use terraform to deploy to multiple clouds so you don&#x27;t get locked in to something like cloudformation.
评论 #9706430 未加载
sytsealmost 10 years ago
The Circle CI post <a href="http:&#x2F;&#x2F;blog.circleci.com&#x2F;its-the-future&#x2F;" rel="nofollow">http:&#x2F;&#x2F;blog.circleci.com&#x2F;its-the-future&#x2F;</a> reads as a parody on this one.
评论 #9705947 未加载
Wilyaalmost 10 years ago
Is anyone running Marathon in production? <i>Real</i> production. The kind where any downtime means lost money.<p>I see a lot of intro-level tutorials, but almost nothing on the more advanced side.<p>My (completely casual) experience with Marathon is pretty bad, with the main process crashing quite regularly even under no load, so I&#x27;m wondering if people who write about these systems have actually used them for non-trivial tasks. And for something as critical as Marathon, which is supposed to handle... well... all my services, I&#x27;d rather be sure that the system is rock solid.<p>(This is specifically about Marathon. Mesos itself has proven more reliable)
评论 #9706083 未加载
评论 #9706099 未加载
评论 #9705711 未加载
jacques_chesteralmost 10 years ago
Factual have done what lots of people do, which is invent the first 20% of a PaaS.<p>PaaSes are awesome. They also, once you go past the basics, require enormous engineering effort. And that&#x27;s the problem: engineering effort spent on curating your own homegrown PaaS is engineering effort not available for creating user value.<p>5 years ago rolling your own was a source of competitive advantage. Today you can get an installable PaaS (Cloud Foundry or OpenShift) off the shelf and run it. In 2 years Docker, Mesos and CoreOS will probably all have PaaSes of their own.<p>Interesting times.
评论 #9710346 未加载
copsarebastardsalmost 10 years ago
To be honest, I still have yet to see one of these systems that beats simply using Bash. They&#x27;re all trying to make a scripting problem into a configuration problem. That&#x27;s sometimes a reasonable idea, when what you&#x27;re doing is common enough that only a few things here and there need to diverge from the defaults. But <i>every</i> image I&#x27;ve ever had to create contained far more edge cases than default cases, and half of those edge cases are things nobody thought of and therefore their system doesn&#x27;t handle it. Rather than trying to fight with one of these systems to get them to do something I could easily do with a few Bash commands, I find it easier to just script the setup in Bash to begin with.<p>Obviously that doesn&#x27;t work for Windows systems.
评论 #9706640 未加载
justizinalmost 10 years ago
This is poetic:<p><pre><code> &quot;Kubernetes has a Clintonesque inevitability to it&quot; </code></pre> :-P