Live data from Hacker News

Ask HN: What are the alternatives of hosting Apache Spark?

news.ycombinator.com

11–18 of 18 posts

Re: Ask HN: What are the alternatives of hosting Apache Spark?

#12

If your spark jobs are mostly batch workloads, that can tolerate moderately infrequent failures and restarts, try using google dataproc with preemptible vms or amazon emr using spot instances. Depending on your use case, you might spend many times less than you would using regular VMs. Many instances that are several dollars an hour on AWS can be used for a fraction of the price. Its also fairly easy to automate the…

I find the EMR markup to be substantial; if I weren't working in a corporation, I would stand up my own spark clusters, e.g. using spark-ec2

Re: Ask HN: What are the alternatives of hosting Apache Spark?

#14
post #12

If your spark jobs are mostly batch workloads, that can tolerate moderately infrequent failures and restarts, try using google dataproc with preemptible vms or amazon emr using spot instances. Depending on your use case, you might spend many times less than you would using regular VMs. Many instances that are several dollars an hour on AWS can be used for a fraction of the price. Its also fairly easy to automate the…

I find the EMR markup to be substantial; if I weren't working in a corporation, I would stand up my own spark clusters, e.g. using spark-ec2

It is, but you can run the bare minimum number of core nodes (3 I think?) and use spot instances for any others.

At a previous job, we just built our own ec2 image that ran spark in standalone mode for ephemeral spark clusters, and it was wonderful and cheap. And the clusters launched very fast compared to EMR.

Re: Ask HN: What are the alternatives of hosting Apache Spark?

#18

Google Dataproc - very good and very soon they will release kubernetes as the manager instead of yarn.

"very soon they will release kubernetes as the manager instead of yarn" Do you have more details on this?

https://cloudplatform.googleblog.com/2018/03/learn-to-run-Ap...
Post reply on HN