Am I going crazy?
from pyspark.sql.functions import *
sum([2,3,2])
Gives:
py4j.Py4JException: Method sum([class java.util.ArrayList]) does not exist
How can I just get a simple sum?
What is happening behind the scenes with spark to make things so difficult?