I have files in an Azure blob storage like this:
entity
|- part001.parquet
|- part002.parquet
|- part003.parquet
|- part004.parquet
...
and this parquet data got a date column, let's name it transaction_date
I want to make an Azure Data Factory pipeline to migrate all this data into another blob storage, like this:
entity
|- YYYY
|-MM
|- entity_YYYYMMDD.parquet
...
|- YYYY
|-MM
|- entity_YYYYMMDD.parquet
...
So the files will contain only specific date transactions, based on transaction_date
, to be easier to select them after.
Any way to do this using ADF or another Azure Stack tool?