Has anyone had some good experiences with Spark? I put several weeks in to moving our machine learning pipeline over to Spark only to find I kept hitting a race condition in their scheduler. After doing a bit of searching, it seems this is actually a known issue https://issues.apache.org/jira/browse/SPARK-4454 and there's been a fix on their github for a while: https://github.com/apache/spark/pull/3345 and yet in tha…
Our experience was as a Python shop who was backed into a corner to use Apache Pig for our Hadoop batch jobs. We decided to rewrite some of those jobs from Pig to PySpark, and though there was a little bit of a learning curve and some sharp edges, the development experience is so much better than Pig that my team is generally happy with the switch.
Introducing DataFrames in Spark for Large Scale Data Science
11–20 of 47 posts
Re: Introducing DataFrames in Spark for Large Scale Data Science
#12Re: Introducing DataFrames in Spark for Large Scale Data Science
#13Will the DataFrame API work with Spark Streaming?
We will work on better integration in the future too.
Re: Introducing DataFrames in Spark for Large Scale Data Science
#14Re: Introducing DataFrames in Spark for Large Scale Data Science
#15Has anyone had some good experiences with Spark? I put several weeks in to moving our machine learning pipeline over to Spark only to find I kept hitting a race condition in their scheduler. After doing a bit of searching, it seems this is actually a known issue https://issues.apache.org/jira/browse/SPARK-4454 and there's been a fix on their github for a while: https://github.com/apache/spark/pull/3345 and yet in tha…
Re: Introducing DataFrames in Spark for Large Scale Data Science
#16I'm one of the authors of the blog post as well as this new API. Feel free to ask me anything.
Re: Introducing DataFrames in Spark for Large Scale Data Science
#17Has anyone had some good experiences with Spark? I put several weeks in to moving our machine learning pipeline over to Spark only to find I kept hitting a race condition in their scheduler. After doing a bit of searching, it seems this is actually a known issue https://issues.apache.org/jira/browse/SPARK-4454 and there's been a fix on their github for a while: https://github.com/apache/spark/pull/3345 and yet in tha…
Hey - sorry you had a bad experience. That bug was filed as a "minor" issue with only one user ever reporting it, so it didn't end up high up in our triage. We didn't merge the pull request because it was not correct, however, we can just add our own fix for it if it's affecting users. In the future, if you chime in on a reported JIRA, it will escalate it in our process.
I appreciate the work that's gone in to Spark and it's clearly well designed. Developing with Spark after coming from a Hadoop background was a very refreshing experience.
Re: Introducing DataFrames in Spark for Large Scale Data Science
#18I'm one of the authors of the blog post as well as this new API. Feel free to ask me anything.
Re: Introducing DataFrames in Spark for Large Scale Data Science
#19Has anyone had some good experiences with Spark? I put several weeks in to moving our machine learning pipeline over to Spark only to find I kept hitting a race condition in their scheduler. After doing a bit of searching, it seems this is actually a known issue https://issues.apache.org/jira/browse/SPARK-4454 and there's been a fix on their github for a while: https://github.com/apache/spark/pull/3345 and yet in tha…
Our experience with Spark Streaming, on the other hand, has been mixed. Our streaming app runs stably most of the time (up to 4 days in some cases), but we still see the occasional failure, sometimes with no exception or stack trace indicating what failed.
Our goal is to have a 24/7 streaming service, and Spark has gotten us close to that. There are just a couple of unexplained errors standing in our way.