Skip to content

Instantly share code, notes, and snippets.

@sclasen
Created October 2, 2015 05:11
Show Gist options
  • Save sclasen/778c58fed62792f7bf93 to your computer and use it in GitHub Desktop.
Save sclasen/778c58fed62792f7bf93 to your computer and use it in GitHub Desktop.

spark standalone cluster

  • statically defined cluster in conf...boo
  • master sshes to slaves to do things...could overcome via running sshd on dyno private ip port 22 and having keys set up, but see above

spark on mesos: boils down to running mesos on dogwood

  • tough to get working binaries without full docker images, probably surmountable
  • dealbreaker: mesos master has a replicated log file. so restarting all master 'dynos' at once kills the cluster.
  • workaround: feature-flag in bind-mounting a directory in runtimed that survives dyno restarts, store replicated log there

still less than ideal

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment