InterviewSolution
Saved Bookmarks
| 1. |
When to use RDD, DataFrame or Dataset? |
|
Answer» RDD : You should generally use RDD in 3 situations.
DataFrames or DATASETS :
All in all, the use of DataFrame/Dataset API is recommendable as easy using and better optimization. Supported by Catalyst and Tungsten, DataFrame/Dataset can reduce your TIME of optimization, thus you can pay more attention to the data itself. |
|