- 2865 Views
- 1 replies
- 0 kudos
I am thinking of migrating the spark 2.4 to 3.0, what should I know to take care of changes thet I need to look at while migrating
- 2865 Views
- 1 replies
- 0 kudos
Latest Reply
I see there are many changes that need to take care of if you have used coding in spark 2.4 the changes are in Data set API StatementBuiltin UDF and functionsMore you can get from spark Documentation https://spark.apache.org/docs/latest/sql-migrat...
- 2896 Views
- 1 replies
- 0 kudos
We need to add unit test cases for our code that we're writing using the Scala in Python. But we can't use the calls like `assertEqual` for comparing the content of DataFrames. Are any special libraries for that?
- 2896 Views
- 1 replies
- 0 kudos
Latest Reply
There are several libraries for Scala and Python that help with writing unit tests for Spark code.For Scala you can use following:Built-in Spark test suite - it's designed to test all parts of Spark. It supports RDD, Dataframe/Dataset, Streaming API...