I have a parquet file which is partitioned by YEAR/MONTH/DAY.
From what i know, I can read it thay way for a specific date :
sqlContext
.read
.option("basePath", "file:///path/")
.parquet("file:///path/YEAR=2015/MONTH=10/DAY=5/")
But how can i get all partitions from a start date to an end date ?
Thanks,