MythBuster: Apache Spark
Ou comment décortiquer le code d'Apache Spark pour comprendre ce qui se passe…
https://gitlab.octo.com/abesnard/myth-buster-spark
Back To Basics...
Comment Apache Spark exécute une requête SQL ?
type ColumnName = String
type Row = Map[ColumnName, AnyRef]
def execute: String => Iterator[Row] = ???