I’ve written pretty comprehensive Haskell bindings for Mesos that wrap the C++ API:
https://github.com/iand675/hs-mesos http://hackage.haskell.org/package/hs-mesos In the process of putting the package together, I ended up with some questions: * It seems like there are portions of mesos.proto that aren’t currently supported by the API yet: in particular, “Credentials”, “ACL”, “ACLS”, “RateLimit”, & “RateLimits” don’t seem like they do anything yet. Am I missing something? * Is there a way to add information about additional resources besides CPUs/Mem/Ports? * When an executor sends a message, it’s considered “best effort”– what does that mean in practice? How do people currently use this functionality? – Ian Duncan
