Can I perform batch execution against Azure ML web service without using BLOB?
I'm reading the data from SQL database into a CSV file stream. Can I stream this directly to the service without actually saving in and reading back the result from the BLOB?
BES doesn't work with streams. The data needs to be stored somewhere for AML to access the data. Take a look at: https://learn.microsoft.com/en-us/azure/machine-learning/machine-learning-consume-web-services#batch-execution-service-bes for more information.