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…
Introducing DataFrames in Spark for Large Scale Data Science
31–40 of 47 posts
Re: Introducing DataFrames in Spark for Large Scale Data Science
#32Has 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
#33Earlier quoted context omitted.
Normal RDDs won't benefit from this optimisation, only DataFrames? Is that because using this new DSL allows Spark to more precisely plan what needs to happen for DataFrames? I guess this means DataFrames should be used all the time in the future, or will there still be a reason to use plain RDDs in the future? You guys are doing great work !
Indeed, DataFrames give Spark more semantic information about the data transformations, and thus can be better optimized. We envision this to become the primary API users use. You can still fall back to the vanilla RDD API (afterall DataFrame can be viewed as RDD[Row]) for stuff that is not expressible with DataFrames.
Re: Introducing DataFrames in Spark for Large Scale Data Science
#34I'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
#35Earlier quoted context omitted.
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.
Sorry, didn't mean to come over completely negative. 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
#36I'm one of the authors of the blog post as well as this new API. Feel free to ask me anything.
Are there any timelines for when this (and Spark in general) will fully support ORC files (including predicate-pushdown)?
Re: Introducing DataFrames in Spark for Large Scale Data Science
#37Has 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
#38Re: Introducing DataFrames in Spark for Large Scale Data Science
#39I'm one of the authors of the blog post as well as this new API. Feel free to ask me anything.