+1 (non binding) 

Tested our pipelines on a Spark 1.6.0 standalone cluster (Python only):
- Pyspark package
- Spark SQL
- Dataframes
- Spark MLlib

No major issues, good performance.


Just a minor distinct behavior from version 1.4.1 using a SQLContext:
"select case myColumn when null then 'Y' else 'N' end" doesn't match any
NULL values in 1.6.0. Had to change it to:
"select case when (myColumn is null) then 'Y' else 'N' end"


Otherwise... good work guys!

Ricardo Almeida



--
View this message in context: 
http://apache-spark-developers-list.1001551.n3.nabble.com/VOTE-Release-Apache-Spark-1-6-0-RC1-tp15424p15451.html
Sent from the Apache Spark Developers List mailing list archive at Nabble.com.

---------------------------------------------------------------------
To unsubscribe, e-mail: dev-unsubscr...@spark.apache.org
For additional commands, e-mail: dev-h...@spark.apache.org

Reply via email to