Let's say i have a dataset with a Column
# Output
#+-----------------+
#| arrayCol|
#+-----------------+
#| [1, 2, 3, 4, 5] |
#+-----------------+
I want to know if it is possible to split this column into smaller chunks of max_size without using UDF.
The result desired is as following with a max_size = 2 :
# Output
#+-----------------------+
#| arrayCol|
#+-----------------------+
#| [[1, 2], [3, 4], [5]] |
#+-----------------------+