how can we have dynamic output file name in u-sql in azure data lake based on timestamp when job is executed.Thanks for help.My code as below:
OUTPUT @telDataResult
TO
@"wasb://blobcontainer@blobstorage.blob.core.windows.net/**yyyymmdd**_TelDataOutput.Csv"
USING Outputters.Csv();
This feature is currently in development but not available yet. Feel free to add your vote to the feature request: https://feedback.azure.com/forums/327234-data-lake/suggestions/10550388-support-dynamic-output-file-names-in-adla
Once it becomes available, you would do the inverse of the fileset syntax on EXTRACT. Let's assume you have a column that is called
eventdate
in your rowset@res
. Then the followingOUTPUT
statement would generate the files: