I have a U-SQL job that uses custom Extractors in code behind. And I need to run it on demand from the C# code.
I found a way to submit job by passing the script like a string. Can I execute somehow the script with a custom extractor?
I have a U-SQL job that uses custom Extractors in code behind. And I need to run it on demand from the C# code.
I found a way to submit job by passing the script like a string. Can I execute somehow the script with a custom extractor?
You can create an assembly with code behind and upload it to data lake analytics.
https://dev.to/alanmbarr/azure-data-lake-custom-extractor-2hbg
Then you can add a reference to the assembly and use the custom extractors on your code.